discourse/app/assets/javascripts/admin/controllers/admin-customize-email-templ...

49 lines
1.3 KiB
Plaintext
Raw Normal View History

2018-06-15 11:03:24 -04:00
import { popupAjaxError } from "discourse/lib/ajax-error";
import { bufferedProperty } from "discourse/mixins/buffered-content";
import computed from "ember-addons/ember-computed-decorators";
2018-06-15 11:03:24 -04:00
export default Ember.Controller.extend(bufferedProperty("emailTemplate"), {
saved: false,
@computed("buffered")
hasMultipleSubjects(buffered) {
2018-06-15 11:03:24 -04:00
if (buffered.getProperties("subject")["subject"]) {
return false;
} else {
2018-06-15 11:03:24 -04:00
return buffered.getProperties("id")["id"];
}
},
actions: {
saveChanges() {
2018-06-15 11:03:24 -04: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-20 12:30:04 -05:00
},
revertChanges() {
2018-06-15 11:03:24 -04: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-20 12:30:04 -05:00
}
2018-06-15 11:03:24 -04:00
);
}
}
});