33 lines
926 B
JavaScript
33 lines
926 B
JavaScript
import Controller from "@ember/controller";
|
|
import ModalFunctionality from "discourse/mixins/modal-functionality";
|
|
import { popupAjaxError } from "discourse/lib/ajax-error";
|
|
|
|
export default Controller.extend(ModalFunctionality, {
|
|
loading: false,
|
|
ignoredUntil: null,
|
|
actions: {
|
|
ignore() {
|
|
if (!this.ignoredUntil) {
|
|
this.flash(
|
|
I18n.t("user.user_notifications.ignore_duration_time_frame_required"),
|
|
"alert-error"
|
|
);
|
|
return;
|
|
}
|
|
this.set("loading", true);
|
|
this.model
|
|
.updateNotificationLevel("ignore", this.ignoredUntil)
|
|
.then(() => {
|
|
this.set("model.ignored", true);
|
|
this.set("model.muted", false);
|
|
if (this.onSuccess) {
|
|
this.onSuccess();
|
|
}
|
|
this.send("closeModal");
|
|
})
|
|
.catch(popupAjaxError)
|
|
.finally(() => this.set("loading", false));
|
|
}
|
|
}
|
|
});
|