mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 06:30:15 +08:00
8304f40f84
Debouncing inline anonymous functions does not work. This fixes all instances of that error by extracting the function or using the new `@debounce(delay)` decorator
137 lines
3.7 KiB
JavaScript
137 lines
3.7 KiB
JavaScript
import Controller from "@ember/controller";
|
|
import I18n from "I18n";
|
|
import { INPUT_DELAY } from "discourse-common/config/environment";
|
|
import { alias } from "@ember/object/computed";
|
|
import { isEmpty } from "@ember/utils";
|
|
import { debounce, observes } from "discourse-common/utils/decorators";
|
|
import { action } from "@ember/object";
|
|
|
|
export default Controller.extend({
|
|
filter: null,
|
|
allSiteSettings: alias("model"),
|
|
visibleSiteSettings: null,
|
|
onlyOverridden: false,
|
|
|
|
filterContentNow(category) {
|
|
// If we have no content, don't bother filtering anything
|
|
if (!!isEmpty(this.allSiteSettings)) {
|
|
return;
|
|
}
|
|
|
|
let filter, pluginFilter;
|
|
if (this.filter) {
|
|
filter = this.filter
|
|
.toLowerCase()
|
|
.split(" ")
|
|
.filter((word) => {
|
|
if (word.length === 0) {
|
|
return false;
|
|
}
|
|
|
|
if (word.startsWith("plugin:")) {
|
|
pluginFilter = word.slice("plugin:".length).trim();
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
})
|
|
.join(" ")
|
|
.trim();
|
|
}
|
|
|
|
if (
|
|
(!filter || 0 === filter.length) &&
|
|
(!pluginFilter || 0 === pluginFilter.length) &&
|
|
!this.onlyOverridden
|
|
) {
|
|
this.set("visibleSiteSettings", this.allSiteSettings);
|
|
if (this.categoryNameKey === "all_results") {
|
|
this.transitionToRoute("adminSiteSettings");
|
|
}
|
|
return;
|
|
}
|
|
|
|
const all = {
|
|
nameKey: "all_results",
|
|
name: I18n.t("admin.site_settings.categories.all_results"),
|
|
siteSettings: [],
|
|
};
|
|
const matchesGroupedByCategory = [all];
|
|
|
|
const matches = [];
|
|
this.allSiteSettings.forEach((settingsCategory) => {
|
|
const siteSettings = settingsCategory.siteSettings.filter((item) => {
|
|
if (this.onlyOverridden && !item.get("overridden")) {
|
|
return false;
|
|
}
|
|
if (pluginFilter && item.plugin !== pluginFilter) {
|
|
return false;
|
|
}
|
|
if (filter) {
|
|
const setting = item.get("setting").toLowerCase();
|
|
return (
|
|
setting.includes(filter) ||
|
|
setting.replace(/_/g, " ").includes(filter) ||
|
|
item.get("description").toLowerCase().includes(filter) ||
|
|
(item.get("value") || "").toLowerCase().includes(filter)
|
|
);
|
|
} else {
|
|
return true;
|
|
}
|
|
});
|
|
if (siteSettings.length > 0) {
|
|
matches.pushObjects(siteSettings);
|
|
matchesGroupedByCategory.pushObject({
|
|
nameKey: settingsCategory.nameKey,
|
|
name: I18n.t(
|
|
"admin.site_settings.categories." + settingsCategory.nameKey
|
|
),
|
|
siteSettings,
|
|
count: siteSettings.length,
|
|
});
|
|
}
|
|
});
|
|
|
|
all.siteSettings.pushObjects(matches.slice(0, 30));
|
|
all.hasMore = matches.length > 30;
|
|
all.count = all.hasMore ? "30+" : matches.length;
|
|
|
|
const categoryMatches = matchesGroupedByCategory.findBy(
|
|
"nameKey",
|
|
category
|
|
);
|
|
if (!categoryMatches || categoryMatches.count === 0) {
|
|
category = "all_results";
|
|
}
|
|
|
|
this.set("visibleSiteSettings", matchesGroupedByCategory);
|
|
this.transitionToRoute(
|
|
"adminSiteSettingsCategory",
|
|
category || "all_results"
|
|
);
|
|
},
|
|
|
|
@observes("filter", "onlyOverridden", "model")
|
|
@debounce(INPUT_DELAY)
|
|
filterContent() {
|
|
if (this._skipBounce) {
|
|
this.set("_skipBounce", false);
|
|
} else {
|
|
this.filterContentNow(this.categoryNameKey);
|
|
}
|
|
},
|
|
|
|
@action
|
|
clearFilter() {
|
|
this.setProperties({ filter: "", onlyOverridden: false });
|
|
},
|
|
|
|
@action
|
|
toggleMenu() {
|
|
const adminDetail = document.querySelector(".admin-detail");
|
|
["mobile-closed", "mobile-open"].forEach((state) => {
|
|
adminDetail.classList.toggle(state);
|
|
});
|
|
},
|
|
});
|