2019-04-18 17:52:59 -04:00
|
|
|
import { ajax } from "discourse/lib/ajax";
|
|
|
|
import { popupAjaxError } from "discourse/lib/ajax-error";
|
|
|
|
import { i18n, propertyNotEqual } from "discourse/lib/computed";
|
|
|
|
|
|
|
|
export default Ember.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,
|
|
|
|
savingStatus: I18n.t("saving")
|
|
|
|
});
|
|
|
|
|
|
|
|
ajax(
|
2019-10-08 17:41:13 -04:00
|
|
|
`/admin/plugins/pluginad/house_settings/${this.get("name")}.json`,
|
2019-04-18 17:52:59 -04:00
|
|
|
{
|
|
|
|
type: "PUT",
|
|
|
|
data: { value: this.get("adValue") }
|
|
|
|
}
|
|
|
|
)
|
2019-06-14 12:10:11 -04:00
|
|
|
.then(() => {
|
2019-04-18 17:52:59 -04:00
|
|
|
const adSettings = this.get("adSettings");
|
|
|
|
adSettings.set(this.get("name"), this.get("adValue"));
|
|
|
|
this.setProperties({
|
|
|
|
value: this.get("adValue"),
|
|
|
|
savingStatus: I18n.t("saved")
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.catch(popupAjaxError)
|
|
|
|
.finally(() => {
|
|
|
|
this.setProperties({
|
|
|
|
saving: false,
|
|
|
|
savingStatus: ""
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
cancel() {
|
|
|
|
this.set("adValue", this.get("value"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|