2017-11-21 18:53:09 +08:00
|
|
|
import NotificationOptionsComponent from "select-kit/components/notifications-button";
|
2018-06-11 17:35:13 +08:00
|
|
|
import { default as computed, on } from "ember-addons/ember-computed-decorators";
|
2017-10-20 03:51:08 +08:00
|
|
|
import { topicLevels } from "discourse/lib/notification-levels";
|
|
|
|
|
|
|
|
export default NotificationOptionsComponent.extend({
|
2017-11-21 18:53:09 +08:00
|
|
|
pluginApiIdentifiers: ["topic-notifications-options"],
|
2017-10-20 03:51:08 +08:00
|
|
|
classNames: "topic-notifications-options",
|
|
|
|
content: topicLevels,
|
|
|
|
i18nPrefix: "topic.notifications",
|
2017-11-21 18:53:09 +08:00
|
|
|
allowInitialValueMutation: false,
|
2017-10-20 03:51:08 +08:00
|
|
|
|
2018-06-11 17:35:13 +08:00
|
|
|
@computed("topic.archetype")
|
|
|
|
i18nPostfix(archetype) {
|
|
|
|
return archetype === "private_message" ? "_pm" : "";
|
|
|
|
},
|
|
|
|
|
2017-10-20 03:51:08 +08:00
|
|
|
@on("didInsertElement")
|
|
|
|
_bindGlobalLevelChanged() {
|
2018-06-15 23:03:24 +08:00
|
|
|
this.appEvents.on("topic-notifications-button:changed", msg => {
|
2017-10-20 03:51:08 +08:00
|
|
|
if (msg.type === "notification") {
|
|
|
|
if (this.get("computedValue") !== msg.id) {
|
|
|
|
this.get("topic.details").updateNotifications(msg.id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
@on("willDestroyElement")
|
|
|
|
_unbindGlobalLevelChanged() {
|
|
|
|
this.appEvents.off("topic-notifications-button:changed");
|
|
|
|
},
|
|
|
|
|
2017-11-21 18:53:09 +08:00
|
|
|
mutateValue(value) {
|
2017-11-10 02:57:53 +08:00
|
|
|
if (value !== this.get("value")) {
|
|
|
|
this.get("topic.details").updateNotifications(value);
|
2017-10-20 03:51:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|