mirror of https://github.com/rancher/ui.git
41 lines
1.0 KiB
JavaScript
41 lines
1.0 KiB
JavaScript
import Component from '@ember/component';
|
|
import layout from './template';
|
|
import { set, get } from '@ember/object';
|
|
import { inject as service } from '@ember/service';
|
|
|
|
const stepOneChoice = [{
|
|
id: 'scm',
|
|
}];
|
|
|
|
export default Component.extend({
|
|
layout,
|
|
intl: service(),
|
|
selectedModel: function(){
|
|
return get(this, 'model')[get(this, 'type')]
|
|
}.property('model','type'),
|
|
stepsTypeChoices: null,
|
|
type: null,
|
|
model: null,
|
|
init(){
|
|
this._super(...arguments);
|
|
var stepMode = get(this, 'modalOpts.stepMode');
|
|
if(stepMode === 'scm'){
|
|
set(this, 'stepsTypeChoices', stepOneChoice);
|
|
}else{
|
|
set(this, 'stepsTypeChoices', this.getStepsChoices());
|
|
}
|
|
},
|
|
getStepsChoices() {
|
|
const intl = get(this, 'intl')
|
|
const stepsChoices = [{
|
|
id: 'task',
|
|
name: intl.t('newPipelineStep.stepType.build.stepsChoices.task'),
|
|
},{
|
|
id: 'build',
|
|
name: intl.t('newPipelineStep.stepType.build.stepsChoices.build'),
|
|
}
|
|
];
|
|
return stepsChoices
|
|
},
|
|
});
|