2018-06-15 23:03:24 +08:00
|
|
|
import { popupAjaxError } from "discourse/lib/ajax-error";
|
|
|
|
import { bufferedProperty } from "discourse/mixins/buffered-content";
|
2015-11-13 05:08:19 +08:00
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
export default Ember.Controller.extend(bufferedProperty("emailTemplate"), {
|
2015-11-13 05:08:19 +08:00
|
|
|
saved: false,
|
|
|
|
|
2015-11-28 13:46:13 +08:00
|
|
|
hasMultipleSubjects: function() {
|
2018-06-15 23:03:24 +08:00
|
|
|
const buffered = this.get("buffered");
|
|
|
|
if (buffered.getProperties("subject")["subject"]) {
|
2015-11-28 13:46:13 +08:00
|
|
|
return false;
|
|
|
|
} else {
|
2018-06-15 23:03:24 +08:00
|
|
|
return buffered.getProperties("id")["id"];
|
2015-11-28 13:46:13 +08:00
|
|
|
}
|
|
|
|
}.property("buffered"),
|
|
|
|
|
2015-11-13 05:08:19 +08:00
|
|
|
actions: {
|
|
|
|
saveChanges() {
|
2018-06-15 23:03:24 +08:00
|
|
|
this.set("saved", false);
|
|
|
|
const buffered = this.get("buffered");
|
|
|
|
this.get("emailTemplate")
|
|
|
|
.save(buffered.getProperties("subject", "body"))
|
|
|
|
.then(() => {
|
|
|
|
this.set("saved", true);
|
|
|
|
})
|
|
|
|
.catch(popupAjaxError);
|
2015-11-21 01:30:04 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
revertChanges() {
|
2018-06-15 23:03:24 +08:00
|
|
|
this.set("saved", false);
|
|
|
|
bootbox.confirm(
|
|
|
|
I18n.t("admin.customize.email_templates.revert_confirm"),
|
|
|
|
result => {
|
|
|
|
if (result) {
|
|
|
|
this.get("emailTemplate")
|
|
|
|
.revert()
|
|
|
|
.then(props => {
|
|
|
|
const buffered = this.get("buffered");
|
|
|
|
buffered.setProperties(props);
|
|
|
|
this.commitBuffer();
|
|
|
|
})
|
|
|
|
.catch(popupAjaxError);
|
|
|
|
}
|
2015-11-21 01:30:04 +08:00
|
|
|
}
|
2018-06-15 23:03:24 +08:00
|
|
|
);
|
2015-11-13 05:08:19 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|