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

19 lines
602 B
JavaScript

import Component from "@ember/component";
import discourseComputed from "discourse-common/utils/decorators";
import { dasherize } from "@ember/string";
export default Component.extend({
classNameBindings: [":wizard-field", "typeClass", "field.invalid"],
@discourseComputed("field.type")
typeClass: type => `${dasherize(type)}-field`,
@discourseComputed("field.id")
fieldClass: id => `field-${dasherize(id)} wizard-focusable`,
@discourseComputed("field.type", "field.id")
inputComponentName(type, id) {
return type === "component" ? dasherize(id) : `wizard-field-${type}`;
}
});