mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 04:33:52 +08:00
be354e7950
This commit was generated using the ember-native-class-codemod along with a handful of manual updates
65 lines
1.7 KiB
JavaScript
65 lines
1.7 KiB
JavaScript
import { inject as service } from "@ember/service";
|
|
import Controller, { inject as controller } from "@ember/controller";
|
|
import I18n from "I18n";
|
|
import { action } from "@ember/object";
|
|
import { bufferedProperty } from "discourse/mixins/buffered-content";
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
|
import { popupAjaxError } from "discourse/lib/ajax-error";
|
|
|
|
export default class AdminCustomizeEmailTemplatesEditController extends Controller.extend(
|
|
bufferedProperty("emailTemplate")
|
|
) {
|
|
@service dialog;
|
|
@controller adminCustomizeEmailTemplates;
|
|
|
|
emailTemplate = null;
|
|
saved = false;
|
|
|
|
@discourseComputed("buffered.body", "buffered.subject")
|
|
saveDisabled(body, subject) {
|
|
return (
|
|
this.emailTemplate.body === body && this.emailTemplate.subject === subject
|
|
);
|
|
}
|
|
|
|
@discourseComputed("buffered")
|
|
hasMultipleSubjects(buffered) {
|
|
if (buffered.getProperties("subject")["subject"]) {
|
|
return false;
|
|
} else {
|
|
return buffered.getProperties("id")["id"];
|
|
}
|
|
}
|
|
|
|
@action
|
|
saveChanges() {
|
|
this.set("saved", false);
|
|
const buffered = this.buffered;
|
|
this.emailTemplate
|
|
.save(buffered.getProperties("subject", "body"))
|
|
.then(() => {
|
|
this.set("saved", true);
|
|
})
|
|
.catch(popupAjaxError);
|
|
}
|
|
|
|
@action
|
|
revertChanges() {
|
|
this.set("saved", false);
|
|
|
|
this.dialog.yesNoConfirm({
|
|
title: I18n.t("admin.customize.email_templates.revert_confirm"),
|
|
didConfirm: () => {
|
|
return this.emailTemplate
|
|
.revert()
|
|
.then((props) => {
|
|
const buffered = this.buffered;
|
|
buffered.setProperties(props);
|
|
this.commitBuffer();
|
|
})
|
|
.catch(popupAjaxError);
|
|
},
|
|
});
|
|
}
|
|
}
|