discourse/app/assets/javascripts/select-kit/components/combo-box.js.es6

29 lines
821 B
Plaintext
Raw Normal View History

import SingleSelectComponent from "select-kit/components/single-select";
2017-10-19 15:51:08 -04:00
import { on } from "ember-addons/ember-computed-decorators";
export default SingleSelectComponent.extend({
pluginApiIdentifiers: ["combo-box"],
2017-10-19 15:51:08 -04:00
classNames: "combobox combo-box",
autoFilterable: true,
headerComponent: "combo-box/combo-box-header",
caretUpIcon: "caret-up",
caretDownIcon: "caret-down",
clearable: false,
computeHeaderContent() {
let content = this.baseHeaderComputedContent();
content.hasSelection = this.get("hasSelection");
return content;
},
2017-10-19 15:51:08 -04:00
@on("didReceiveAttrs")
_setComboBoxOptions() {
2017-11-09 13:57:53 -05:00
this.get("headerComponentOptions").setProperties({
2017-10-19 15:51:08 -04:00
caretUpIcon: this.get("caretUpIcon"),
caretDownIcon: this.get("caretDownIcon"),
clearable: this.get("clearable"),
2017-11-09 13:57:53 -05:00
});
2017-10-19 15:51:08 -04:00
}
});