mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 18:46:50 +08:00
36 lines
966 B
JavaScript
36 lines
966 B
JavaScript
import { oneWay, alias } from "@ember/object/computed";
|
|
import DropdownSelectBoxComponent from "select-kit/components/dropdown-select-box";
|
|
import discourseComputed, { on } from "discourse-common/utils/decorators";
|
|
|
|
export default DropdownSelectBoxComponent.extend({
|
|
classNames: ["period-chooser"],
|
|
rowComponent: "period-chooser/period-chooser-row",
|
|
headerComponent: "period-chooser/period-chooser-header",
|
|
content: oneWay("site.periods"),
|
|
value: alias("period"),
|
|
isHidden: alias("showPeriods"),
|
|
|
|
@discourseComputed("isExpanded")
|
|
caretIcon(isExpanded) {
|
|
return isExpanded ? "caret-up" : "caret-down";
|
|
},
|
|
|
|
@on("didUpdateAttrs", "init")
|
|
_setFullDay() {
|
|
this.headerComponentOptions.setProperties({
|
|
fullDay: this.fullDay
|
|
});
|
|
this.rowComponentOptions.setProperties({
|
|
fullDay: this.fullDay
|
|
});
|
|
},
|
|
|
|
actions: {
|
|
onSelect() {
|
|
if (this.action) {
|
|
this.action(this.computedValue);
|
|
}
|
|
}
|
|
}
|
|
});
|