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