mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 00:29:18 +08:00
b9abd7dc9e
This feature can be enabled by choosing a destination for the `shared drafts category` site setting. * Staff members can create shared drafts, choosing a destination category for the topic when it is published. * Shared Drafts can be viewed in their category, or above the topic list for the destination category where it will end up. * When the shared draft is ready, it can be published to the appropriate category by clicking a button on the topic view. * When published, Drafts change their timestamps to the current time, and any edits to the original post are removed.
77 lines
2.5 KiB
JavaScript
77 lines
2.5 KiB
JavaScript
import debounce from 'discourse/lib/debounce';
|
|
|
|
export default Ember.Controller.extend({
|
|
filter: null,
|
|
onlyOverridden: false,
|
|
filtered: Ember.computed.notEmpty('filter'),
|
|
|
|
filterContentNow(category) {
|
|
// If we have no content, don't bother filtering anything
|
|
if (!!Ember.isEmpty(this.get('allSiteSettings'))) return;
|
|
|
|
let filter;
|
|
if (this.get('filter')) {
|
|
filter = this.get('filter').toLowerCase();
|
|
}
|
|
|
|
if ((filter === undefined || filter.length < 1) && !this.get('onlyOverridden')) {
|
|
this.set('model', this.get('allSiteSettings'));
|
|
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.get('allSiteSettings').forEach(settingsCategory => {
|
|
const siteSettings = settingsCategory.siteSettings.filter(item => {
|
|
if (this.get('onlyOverridden') && !item.get('overridden')) return false;
|
|
if (filter) {
|
|
if (item.get('setting').toLowerCase().indexOf(filter) > -1) return true;
|
|
if (item.get('setting').toLowerCase().replace(/_/g, ' ').indexOf(filter) > -1) return true;
|
|
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 (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.count = matches.length;
|
|
|
|
this.set('model', matchesGroupedByCategory);
|
|
this.transitionToRoute("adminSiteSettingsCategory", category || "all_results");
|
|
},
|
|
|
|
filterContent: debounce(function() {
|
|
if (this.get("_skipBounce")) {
|
|
this.set("_skipBounce", false);
|
|
} else {
|
|
this.filterContentNow();
|
|
}
|
|
}, 250).observes('filter', 'onlyOverridden'),
|
|
|
|
actions: {
|
|
clearFilter() {
|
|
this.setProperties({ filter: '', onlyOverridden: false });
|
|
},
|
|
|
|
toggleMenu() {
|
|
$('.admin-detail').toggleClass('mobile-closed mobile-open');
|
|
}
|
|
}
|
|
|
|
});
|