2017-11-21 18:53:09 +08:00
|
|
|
import NotificationOptionsComponent from "select-kit/components/notifications-button";
|
2018-06-16 00:42:20 +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" : "";
|
|
|
|
},
|
|
|
|
|
2019-03-20 19:50:13 +08:00
|
|
|
_changed(msg) {
|
2019-05-27 16:15:39 +08:00
|
|
|
if (this.computedValue !== msg.id) {
|
2019-03-20 19:50:13 +08:00
|
|
|
this.get("topic.details").updateNotifications(msg.id);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2017-10-20 03:51:08 +08:00
|
|
|
@on("didInsertElement")
|
|
|
|
_bindGlobalLevelChanged() {
|
2019-03-20 19:50:13 +08:00
|
|
|
this.appEvents.on("topic-notifications-button:changed", this, "_changed");
|
2017-10-20 03:51:08 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
@on("willDestroyElement")
|
|
|
|
_unbindGlobalLevelChanged() {
|
2019-03-20 19:50:13 +08:00
|
|
|
this.appEvents.off("topic-notifications-button:changed", this, "_changed");
|
2017-10-20 03:51:08 +08:00
|
|
|
},
|
|
|
|
|
2017-11-21 18:53:09 +08:00
|
|
|
mutateValue(value) {
|
2019-05-27 16:15:39 +08:00
|
|
|
if (value !== this.value) {
|
2017-11-10 02:57:53 +08:00
|
|
|
this.get("topic.details").updateNotifications(value);
|
2017-10-20 03:51:08 +08:00
|
|
|
}
|
2019-03-26 19:04:33 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
deselect() {}
|
2017-10-20 03:51:08 +08:00
|
|
|
});
|