2020-02-03 21:22:14 +08:00
|
|
|
import { computed, setProperties } from "@ember/object";
|
2024-08-23 19:17:07 +08:00
|
|
|
import { classNames } from "@ember-decorators/component";
|
2023-10-11 02:38:59 +08:00
|
|
|
import { allLevels, buttonDetails } from "discourse/lib/notification-levels";
|
2023-10-18 18:07:09 +08:00
|
|
|
import I18n from "discourse-i18n";
|
2023-10-11 02:38:59 +08:00
|
|
|
import DropdownSelectBoxComponent from "select-kit/components/dropdown-select-box";
|
2024-08-23 19:17:07 +08:00
|
|
|
import {
|
|
|
|
pluginApiIdentifiers,
|
|
|
|
selectKitOptions,
|
|
|
|
} from "select-kit/components/select-kit";
|
2017-10-20 03:51:08 +08:00
|
|
|
|
2024-08-23 19:17:07 +08:00
|
|
|
@classNames("notifications-button")
|
|
|
|
@selectKitOptions({
|
|
|
|
autoFilterable: false,
|
|
|
|
filterable: false,
|
|
|
|
i18nPrefix: "",
|
|
|
|
i18nPostfix: "",
|
|
|
|
})
|
|
|
|
@pluginApiIdentifiers("notifications-button")
|
|
|
|
export default class NotificationsButton extends DropdownSelectBoxComponent {
|
|
|
|
content = allLevels;
|
|
|
|
nameProperty = "key";
|
2017-11-21 18:53:09 +08:00
|
|
|
|
2024-07-11 08:37:53 +08:00
|
|
|
getTitle(key) {
|
|
|
|
const { i18nPrefix, i18nPostfix } = this.selectKit.options;
|
|
|
|
return I18n.t(`${i18nPrefix}.${key}${i18nPostfix}.title`);
|
2024-08-23 19:17:07 +08:00
|
|
|
}
|
2024-07-11 08:37:53 +08:00
|
|
|
|
|
|
|
modifyComponentForRow(_, content) {
|
|
|
|
if (content) {
|
|
|
|
setProperties(content, {
|
|
|
|
title: this.getTitle(content.key),
|
|
|
|
});
|
|
|
|
}
|
2020-02-03 21:22:14 +08:00
|
|
|
return "notifications-button/notifications-button-row";
|
2024-08-23 19:17:07 +08:00
|
|
|
}
|
2019-01-10 18:06:01 +08:00
|
|
|
|
2020-02-03 21:22:14 +08:00
|
|
|
modifySelection(content) {
|
|
|
|
content = content || {};
|
2024-07-11 08:37:53 +08:00
|
|
|
const title = this.getTitle(this.buttonForValue.key);
|
2020-02-03 21:22:14 +08:00
|
|
|
setProperties(content, {
|
2020-05-12 02:46:08 +08:00
|
|
|
title,
|
|
|
|
label: title,
|
2020-02-03 21:22:14 +08:00
|
|
|
icon: this.buttonForValue.icon,
|
|
|
|
});
|
2017-11-21 18:53:09 +08:00
|
|
|
return content;
|
2024-08-23 19:17:07 +08:00
|
|
|
}
|
2017-10-20 03:51:08 +08:00
|
|
|
|
2024-08-23 19:17:07 +08:00
|
|
|
@computed("value")
|
|
|
|
get buttonForValue() {
|
2020-02-03 21:22:14 +08:00
|
|
|
return buttonDetails(this.value);
|
2024-08-23 19:17:07 +08:00
|
|
|
}
|
|
|
|
}
|