mirror of
https://github.com/discourse/discourse.git
synced 2024-12-03 11:43:41 +08:00
34 lines
987 B
Plaintext
34 lines
987 B
Plaintext
|
import computed from "ember-addons/ember-computed-decorators";
|
||
|
|
||
|
export default Ember.Controller.extend({
|
||
|
@computed("model.isSaving")
|
||
|
saveButtonText(isSaving) {
|
||
|
return isSaving ? I18n.t("saving") : I18n.t("admin.customize.save");
|
||
|
},
|
||
|
|
||
|
@computed("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));
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
});
|