2019-10-24 01:06:54 +08:00
|
|
|
import Controller from "@ember/controller";
|
2020-05-14 04:23:41 +08:00
|
|
|
import I18n from "I18n";
|
2015-11-24 05:45:05 +08:00
|
|
|
import { bufferedProperty } from "discourse/mixins/buffered-content";
|
2019-11-08 05:38:28 +08:00
|
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
2015-11-24 05:45:05 +08:00
|
|
|
import { popupAjaxError } from "discourse/lib/ajax-error";
|
2022-08-30 01:59:57 +08:00
|
|
|
import { action } from "@ember/object";
|
|
|
|
import { inject as service } from "@ember/service";
|
2013-04-05 00:59:44 +08:00
|
|
|
|
2019-10-24 01:06:54 +08:00
|
|
|
export default Controller.extend(bufferedProperty("siteText"), {
|
2022-08-30 01:59:57 +08:00
|
|
|
dialog: service(),
|
2015-11-24 05:45:05 +08:00
|
|
|
saved: false,
|
2021-01-19 01:53:45 +08:00
|
|
|
queryParams: ["locale"],
|
2013-04-05 00:59:44 +08:00
|
|
|
|
2019-11-08 05:38:28 +08:00
|
|
|
@discourseComputed("buffered.value")
|
2019-07-02 09:53:16 +08:00
|
|
|
saveDisabled(value) {
|
|
|
|
return this.siteText.value === value;
|
|
|
|
},
|
|
|
|
|
2022-08-30 01:59:57 +08:00
|
|
|
@action
|
|
|
|
saveChanges() {
|
|
|
|
const attrs = this.buffered.getProperties("value");
|
|
|
|
attrs.locale = this.locale;
|
2021-01-19 01:53:45 +08:00
|
|
|
|
2022-08-30 01:59:57 +08:00
|
|
|
this.siteText
|
|
|
|
.save(attrs)
|
|
|
|
.then(() => {
|
|
|
|
this.commitBuffer();
|
|
|
|
this.set("saved", true);
|
|
|
|
})
|
|
|
|
.catch(popupAjaxError);
|
|
|
|
},
|
2015-11-24 05:45:05 +08:00
|
|
|
|
2022-08-30 01:59:57 +08:00
|
|
|
@action
|
|
|
|
revertChanges() {
|
|
|
|
this.set("saved", false);
|
2021-01-19 01:53:45 +08:00
|
|
|
|
2022-08-30 01:59:57 +08:00
|
|
|
this.dialog.yesNoConfirm({
|
|
|
|
message: I18n.t("admin.site_text.revert_confirm"),
|
|
|
|
didConfirm: () => {
|
|
|
|
this.siteText
|
|
|
|
.revert(this.locale)
|
|
|
|
.then((props) => {
|
|
|
|
const buffered = this.buffered;
|
|
|
|
buffered.setProperties(props);
|
|
|
|
this.commitBuffer();
|
|
|
|
})
|
|
|
|
.catch(popupAjaxError);
|
|
|
|
},
|
|
|
|
});
|
2013-04-05 00:59:44 +08:00
|
|
|
},
|
2013-09-17 02:08:55 +08:00
|
|
|
});
|