mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:26:04 +08:00
be354e7950
This commit was generated using the ember-native-class-codemod along with a handful of manual updates
53 lines
1.3 KiB
JavaScript
53 lines
1.3 KiB
JavaScript
import { action } from "@ember/object";
|
|
import { not } from "@ember/object/computed";
|
|
import Controller from "@ember/controller";
|
|
import { ajax } from "discourse/lib/ajax";
|
|
import { bufferedProperty } from "discourse/mixins/buffered-content";
|
|
import { propertyEqual } from "discourse/lib/computed";
|
|
|
|
export default class AdminCustomizeRobotsTxtController extends Controller.extend(
|
|
bufferedProperty("model")
|
|
) {
|
|
saved = false;
|
|
isSaving = false;
|
|
|
|
@propertyEqual("model.robots_txt", "buffered.robots_txt") saveDisabled;
|
|
|
|
@not("model.overridden") resetDisabled;
|
|
|
|
@action
|
|
save() {
|
|
this.setProperties({
|
|
isSaving: true,
|
|
saved: false,
|
|
});
|
|
|
|
ajax("robots.json", {
|
|
type: "PUT",
|
|
data: { robots_txt: this.buffered.get("robots_txt") },
|
|
})
|
|
.then((data) => {
|
|
this.commitBuffer();
|
|
this.set("saved", true);
|
|
this.set("model.overridden", data.overridden);
|
|
})
|
|
.finally(() => this.set("isSaving", false));
|
|
}
|
|
|
|
@action
|
|
reset() {
|
|
this.setProperties({
|
|
isSaving: true,
|
|
saved: false,
|
|
});
|
|
ajax("robots.json", { type: "DELETE" })
|
|
.then((data) => {
|
|
this.buffered.set("robots_txt", data.robots_txt);
|
|
this.commitBuffer();
|
|
this.set("saved", true);
|
|
this.set("model.overridden", false);
|
|
})
|
|
.finally(() => this.set("isSaving", false));
|
|
}
|
|
}
|