discourse-adplugin/assets/javascripts/discourse/components/house-ads-setting.js

59 lines
1.5 KiB
JavaScript
Raw Normal View History

2022-03-06 13:52:19 -05:00
import Component from "@ember/component";
import { ajax } from "discourse/lib/ajax";
import { popupAjaxError } from "discourse/lib/ajax-error";
import { i18n, propertyNotEqual } from "discourse/lib/computed";
2020-09-04 07:24:14 -04:00
import I18n from "I18n";
2022-03-06 13:52:19 -05:00
export default Component.extend({
classNames: "house-ads-setting",
adValue: "",
saving: false,
savingStatus: "",
title: i18n("name", "admin.adplugin.house_ads.%@.title"),
help: i18n("name", "admin.adplugin.house_ads.%@.description"),
changed: propertyNotEqual("adValue", "value"),
init() {
this._super(...arguments);
this.set("adValue", this.get("value"));
},
actions: {
save() {
if (!this.get("saving")) {
this.setProperties({
saving: true,
2020-09-04 07:24:14 -04:00
savingStatus: I18n.t("saving"),
});
ajax(
`/admin/plugins/pluginad/house_settings/${this.get("name")}.json`,
{
type: "PUT",
2020-09-04 07:24:14 -04:00
data: { value: this.get("adValue") },
}
)
2019-06-14 12:10:11 -04:00
.then(() => {
const adSettings = this.get("adSettings");
adSettings.set(this.get("name"), this.get("adValue"));
this.setProperties({
value: this.get("adValue"),
2020-09-04 07:24:14 -04:00
savingStatus: I18n.t("saved"),
});
})
.catch(popupAjaxError)
.finally(() => {
this.setProperties({
saving: false,
2020-09-04 07:24:14 -04:00
savingStatus: "",
});
});
}
},
cancel() {
this.set("adValue", this.get("value"));
2020-09-04 07:24:14 -04:00
},
},
});