mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 08:38:42 +08:00
35 lines
916 B
JavaScript
35 lines
916 B
JavaScript
import SingleSelectComponent from "select-kit/components/single-select";
|
|
import {
|
|
on,
|
|
default as discourseComputed
|
|
} from "discourse-common/utils/decorators";
|
|
|
|
export default SingleSelectComponent.extend({
|
|
pluginApiIdentifiers: ["combo-box"],
|
|
classNames: "combobox combo-box",
|
|
autoFilterable: true,
|
|
headerComponent: "combo-box/combo-box-header",
|
|
|
|
caretUpIcon: "caret-up",
|
|
caretDownIcon: "caret-down",
|
|
clearable: false,
|
|
|
|
computeHeaderContent() {
|
|
let content = this._super(...arguments);
|
|
content.hasSelection = this.hasSelection;
|
|
return content;
|
|
},
|
|
|
|
@discourseComputed("isExpanded", "caretUpIcon", "caretDownIcon")
|
|
caretIcon(isExpanded, caretUpIcon, caretDownIcon) {
|
|
return isExpanded ? caretUpIcon : caretDownIcon;
|
|
},
|
|
|
|
@on("didUpdateAttrs", "init")
|
|
_setComboBoxOptions() {
|
|
this.headerComponentOptions.setProperties({
|
|
clearable: this.clearable
|
|
});
|
|
}
|
|
});
|