mirror of
https://github.com/discourse/discourse.git
synced 2024-12-14 08:23:43 +08:00
d1cc60c435
Changes made using the ember-native-class-codemod, plus some manual tweaks
30 lines
1.2 KiB
JavaScript
30 lines
1.2 KiB
JavaScript
import { computed } from "@ember/object";
|
|
import { readOnly } from "@ember/object/computed";
|
|
import { classNameBindings, classNames } from "@ember-decorators/component";
|
|
import SingleSelectHeaderComponent from "select-kit/components/select-kit/single-select-header";
|
|
|
|
@classNames("dropdown-select-box-header")
|
|
@classNameBindings("btnClassName", "btnStyleClass", "btnCustomClasses")
|
|
export default class DropdownSelectBoxHeader extends SingleSelectHeaderComponent {
|
|
@readOnly("selectKit.options.showFullTitle") showFullTitle;
|
|
@readOnly("selectKit.options.customStyle") customStyle;
|
|
@readOnly("selectKit.options.btnCustomClasses") btnCustomClasses;
|
|
@readOnly("selectKit.options.caretUpIcon") caretUpIcon;
|
|
@readOnly("selectKit.options.caretDownIcon") caretDownIcon;
|
|
|
|
@computed("showFullTitle")
|
|
get btnClassName() {
|
|
return `btn ${this.showFullTitle ? "btn-icon-text" : "no-text btn-icon"}`;
|
|
}
|
|
|
|
@computed("customStyle")
|
|
get btnStyleClass() {
|
|
return `${this.customStyle ? "" : "btn-default"}`;
|
|
}
|
|
|
|
@computed("selectKit.isExpanded", "caretUpIcon", "caretDownIcon")
|
|
get caretIcon() {
|
|
return this.selectKit.isExpanded ? this.caretUpIcon : this.caretDownIcon;
|
|
}
|
|
}
|