mirror of
https://github.com/discourse/discourse.git
synced 2025-02-07 20:08:26 +00:00
Support for plugins to add bulk operations
This commit is contained in:
parent
ddbe1c017b
commit
7a508b201a
@ -1,11 +1,39 @@
|
|||||||
import ModalFunctionality from 'discourse/mixins/modal-functionality';
|
import ModalFunctionality from 'discourse/mixins/modal-functionality';
|
||||||
|
|
||||||
|
const _buttons = [];
|
||||||
|
|
||||||
|
function addBulkButton(action, key) {
|
||||||
|
_buttons.push({ action: action, label: "topics.bulk." + key });
|
||||||
|
}
|
||||||
|
|
||||||
|
// Default buttons
|
||||||
|
addBulkButton('showChangeCategory', 'change_category');
|
||||||
|
addBulkButton('deleteTopics', 'delete');
|
||||||
|
addBulkButton('closeTopics', 'close_topics');
|
||||||
|
addBulkButton('archiveTopics', 'archive_topics');
|
||||||
|
addBulkButton('showNotificationLevel', 'notification_level');
|
||||||
|
addBulkButton('resetRead', 'reset_read');
|
||||||
|
|
||||||
// Modal for performing bulk actions on topics
|
// Modal for performing bulk actions on topics
|
||||||
export default Ember.ArrayController.extend(ModalFunctionality, {
|
export default Ember.ArrayController.extend(ModalFunctionality, {
|
||||||
needs: ['discovery/topics'],
|
needs: ['discovery/topics'],
|
||||||
|
buttonRows: null,
|
||||||
|
|
||||||
onShow: function() {
|
onShow: function() {
|
||||||
this.set('controllers.modal.modalClass', 'topic-bulk-actions-modal small');
|
this.set('controllers.modal.modalClass', 'topic-bulk-actions-modal small');
|
||||||
|
|
||||||
|
const buttonRows = [];
|
||||||
|
let row = [];
|
||||||
|
_buttons.forEach(function(b) {
|
||||||
|
row.push(b);
|
||||||
|
if (row.length === 4) {
|
||||||
|
buttonRows.push(row);
|
||||||
|
row = [];
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if (row.length) { buttonRows.push(row); }
|
||||||
|
|
||||||
|
this.set('buttonRows', buttonRows);
|
||||||
},
|
},
|
||||||
|
|
||||||
perform: function(operation) {
|
perform: function(operation) {
|
||||||
@ -89,3 +117,5 @@ export default Ember.ArrayController.extend(ModalFunctionality, {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
export { addBulkButton };
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
<p>
|
{{#each row in buttonRows}}
|
||||||
<button class='btn' {{action "showChangeCategory"}}>{{i18n 'topics.bulk.change_category'}}</button>
|
<p>
|
||||||
<button class='btn' {{action "deleteTopics"}}>{{i18n 'topics.bulk.delete'}}</button>
|
{{#each button in row}}
|
||||||
<button class='btn' {{action "closeTopics"}}>{{i18n 'topics.bulk.close_topics'}}</button>
|
{{d-button action=button.action label=button.label}}
|
||||||
<button class='btn' {{action "archiveTopics"}}>{{i18n 'topics.bulk.archive_topics'}}</button>
|
{{/each}}
|
||||||
</p>
|
</p>
|
||||||
<p>
|
{{/each}}
|
||||||
<button class='btn' {{action "showNotificationLevel"}}>{{i18n 'topics.bulk.notification_level'}}</button>
|
|
||||||
<button class='btn' {{action "resetRead"}}>{{i18n 'topics.bulk.reset_read'}}</button>
|
|
||||||
</p>
|
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
<p>Choose the new category for the topics:</p>
|
<p>{{i18n "topics.bulk.choose_new_category"}}</p>
|
||||||
|
|
||||||
<p>{{category-chooser value=newCategoryId}}</p>
|
<p>{{category-chooser value=newCategoryId}}</p>
|
||||||
|
|
||||||
{{#if loading}}
|
{{#loading-spinner condition=loading}}
|
||||||
<div class='loading'>{{i18n 'loading'}}</div>
|
{{d-button action="changeCategory" label="topics.bulk.change_category"}}
|
||||||
{{else}}
|
{{/loading-spinner}}
|
||||||
<button class='btn' {{action "changeCategory"}}>Change Category</button>
|
|
||||||
{{/if}}
|
|
||||||
|
|
||||||
|
@ -0,0 +1,4 @@
|
|||||||
|
export default Discourse.ModalBodyView.extend({
|
||||||
|
templateName: 'modal/topic-bulk-actions',
|
||||||
|
title: I18n.t('topics.bulk.actions')
|
||||||
|
});
|
@ -1,12 +0,0 @@
|
|||||||
/**
|
|
||||||
Handles the view for the topic bulk actions modal
|
|
||||||
|
|
||||||
@class TopicBulkActionsView
|
|
||||||
@extends Discourse.ModalBodyView
|
|
||||||
@namespace Discourse
|
|
||||||
@module Discourse
|
|
||||||
**/
|
|
||||||
Discourse.TopicBulkActionsView = Discourse.ModalBodyView.extend({
|
|
||||||
templateName: 'modal/topic_bulk_actions',
|
|
||||||
title: I18n.t('topics.bulk.actions')
|
|
||||||
});
|
|
@ -814,6 +814,7 @@ en:
|
|||||||
close_topics: "Close Topics"
|
close_topics: "Close Topics"
|
||||||
archive_topics: "Archive Topics"
|
archive_topics: "Archive Topics"
|
||||||
notification_level: "Change Notification Level"
|
notification_level: "Change Notification Level"
|
||||||
|
choose_new_category: "Choose the new category for the topics:"
|
||||||
selected:
|
selected:
|
||||||
one: "You have selected <b>1</b> topic."
|
one: "You have selected <b>1</b> topic."
|
||||||
other: "You have selected <b>{{count}}</b> topics."
|
other: "You have selected <b>{{count}}</b> topics."
|
||||||
|
@ -8,7 +8,12 @@ class TopicsBulkAction
|
|||||||
end
|
end
|
||||||
|
|
||||||
def self.operations
|
def self.operations
|
||||||
%w(change_category close archive change_notification_level reset_read dismiss_posts delete)
|
@operations ||= %w(change_category close archive change_notification_level reset_read dismiss_posts delete)
|
||||||
|
end
|
||||||
|
|
||||||
|
def self.register_operation(name, &block)
|
||||||
|
operations << name
|
||||||
|
define_method(name, &block)
|
||||||
end
|
end
|
||||||
|
|
||||||
def perform!
|
def perform!
|
||||||
|
Loading…
x
Reference in New Issue
Block a user