mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 19:34:09 +08:00
4116bce902
This adds a new framework for accessible dialogs that will eventually replace bootbox. Under the hood, it uses the a11y-dialog package and an in-repo Ember addon. See PR for usage details.
52 lines
1.3 KiB
JavaScript
52 lines
1.3 KiB
JavaScript
import Controller from "@ember/controller";
|
|
import I18n from "I18n";
|
|
import { bufferedProperty } from "discourse/mixins/buffered-content";
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
|
import { popupAjaxError } from "discourse/lib/ajax-error";
|
|
import { action } from "@ember/object";
|
|
import { inject as service } from "@ember/service";
|
|
|
|
export default Controller.extend(bufferedProperty("siteText"), {
|
|
dialog: service(),
|
|
saved: false,
|
|
queryParams: ["locale"],
|
|
|
|
@discourseComputed("buffered.value")
|
|
saveDisabled(value) {
|
|
return this.siteText.value === value;
|
|
},
|
|
|
|
@action
|
|
saveChanges() {
|
|
const attrs = this.buffered.getProperties("value");
|
|
attrs.locale = this.locale;
|
|
|
|
this.siteText
|
|
.save(attrs)
|
|
.then(() => {
|
|
this.commitBuffer();
|
|
this.set("saved", true);
|
|
})
|
|
.catch(popupAjaxError);
|
|
},
|
|
|
|
@action
|
|
revertChanges() {
|
|
this.set("saved", false);
|
|
|
|
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);
|
|
},
|
|
});
|
|
},
|
|
});
|