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

19 lines
571 B
Plaintext
Raw Normal View History

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