discourse/app/assets/javascripts/discourse/controllers/bulk-notification-level.js.es6

31 lines
940 B
Text
Raw Normal View History

import NotificationLevels from 'discourse/lib/notification-levels';
// Support for changing the notification level of various topics
export default Em.Controller.extend({
needs: ['topic-bulk-actions'],
notificationLevelId: null,
notificationLevels: function() {
var result = [];
Object.keys(NotificationLevels).forEach(function(k) {
result.push({
id: NotificationLevels[k].toString(),
name: I18n.t('topic.notifications.' + k.toLowerCase() + ".title"),
description: I18n.t('topic.notifications.' + k.toLowerCase() + ".description")
});
});
return result;
}.property(),
disabled: Em.computed.empty("notificationLevelId"),
actions: {
changeNotificationLevel: function() {
this.get('controllers.topic-bulk-actions').performAndRefresh({
type: 'change_notification_level',
notification_level_id: this.get('notificationLevelId')
});
}
}
});