1
0
Fork 0
discourse-custom-wizard-unl.../assets/javascripts/discourse/components/wizard-custom-field.js.es6
2017-09-24 11:01:18 +08:00

27 Zeilen
674 B
JavaScript

import { observes } from 'ember-addons/ember-computed-decorators';
export default Ember.Component.extend({
classNames: 'wizard-custom-field',
fieldTypes: ['dropdown', 'image', 'radio', 'text', 'textarea'],
isDropdown: Ember.computed.equal('field.type', 'dropdown'),
init() {
this._super(...arguments);
if (!this.get('field.choices')) {
this.set('field.choices', Ember.A());
}
},
@observes('field.label')
setFieldId() {
const label = this.get('field.label');
this.set('field.id', Ember.String.underscore(label));
},
actions: {
addChoice() {
this.get('field.choices').pushObject(Ember.Object.create());
}
}
});