mirror of
https://github.com/discourse/discourse.git
synced 2024-11-30 02:23:44 +08:00
d1cc60c435
Changes made using the ember-native-class-codemod, plus some manual tweaks
75 lines
1.7 KiB
JavaScript
75 lines
1.7 KiB
JavaScript
import { computed } from "@ember/object";
|
|
import { classNames } from "@ember-decorators/component";
|
|
import FormTemplate from "discourse/models/form-template";
|
|
import MultiSelectComponent from "select-kit/components/multi-select";
|
|
import {
|
|
pluginApiIdentifiers,
|
|
selectKitOptions,
|
|
} from "select-kit/components/select-kit";
|
|
|
|
@classNames("form-template-chooser")
|
|
@selectKitOptions({
|
|
none: "form_template_chooser.select_template",
|
|
})
|
|
@pluginApiIdentifiers("form-template-chooser")
|
|
export default class FormTemplateChooser extends MultiSelectComponent {
|
|
init() {
|
|
super.init(...arguments);
|
|
this.triggerSearch();
|
|
}
|
|
|
|
didUpdateAttrs() {
|
|
super.didUpdateAttrs(...arguments);
|
|
this.set("templatesLoaded", false);
|
|
this.triggerSearch();
|
|
}
|
|
|
|
@computed("templates")
|
|
get content() {
|
|
return this.templates;
|
|
}
|
|
|
|
search(filter) {
|
|
if (this.get("templatesLoaded")) {
|
|
return super.search(filter);
|
|
} else {
|
|
return this._fetchTemplates();
|
|
}
|
|
}
|
|
|
|
async _fetchTemplates() {
|
|
if (this.get("loadingTemplates")) {
|
|
return;
|
|
}
|
|
|
|
this.set("templatesLoaded", false);
|
|
this.set("loadingTemplates", true);
|
|
|
|
const result = await FormTemplate.findAll();
|
|
|
|
let sortedTemplates = this._sortTemplatesByName(result);
|
|
|
|
if (this.filteredIds) {
|
|
sortedTemplates = sortedTemplates.filter((t) =>
|
|
this.filteredIds.includes(t.id)
|
|
);
|
|
}
|
|
|
|
if (sortedTemplates.length === 0) {
|
|
this.set("selectKit.options.disabled", true);
|
|
}
|
|
|
|
this.setProperties({
|
|
templates: sortedTemplates,
|
|
loadingTemplates: false,
|
|
templatesLoaded: true,
|
|
});
|
|
|
|
return this.templates;
|
|
}
|
|
|
|
_sortTemplatesByName(templates) {
|
|
return templates.sort((a, b) => a.name.localeCompare(b.name));
|
|
}
|
|
}
|