1
0
Fork 0
discourse-custom-wizard-unl.../assets/javascripts/discourse/components/wizard-custom-field.js.es6

31 Zeilen
995 B
Text

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 [
2019-07-01 04:31:50 +02:00
{
id: 'categories',
name: I18n.t('admin.wizard.field.choices_preset.categories')
},{
id: 'groups',
name: I18n.t('admin.wizard.field.choices_preset.groups')
2019-07-12 03:55:53 +02:00
},{
id: 'tags',
name: I18n.t('admin.wizard.field.choices_preset.tags')
2019-07-01 04:31:50 +02:00
}
2017-10-13 15:02:34 +02:00
];
2017-10-30 07:24:51 +01:00
},
2017-09-23 04:34:07 +02:00
});