mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-19 03:52:25 -05:00
0947191060
- new "show-footer" mixins - converted most of the routes to ES6 - FIX: handling of "indexStream" in user pages There will now be a footer on all the following pages - /exception - /about - /latest - /new - /unread - /starred - /top - /categories - /c/:category - /c/:category/l/latest - /c/:category/l/new - /c/:category/l/unread - /c/:category/l/top - /t/:topic/:id - /groups/:name/members - /user/activity - /user/activity/topics - /user/activity/posts - /user/activity/replies - /user/activity/likes-given - /user/activity/likes-received - /user/activity/bookmarks - /user/activity/starred - /user/badges - /user/notifications - /user/flagged-posts - /user/deleted-posts - /user/private-messages - /user/private-messages/mine - /user/private-messages/unread - /user/invited - /user/:username/preferences - /faq (static pages) - /badges - /badges/:id/:badge
52 lines
1.6 KiB
JavaScript
52 lines
1.6 KiB
JavaScript
import ModalFunctionality from 'discourse/mixins/modal-functionality';
|
|
import ObjectController from 'discourse/controllers/object';
|
|
|
|
// Modal related to changing the ownership of posts
|
|
export default ObjectController.extend(Discourse.SelectedPostsCount, ModalFunctionality, {
|
|
needs: ['topic'],
|
|
|
|
topicController: Em.computed.alias('controllers.topic'),
|
|
selectedPosts: Em.computed.alias('topicController.selectedPosts'),
|
|
|
|
buttonDisabled: function() {
|
|
if (this.get('saving')) return true;
|
|
return this.blank('new_user');
|
|
}.property('saving', 'new_user'),
|
|
|
|
buttonTitle: function() {
|
|
if (this.get('saving')) return I18n.t('saving');
|
|
return I18n.t('topic.change_owner.action');
|
|
}.property('saving'),
|
|
|
|
onShow: function() {
|
|
this.setProperties({
|
|
saving: false,
|
|
new_user: ''
|
|
});
|
|
},
|
|
|
|
actions: {
|
|
changeOwnershipOfPosts: function() {
|
|
this.set('saving', true);
|
|
|
|
var postIds = this.get('selectedPosts').map(function(p) { return p.get('id'); }),
|
|
self = this,
|
|
saveOpts = {
|
|
post_ids: postIds,
|
|
username: this.get('new_user')
|
|
};
|
|
|
|
Discourse.Topic.changeOwners(this.get('id'), saveOpts).then(function(result) {
|
|
// success
|
|
self.send('closeModal');
|
|
self.get('topicController').send('toggleMultiSelect');
|
|
Em.run.next(function() { Discourse.URL.routeTo(result.url); });
|
|
}, function() {
|
|
// failure
|
|
self.flash(I18n.t('topic.change_owner.error'), 'alert-error');
|
|
self.set('saving', false);
|
|
});
|
|
return false;
|
|
}
|
|
}
|
|
});
|