ui/app/components/edit-stack/component.js

38 lines
1018 B
JavaScript

import Ember from 'ember';
import NewOrEdit from 'ui/mixins/new-or-edit';
import {tagChoices, tagsToArray} from 'ui/models/stack';
import ModalBase from 'ui/mixins/modal-base';
export default Ember.Component.extend(ModalBase, NewOrEdit, {
classNames: ['large-modal'],
originalModel: Ember.computed.alias('modalService.modalOpts'),
editing: true,
model: null,
actions: {
addTag(tag) {
let neu = tagsToArray(this.get('primaryResource.group'));
neu.addObject(tag);
this.set('primaryResource.group', neu.join(', '));
},
},
allStacks: null,
willInsertElement: function() {
this._super(...arguments);
var orig = this.get('originalModel');
var clone = orig.clone();
delete clone.services;
this.set('model', clone);
this.set('allStacks', this.get('store').all('stack'));
},
tagChoices: function() {
return tagChoices(this.get('allStacks')).sort();
}.property('allStacks.@each.group'),
doneSaving: function() {
this.send('cancel');
}
});