mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 19:45:21 +08:00
58 lines
1.3 KiB
JavaScript
58 lines
1.3 KiB
JavaScript
import Component from "@glimmer/component";
|
|
import { tracked } from "@glimmer/tracking";
|
|
import { action } from "@ember/object";
|
|
import { service } from "@ember/service";
|
|
import { ajax } from "discourse/lib/ajax";
|
|
import I18n from "discourse-i18n";
|
|
|
|
export default class Reseed extends Component {
|
|
@service dialog;
|
|
|
|
@tracked loading = true;
|
|
@tracked reseeding = false;
|
|
@tracked categories = null;
|
|
@tracked topics = null;
|
|
@tracked flash;
|
|
|
|
constructor() {
|
|
super(...arguments);
|
|
this.loadReseed();
|
|
}
|
|
|
|
@action
|
|
async loadReseed() {
|
|
try {
|
|
const result = await ajax("/admin/customize/reseed");
|
|
this.categories = result.categories;
|
|
this.topics = result.topics;
|
|
} finally {
|
|
this.loading = false;
|
|
}
|
|
}
|
|
|
|
_extractSelectedIds(items) {
|
|
return items.filter((item) => item.selected).map((item) => item.id);
|
|
}
|
|
|
|
@action
|
|
async reseed() {
|
|
try {
|
|
this.reseeding = true;
|
|
await ajax("/admin/customize/reseed", {
|
|
data: {
|
|
category_ids: this._extractSelectedIds(this.categories),
|
|
topic_ids: this._extractSelectedIds(this.topics),
|
|
},
|
|
type: "POST",
|
|
});
|
|
|
|
this.flash = null;
|
|
this.args.closeModal();
|
|
} catch {
|
|
this.flash = I18n.t("generic_error");
|
|
} finally {
|
|
this.reseeding = false;
|
|
}
|
|
}
|
|
}
|