2020-02-03 21:22:14 +08:00
|
|
|
import { allLevels, buttonDetails } from "discourse/lib/notification-levels";
|
|
|
|
import { computed, setProperties } from "@ember/object";
|
2017-11-21 18:53:09 +08:00
|
|
|
import DropdownSelectBoxComponent from "select-kit/components/dropdown-select-box";
|
2020-05-14 04:23:41 +08:00
|
|
|
import I18n from "I18n";
|
2017-10-20 03:51:08 +08:00
|
|
|
|
|
|
|
export default DropdownSelectBoxComponent.extend({
|
2020-02-03 21:22:14 +08:00
|
|
|
pluginApiIdentifiers: ["notifications-button"],
|
|
|
|
classNames: ["notifications-button"],
|
2017-10-20 03:51:08 +08:00
|
|
|
content: allLevels,
|
2020-02-03 21:22:14 +08:00
|
|
|
nameProperty: "key",
|
2017-10-20 03:51:08 +08:00
|
|
|
|
2020-02-03 21:22:14 +08:00
|
|
|
selectKitOptions: {
|
|
|
|
autoFilterable: false,
|
|
|
|
filterable: false,
|
|
|
|
i18nPrefix: "",
|
2020-05-23 12:56:13 +08:00
|
|
|
i18nPostfix: "",
|
2017-11-21 18:53:09 +08:00
|
|
|
},
|
|
|
|
|
2020-02-03 21:22:14 +08:00
|
|
|
modifyComponentForRow() {
|
|
|
|
return "notifications-button/notifications-button-row";
|
2019-01-10 18:06:01 +08:00
|
|
|
},
|
|
|
|
|
2020-02-03 21:22:14 +08:00
|
|
|
modifySelection(content) {
|
|
|
|
content = content || {};
|
|
|
|
const { i18nPrefix, i18nPostfix } = this.selectKit.options;
|
2020-05-12 02:46:08 +08:00
|
|
|
const title = I18n.t(
|
|
|
|
`${i18nPrefix}.${this.buttonForValue.key}${i18nPostfix}.title`
|
|
|
|
);
|
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;
|
|
|
|
},
|
2017-10-20 03:51:08 +08:00
|
|
|
|
2020-02-03 21:22:14 +08:00
|
|
|
buttonForValue: computed("value", function () {
|
|
|
|
return buttonDetails(this.value);
|
|
|
|
}),
|
2017-10-20 03:51:08 +08:00
|
|
|
});
|