2019-10-24 01:06:54 +08:00
|
|
|
import Controller from "@ember/controller";
|
2018-06-15 23:03:24 +08:00
|
|
|
import debounce from "discourse/lib/debounce";
|
2015-04-09 02:17:21 +08:00
|
|
|
|
2019-10-24 01:06:54 +08:00
|
|
|
export default Controller.extend({
|
2013-02-23 04:41:12 +08:00
|
|
|
filter: null,
|
2018-12-11 08:59:59 +08:00
|
|
|
allSiteSettings: Ember.computed.alias("model"),
|
2018-12-11 23:48:12 +08:00
|
|
|
visibleSiteSettings: null,
|
2013-02-23 04:41:12 +08:00
|
|
|
onlyOverridden: false,
|
2013-02-22 01:58:21 +08:00
|
|
|
|
2015-09-30 01:34:09 +08:00
|
|
|
filterContentNow(category) {
|
2013-03-02 01:45:25 +08:00
|
|
|
// If we have no content, don't bother filtering anything
|
2019-05-27 16:15:39 +08:00
|
|
|
if (!!Ember.isEmpty(this.allSiteSettings)) return;
|
2013-03-02 01:45:25 +08:00
|
|
|
|
2015-03-03 01:12:19 +08:00
|
|
|
let filter;
|
2019-05-27 16:15:39 +08:00
|
|
|
if (this.filter) {
|
2019-05-27 16:42:53 +08:00
|
|
|
filter = this.filter.toLowerCase().trim();
|
2013-02-23 04:41:12 +08:00
|
|
|
}
|
2013-02-22 03:42:48 +08:00
|
|
|
|
2019-05-27 16:15:39 +08:00
|
|
|
if ((!filter || 0 === filter.length) && !this.onlyOverridden) {
|
|
|
|
this.set("visibleSiteSettings", this.allSiteSettings);
|
|
|
|
if (this.categoryNameKey === "all_results") {
|
2019-05-01 21:44:45 +08:00
|
|
|
this.transitionToRoute("adminSiteSettings");
|
|
|
|
}
|
2013-11-15 01:37:41 +08:00
|
|
|
return;
|
|
|
|
}
|
2013-11-02 04:32:12 +08:00
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
const all = {
|
|
|
|
nameKey: "all_results",
|
|
|
|
name: I18n.t("admin.site_settings.categories.all_results"),
|
|
|
|
siteSettings: []
|
|
|
|
};
|
2015-09-30 01:34:09 +08:00
|
|
|
const matchesGroupedByCategory = [all];
|
2013-11-15 01:37:41 +08:00
|
|
|
|
2015-09-30 01:34:09 +08:00
|
|
|
const matches = [];
|
2019-05-27 16:15:39 +08:00
|
|
|
this.allSiteSettings.forEach(settingsCategory => {
|
2015-09-30 01:34:09 +08:00
|
|
|
const siteSettings = settingsCategory.siteSettings.filter(item => {
|
2019-05-27 16:15:39 +08:00
|
|
|
if (this.onlyOverridden && !item.get("overridden")) return false;
|
2013-11-15 01:37:41 +08:00
|
|
|
if (filter) {
|
2018-06-15 23:03:24 +08:00
|
|
|
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)
|
|
|
|
);
|
2013-11-15 01:37:41 +08:00
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
2015-09-30 01:34:09 +08:00
|
|
|
if (siteSettings.length > 0) {
|
|
|
|
matches.pushObjects(siteSettings);
|
2015-06-09 20:34:06 +08:00
|
|
|
matchesGroupedByCategory.pushObject({
|
|
|
|
nameKey: settingsCategory.nameKey,
|
2018-06-15 23:03:24 +08:00
|
|
|
name: I18n.t(
|
|
|
|
"admin.site_settings.categories." + settingsCategory.nameKey
|
|
|
|
),
|
2015-09-30 01:34:09 +08:00
|
|
|
siteSettings,
|
|
|
|
count: siteSettings.length
|
2015-06-09 20:34:06 +08:00
|
|
|
});
|
2013-02-21 02:15:50 +08:00
|
|
|
}
|
2013-11-15 01:37:41 +08:00
|
|
|
});
|
2013-02-22 01:58:21 +08:00
|
|
|
|
2015-09-30 01:34:09 +08:00
|
|
|
all.siteSettings.pushObjects(matches.slice(0, 30));
|
2018-05-16 21:37:40 +08:00
|
|
|
all.hasMore = matches.length > 30;
|
2018-06-15 23:03:24 +08:00
|
|
|
all.count = all.hasMore ? "30+" : matches.length;
|
2015-09-30 01:34:09 +08:00
|
|
|
|
2018-12-11 23:48:12 +08:00
|
|
|
this.set("visibleSiteSettings", matchesGroupedByCategory);
|
2018-06-15 23:03:24 +08:00
|
|
|
this.transitionToRoute(
|
|
|
|
"adminSiteSettingsCategory",
|
|
|
|
category || "all_results"
|
|
|
|
);
|
2015-07-03 00:45:17 +08:00
|
|
|
},
|
|
|
|
|
2015-08-11 05:11:27 +08:00
|
|
|
filterContent: debounce(function() {
|
2019-05-27 16:15:39 +08:00
|
|
|
if (this._skipBounce) {
|
2018-06-15 23:03:24 +08:00
|
|
|
this.set("_skipBounce", false);
|
2015-07-03 00:45:17 +08:00
|
|
|
} else {
|
|
|
|
this.filterContentNow();
|
|
|
|
}
|
2019-05-01 21:44:45 +08:00
|
|
|
}, 250).observes("filter", "onlyOverridden", "model"),
|
2013-12-21 00:06:07 +08:00
|
|
|
|
|
|
|
actions: {
|
2015-03-03 01:12:19 +08:00
|
|
|
clearFilter() {
|
2018-06-15 23:03:24 +08:00
|
|
|
this.setProperties({ filter: "", onlyOverridden: false });
|
2015-08-17 01:35:23 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
toggleMenu() {
|
2018-06-15 23:03:24 +08:00
|
|
|
$(".admin-detail").toggleClass("mobile-closed mobile-open");
|
2013-12-21 00:06:07 +08:00
|
|
|
}
|
|
|
|
}
|
2013-02-23 04:41:12 +08:00
|
|
|
});
|