discourse/app/assets/javascripts/select-kit/addon/components/dropdown-select-box/dropdown-select-box-header.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
1.2 KiB
JavaScript
Raw Normal View History

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