2019-10-24 01:06:54 +08:00
|
|
|
import Controller, { inject as controller } from "@ember/controller";
|
2015-11-13 05:08:19 +08:00
|
|
|
import I18n from "I18n";
|
2020-07-07 17:44:13 +08:00
|
|
|
import { action } from "@ember/object";
|
2020-08-27 00:57:13 +08:00
|
|
|
import bootbox from "bootbox";
|
2015-11-13 05:08:19 +08:00
|
|
|
import { bufferedProperty } from "discourse/mixins/buffered-content";
|
2019-11-08 05:38:28 +08:00
|
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
2015-11-13 05:08:19 +08:00
|
|
|
import { popupAjaxError } from "discourse/lib/ajax-error";
|
|
|
|
|
2019-10-24 01:06:54 +08:00
|
|
|
export default Controller.extend(bufferedProperty("emailTemplate"), {
|
2020-07-07 17:44:13 +08:00
|
|
|
adminCustomizeEmailTemplates: controller(),
|
|
|
|
emailTemplate: null,
|
2015-11-13 05:08:19 +08:00
|
|
|
saved: false,
|
|
|
|
|
2019-11-08 05:38:28 +08:00
|
|
|
@discourseComputed("buffered.body", "buffered.subject")
|
2019-07-02 09:53:16 +08:00
|
|
|
saveDisabled(body, subject) {
|
|
|
|
return (
|
|
|
|
this.emailTemplate.body === body && this.emailTemplate.subject === subject
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
2019-11-08 05:38:28 +08:00
|
|
|
@discourseComputed("buffered")
|
2019-04-26 18:16:21 +08:00
|
|
|
hasMultipleSubjects(buffered) {
|
2015-11-28 13:46:13 +08:00
|
|
|
if (buffered.getProperties("subject")["subject"]) {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return buffered.getProperties("id")["id"];
|
|
|
|
}
|
2019-04-26 18:16:21 +08:00
|
|
|
},
|
2015-11-28 13:46:13 +08:00
|
|
|
|
2020-07-07 17:44:13 +08:00
|
|
|
@action
|
|
|
|
saveChanges() {
|
|
|
|
this.set("saved", false);
|
|
|
|
const buffered = this.buffered;
|
|
|
|
this.emailTemplate
|
|
|
|
.save(buffered.getProperties("subject", "body"))
|
|
|
|
.then(() => {
|
|
|
|
this.set("saved", true);
|
|
|
|
})
|
|
|
|
.catch(popupAjaxError);
|
|
|
|
},
|
2015-11-21 01:30:04 +08:00
|
|
|
|
2020-07-07 17:44:13 +08:00
|
|
|
@action
|
|
|
|
revertChanges() {
|
|
|
|
this.set("saved", false);
|
|
|
|
bootbox.confirm(
|
|
|
|
I18n.t("admin.customize.email_templates.revert_confirm"),
|
|
|
|
(result) => {
|
|
|
|
if (result) {
|
|
|
|
this.emailTemplate
|
|
|
|
.revert()
|
|
|
|
.then((props) => {
|
|
|
|
const buffered = this.buffered;
|
|
|
|
buffered.setProperties(props);
|
|
|
|
this.commitBuffer();
|
|
|
|
})
|
|
|
|
.catch(popupAjaxError);
|
2015-11-21 01:30:04 +08:00
|
|
|
}
|
2020-07-07 17:44:13 +08:00
|
|
|
}
|
|
|
|
);
|
2015-11-13 05:08:19 +08:00
|
|
|
},
|
|
|
|
});
|