2015-04-08 14:17:21 -04:00
|
|
|
import Presence from 'discourse/mixins/presence';
|
|
|
|
|
|
|
|
export default Ember.ArrayController.extend(Presence, {
|
2013-02-22 15:41:12 -05:00
|
|
|
filter: null,
|
|
|
|
onlyOverridden: false,
|
2013-11-15 16:43:56 -05:00
|
|
|
filtered: Ember.computed.notEmpty('filter'),
|
2013-02-21 12:58:21 -05:00
|
|
|
|
2013-11-15 16:46:19 -05:00
|
|
|
filterContent: Discourse.debounce(function() {
|
2013-03-01 12:45:25 -05:00
|
|
|
|
|
|
|
// If we have no content, don't bother filtering anything
|
2013-11-14 12:37:41 -05:00
|
|
|
if (!this.present('allSiteSettings')) return;
|
2013-03-01 12:45:25 -05:00
|
|
|
|
2015-03-02 12:12:19 -05:00
|
|
|
let filter;
|
2013-02-22 15:41:12 -05:00
|
|
|
if (this.get('filter')) {
|
|
|
|
filter = this.get('filter').toLowerCase();
|
|
|
|
}
|
2013-02-21 14:42:48 -05:00
|
|
|
|
2013-11-14 12:37:41 -05:00
|
|
|
if ((filter === undefined || filter.length < 1) && !this.get('onlyOverridden')) {
|
|
|
|
this.set('model', this.get('allSiteSettings'));
|
2014-12-29 15:56:33 -05:00
|
|
|
this.transitionToRoute("adminSiteSettings");
|
2013-11-14 12:37:41 -05:00
|
|
|
return;
|
|
|
|
}
|
2013-11-01 16:32:12 -04:00
|
|
|
|
2015-03-02 12:12:19 -05:00
|
|
|
const self = this,
|
|
|
|
matchesGroupedByCategory = [{nameKey: 'all_results', name: I18n.t('admin.site_settings.categories.all_results'), siteSettings: []}];
|
2013-11-14 12:37:41 -05:00
|
|
|
|
2015-03-02 12:12:19 -05:00
|
|
|
this.get('allSiteSettings').forEach(function(settingsCategory) {
|
|
|
|
const matches = settingsCategory.siteSettings.filter(function(item) {
|
2013-11-14 12:37:41 -05:00
|
|
|
if (self.get('onlyOverridden') && !item.get('overridden')) return false;
|
|
|
|
if (filter) {
|
|
|
|
if (item.get('setting').toLowerCase().indexOf(filter) > -1) return true;
|
2014-04-07 11:14:12 -04:00
|
|
|
if (item.get('setting').toLowerCase().replace(/_/g, ' ').indexOf(filter) > -1) return true;
|
2013-11-14 12:37:41 -05:00
|
|
|
if (item.get('description').toLowerCase().indexOf(filter) > -1) return true;
|
|
|
|
if (item.get('value').toLowerCase().indexOf(filter) > -1) return true;
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if (matches.length > 0) {
|
2013-11-15 16:43:56 -05:00
|
|
|
matchesGroupedByCategory[0].siteSettings.pushObjects(matches);
|
2013-02-20 13:15:50 -05:00
|
|
|
}
|
2013-11-14 12:37:41 -05:00
|
|
|
});
|
2013-02-21 12:58:21 -05:00
|
|
|
|
2013-11-14 12:37:41 -05:00
|
|
|
this.set('model', matchesGroupedByCategory);
|
2014-12-29 15:56:33 -05:00
|
|
|
this.transitionToRoute("adminSiteSettingsCategory", "all_results");
|
2013-12-20 11:06:07 -05:00
|
|
|
}, 250).observes('filter', 'onlyOverridden'),
|
|
|
|
|
|
|
|
actions: {
|
2015-03-02 12:12:19 -05:00
|
|
|
clearFilter() {
|
2014-12-29 15:56:33 -05:00
|
|
|
this.setProperties({
|
|
|
|
filter: '',
|
|
|
|
onlyOverridden: false
|
|
|
|
});
|
2013-12-20 11:06:07 -05:00
|
|
|
}
|
|
|
|
}
|
2013-03-01 12:45:25 -05:00
|
|
|
|
2013-02-22 15:41:12 -05:00
|
|
|
});
|