discourse/app/assets/javascripts/admin/controllers/admin-site-text-edit.js
Robin Ward eab560fe2a
DEV: import I18n instead of global usage (#9768)
Co-authored-by: Mark VanLandingham <markvanlan@gmail.com>
Co-authored-by: Robin Ward <robin.ward@gmail.com>

Co-authored-by: Mark VanLandingham <markvanlan@gmail.com>
2020-05-13 16:23:41 -04:00

44 lines
1.1 KiB
JavaScript

import I18n from "I18n";
import discourseComputed from "discourse-common/utils/decorators";
import Controller from "@ember/controller";
import { popupAjaxError } from "discourse/lib/ajax-error";
import { bufferedProperty } from "discourse/mixins/buffered-content";
export default Controller.extend(bufferedProperty("siteText"), {
saved: false,
@discourseComputed("buffered.value")
saveDisabled(value) {
return this.siteText.value === value;
},
actions: {
saveChanges() {
const buffered = this.buffered;
this.siteText
.save(buffered.getProperties("value"))
.then(() => {
this.commitBuffer();
this.set("saved", true);
})
.catch(popupAjaxError);
},
revertChanges() {
this.set("saved", false);
bootbox.confirm(I18n.t("admin.site_text.revert_confirm"), result => {
if (result) {
this.siteText
.revert()
.then(props => {
const buffered = this.buffered;
buffered.setProperties(props);
this.commitBuffer();
})
.catch(popupAjaxError);
}
});
}
}
});