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

19 lines
543 B
Plaintext
Raw Normal View History

2018-06-15 23:03:24 +08:00
import computed from "ember-addons/ember-computed-decorators";
2016-08-26 01:14:56 +08:00
export default Ember.Component.extend({
2018-06-15 23:03:24 +08:00
classNameBindings: [":wizard-field", "typeClass", "field.invalid"],
2016-09-09 04:58:07 +08:00
2018-06-15 23:03:24 +08:00
@computed("field.type")
2016-09-09 04:58:07 +08:00
typeClass: type => `${Ember.String.dasherize(type)}-field`,
2016-08-26 01:14:56 +08:00
2018-06-15 23:03:24 +08:00
@computed("field.id")
fieldClass: id => `field-${Ember.String.dasherize(id)} wizard-focusable`,
2018-06-15 23:03:24 +08:00
@computed("field.type", "field.id")
2016-09-02 23:42:14 +08:00
inputComponentName(type, id) {
2018-06-15 23:03:24 +08:00
return type === "component"
? Ember.String.dasherize(id)
: `wizard-field-${type}`;
2016-09-02 23:42:14 +08:00
}
2016-08-26 01:14:56 +08:00
});