mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-21 19:42:54 +08:00
`discourse-common` was created in the past to share logic between the 'wizard' app and the main 'discourse' app. Since then, the wizard has been consolidated into the main app, so the separation of `discourse-common` is no longer useful. This commit moves `discourse-common/(lib|utils)/*` into `discourse/lib/*`, adds shims for the imports, and updates existing uses in core.
38 lines
1.2 KiB
JavaScript
Vendored
38 lines
1.2 KiB
JavaScript
Vendored
import Controller from "@ember/controller";
|
|
import { action } from "@ember/object";
|
|
import { service } from "@ember/service";
|
|
import discourseComputed from "discourse/lib/decorators";
|
|
import { i18n } from "discourse-i18n";
|
|
|
|
export default class AdminCustomizeEmailStyleEditController extends Controller {
|
|
@service dialog;
|
|
|
|
@discourseComputed("model.isSaving")
|
|
saveButtonText(isSaving) {
|
|
return isSaving ? i18n("saving") : i18n("admin.customize.save");
|
|
}
|
|
|
|
@discourseComputed("model.changed", "model.isSaving")
|
|
saveDisabled(changed, isSaving) {
|
|
return !changed || isSaving;
|
|
}
|
|
|
|
@action
|
|
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("admin.customize.email_style.save_error_with_reason", {
|
|
error: e.jqXHR.responseJSON.errors.join(". "),
|
|
})
|
|
: i18n("generic_error");
|
|
this.dialog.alert(msg);
|
|
})
|
|
.finally(() => this.set("model.changed", false));
|
|
}
|
|
}
|
|
}
|