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";
|
2020-08-27 00:57:13 +08:00
|
|
|
import bootbox from "bootbox";
|
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";
|
2013-04-05 00:59:44 +08:00
|
|
|
|
2019-10-24 01:06:54 +08:00
|
|
|
export default Controller.extend(bufferedProperty("siteText"), {
|
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;
|
|
|
|
},
|
|
|
|
|
2013-09-17 02:08:55 +08:00
|
|
|
actions: {
|
2015-08-08 02:05:08 +08:00
|
|
|
saveChanges() {
|
2021-01-19 01:53:45 +08:00
|
|
|
const attrs = this.buffered.getProperties("value");
|
|
|
|
attrs.locale = this.locale;
|
|
|
|
|
2019-05-27 16:15:39 +08:00
|
|
|
this.siteText
|
2021-01-19 01:53:45 +08:00
|
|
|
.save(attrs)
|
2015-11-24 05:45:05 +08:00
|
|
|
.then(() => {
|
|
|
|
this.commitBuffer();
|
|
|
|
this.set("saved", true);
|
|
|
|
})
|
|
|
|
.catch(popupAjaxError);
|
|
|
|
},
|
|
|
|
|
|
|
|
revertChanges() {
|
|
|
|
this.set("saved", false);
|
2021-01-19 01:53:45 +08:00
|
|
|
|
2015-11-24 05:45:05 +08:00
|
|
|
bootbox.confirm(I18n.t("admin.site_text.revert_confirm"), (result) => {
|
|
|
|
if (result) {
|
2019-05-27 16:15:39 +08:00
|
|
|
this.siteText
|
2021-01-19 01:53:45 +08:00
|
|
|
.revert(this.locale)
|
2015-11-24 05:45:05 +08:00
|
|
|
.then((props) => {
|
2019-05-27 16:15:39 +08:00
|
|
|
const buffered = this.buffered;
|
2015-11-24 05:45:05 +08:00
|
|
|
buffered.setProperties(props);
|
|
|
|
this.commitBuffer();
|
|
|
|
})
|
|
|
|
.catch(popupAjaxError);
|
|
|
|
}
|
|
|
|
});
|
2013-09-17 02:08:55 +08:00
|
|
|
},
|
2013-04-05 00:59:44 +08:00
|
|
|
},
|
2013-09-17 02:08:55 +08:00
|
|
|
});
|