mirror of https://github.com/rancher/ui.git
49 lines
994 B
JavaScript
49 lines
994 B
JavaScript
import Ember from 'ember';
|
|
import NewOrEdit from 'ui/mixins/new-or-edit';
|
|
|
|
export default Ember.Component.extend(NewOrEdit, {
|
|
projects: Ember.inject.service(),
|
|
|
|
editing: true,
|
|
editCluster: false,
|
|
primaryResource: Ember.computed.alias('cluster'),
|
|
goToTemplate: null,
|
|
cluster: null,
|
|
|
|
didInsertElement() {
|
|
let el = this.$('INPUT')[0];
|
|
if ( el ) {
|
|
el.focus();
|
|
}
|
|
},
|
|
|
|
actions: {
|
|
done() {
|
|
this.sendAction('done');
|
|
},
|
|
|
|
editStack(obj) {
|
|
let libLink = obj.get('externalId').split(':')[2];
|
|
this.sendAction('goToTemplate', `library:${libLink}`);
|
|
},
|
|
|
|
removeStack(obj) {
|
|
this.get('primaryResource.systemStacks').removeObject(obj);
|
|
},
|
|
|
|
cancel() {
|
|
this.sendAction('cancel');
|
|
},
|
|
},
|
|
|
|
didSave() {
|
|
return this.get('primaryResource').waitForTransition().then(() => {
|
|
return this.get('projects').refreshAll();
|
|
});
|
|
},
|
|
|
|
doneSaving() {
|
|
this.send('cancel');
|
|
}
|
|
});
|