2019-10-24 01:06:54 +08:00
|
|
|
import Controller from "@ember/controller";
|
2018-06-15 23:03:24 +08:00
|
|
|
import { popupAjaxError } from "discourse/lib/ajax-error";
|
|
|
|
import { bufferedProperty } from "discourse/mixins/buffered-content";
|
2019-07-02 09:53:16 +08:00
|
|
|
import computed from "ember-addons/ember-computed-decorators";
|
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,
|
2013-04-05 00:59:44 +08:00
|
|
|
|
2019-07-02 09:53:16 +08:00
|
|
|
@computed("buffered.value")
|
|
|
|
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() {
|
2019-05-27 16:15:39 +08:00
|
|
|
const buffered = this.buffered;
|
|
|
|
this.siteText
|
2018-06-15 23:03:24 +08:00
|
|
|
.save(buffered.getProperties("value"))
|
|
|
|
.then(() => {
|
|
|
|
this.commitBuffer();
|
|
|
|
this.set("saved", true);
|
|
|
|
})
|
|
|
|
.catch(popupAjaxError);
|
2015-11-24 05:45:05 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
revertChanges() {
|
2018-06-15 23:03:24 +08:00
|
|
|
this.set("saved", false);
|
|
|
|
bootbox.confirm(I18n.t("admin.site_text.revert_confirm"), result => {
|
2015-11-24 05:45:05 +08:00
|
|
|
if (result) {
|
2019-05-27 16:15:39 +08:00
|
|
|
this.siteText
|
2018-06-15 23:03:24 +08:00
|
|
|
.revert()
|
|
|
|
.then(props => {
|
2019-05-27 16:15:39 +08:00
|
|
|
const buffered = this.buffered;
|
2018-06-15 23:03:24 +08:00
|
|
|
buffered.setProperties(props);
|
|
|
|
this.commitBuffer();
|
|
|
|
})
|
|
|
|
.catch(popupAjaxError);
|
2015-11-24 05:45:05 +08:00
|
|
|
}
|
|
|
|
});
|
2013-09-17 02:08:55 +08:00
|
|
|
}
|
2013-04-05 00:59:44 +08:00
|
|
|
}
|
2013-09-17 02:08:55 +08:00
|
|
|
});
|