mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 00:29:18 +08:00
37 lines
1.1 KiB
JavaScript
37 lines
1.1 KiB
JavaScript
import Controller from "@ember/controller";
|
|
import I18n from "I18n";
|
|
import bootbox from "bootbox";
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
|
|
|
export default Controller.extend({
|
|
@discourseComputed("model.isSaving")
|
|
saveButtonText(isSaving) {
|
|
return isSaving ? I18n.t("saving") : I18n.t("admin.customize.save");
|
|
},
|
|
|
|
@discourseComputed("model.changed", "model.isSaving")
|
|
saveDisabled(changed, isSaving) {
|
|
return !changed || isSaving;
|
|
},
|
|
|
|
actions: {
|
|
save() {
|
|
if (!this.model.saving) {
|
|
this.set("saving", true);
|
|
this.model
|
|
.update(this.model.getProperties("html", "css"))
|
|
.catch((e) => {
|
|
const msg =
|
|
e.jqXHR.responseJSON && e.jqXHR.responseJSON.errors
|
|
? I18n.t("admin.customize.email_style.save_error_with_reason", {
|
|
error: e.jqXHR.responseJSON.errors.join(". "),
|
|
})
|
|
: I18n.t("generic_error");
|
|
bootbox.alert(msg);
|
|
})
|
|
.finally(() => this.set("model.changed", false));
|
|
}
|
|
},
|
|
},
|
|
});
|