mirror of
https://github.com/discourse/discourse.git
synced 2024-11-30 03:43:38 +08:00
d1cc60c435
Changes made using the ember-native-class-codemod, plus some manual tweaks
82 lines
2.2 KiB
JavaScript
82 lines
2.2 KiB
JavaScript
import { action, computed } from "@ember/object";
|
|
import { service } from "@ember/service";
|
|
import { classNames } from "@ember-decorators/component";
|
|
import IgnoreDurationModal from "discourse/components/modal/ignore-duration-with-username";
|
|
import { popupAjaxError } from "discourse/lib/ajax-error";
|
|
import I18n from "discourse-i18n";
|
|
import DropdownSelectBox from "select-kit/components/dropdown-select-box";
|
|
import { selectKitOptions } from "select-kit/components/select-kit";
|
|
|
|
@classNames("user-notifications", "user-notifications-dropdown")
|
|
@selectKitOptions({
|
|
headerIcon: "userNotificationIcon",
|
|
showCaret: true,
|
|
})
|
|
export default class UserNotificationsDropdown extends DropdownSelectBox {
|
|
@service modal;
|
|
|
|
@computed("mainCollection.[]", "value")
|
|
get userNotificationIcon() {
|
|
return (
|
|
this.mainCollection &&
|
|
this.mainCollection.find((row) => row.id === this.value).icon
|
|
);
|
|
}
|
|
|
|
@computed
|
|
get content() {
|
|
const content = [];
|
|
|
|
content.push({
|
|
icon: "bell",
|
|
id: "changeToNormal",
|
|
description: I18n.t("user.user_notifications.normal_option_title"),
|
|
name: I18n.t("user.user_notifications.normal_option"),
|
|
});
|
|
|
|
content.push({
|
|
icon: "bell-slash",
|
|
id: "changeToMuted",
|
|
description: I18n.t("user.user_notifications.mute_option_title"),
|
|
name: I18n.t("user.user_notifications.mute_option"),
|
|
});
|
|
|
|
if (this.get("user.can_ignore_user")) {
|
|
content.push({
|
|
icon: "far-eye-slash",
|
|
id: "changeToIgnored",
|
|
description: I18n.t("user.user_notifications.ignore_option_title"),
|
|
name: I18n.t("user.user_notifications.ignore_option"),
|
|
});
|
|
}
|
|
|
|
return content;
|
|
}
|
|
|
|
changeToNormal() {
|
|
this.updateNotificationLevel({ level: "normal" }).catch(popupAjaxError);
|
|
}
|
|
|
|
changeToMuted() {
|
|
this.updateNotificationLevel({ level: "mute" }).catch(popupAjaxError);
|
|
}
|
|
|
|
changeToIgnored() {
|
|
this.modal.show(IgnoreDurationModal, {
|
|
model: {
|
|
ignoredUsername: this.user.username,
|
|
enableSelection: false,
|
|
},
|
|
});
|
|
}
|
|
|
|
@action
|
|
onChange(level) {
|
|
this[level]();
|
|
|
|
// hack but model.ignored/muted is not
|
|
// getting updated after updateNotificationLevel
|
|
this.set("value", level);
|
|
}
|
|
}
|