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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
667 B
JavaScript
Raw Normal View History

import Component from "@ember/component";
import { dasherize } from "@ember/string";
import discourseComputed from "discourse-common/utils/decorators";
2016-08-26 01:14:56 +08:00
export default Component.extend({
classNameBindings: [":wizard-field", "typeClasses", "field.invalid"],
2016-09-09 04:58:07 +08:00
@discourseComputed("field.type", "field.id")
typeClasses: (type, id) =>
`${dasherize(type)}-field ${dasherize(type)}-${dasherize(id)}`,
2016-08-26 01:14:56 +08:00
@discourseComputed("field.id")
fieldClass: (id) => `field-${dasherize(id)} wizard-focusable`,
@discourseComputed("field.type", "field.id")
2016-09-02 23:42:14 +08:00
inputComponentName(type, id) {
return type === "component" ? dasherize(id) : `wizard-field-${type}`;
2016-09-02 23:42:14 +08:00
},
2016-08-26 01:14:56 +08:00
});