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}`; } });