2017-10-17 15:17:53 +02:00
|
|
|
import { default as computed } from 'ember-addons/ember-computed-decorators';
|
2017-09-23 04:34:07 +02:00
|
|
|
|
|
|
|
export default Ember.Component.extend({
|
|
|
|
classNames: 'wizard-custom-field',
|
|
|
|
isDropdown: Ember.computed.equal('field.type', 'dropdown'),
|
2017-10-17 15:17:53 +02:00
|
|
|
disableId: Ember.computed.not('field.isNew'),
|
2017-10-30 07:24:51 +01:00
|
|
|
choicesTypes: ['translation', 'preset', 'custom'],
|
2017-11-08 09:52:50 +01:00
|
|
|
choicesTranslation: Ember.computed.equal('field.choices_type', 'translation'),
|
|
|
|
choicesPreset: Ember.computed.equal('field.choices_type', 'preset'),
|
|
|
|
choicesCustom: Ember.computed.equal('field.choices_type', 'custom'),
|
2017-09-23 04:34:07 +02:00
|
|
|
|
2017-10-13 15:02:34 +02:00
|
|
|
@computed('field.type')
|
|
|
|
isInput: (type) => type === 'text' || type === 'textarea',
|
|
|
|
|
|
|
|
@computed()
|
|
|
|
presetChoices() {
|
|
|
|
return [
|
|
|
|
{ id: 'categories', name: I18n.t('admin.wizard.field.choices_preset.categories') }
|
|
|
|
];
|
2017-10-30 07:24:51 +01:00
|
|
|
},
|
2017-09-23 04:34:07 +02:00
|
|
|
});
|