discourse/app/assets/javascripts/wizard/components/wizard-field.js.es6

18 lines
534 B
Plaintext
Raw Normal View History

2016-08-25 13:14:56 -04:00
import computed from 'ember-addons/ember-computed-decorators';
export default Ember.Component.extend({
2016-09-08 16:58:07 -04:00
classNameBindings: [':wizard-field', 'typeClass', 'field.invalid'],
@computed('field.type')
typeClass: type => `${Ember.String.dasherize(type)}-field`,
2016-08-25 13:14:56 -04:00
@computed('field.id')
fieldClass: id => `field-${Ember.String.dasherize(id)} wizard-focusable`,
2016-09-02 11:42:14 -04:00
@computed('field.type', 'field.id')
inputComponentName(type, id) {
return (type === 'component') ? Ember.String.dasherize(id) : `wizard-field-${type}`;
}
2016-08-25 13:14:56 -04:00
});