discourse/app/assets/javascripts/admin/addon/components/modal/reseed.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

58 lines
1.3 KiB
JavaScript
Raw Normal View History

import Component from "@glimmer/component";
import { tracked } from "@glimmer/tracking";
import { action } from "@ember/object";
import { inject as 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;
}
}
}