mirror of
https://github.com/discourse/discourse.git
synced 2025-02-11 14:59:47 +08:00
70 lines
2.2 KiB
JavaScript
70 lines
2.2 KiB
JavaScript
import ModalFunctionality from 'discourse/mixins/modal-functionality';
|
|
|
|
import ObjectController from 'discourse/controllers/object';
|
|
|
|
/**
|
|
Modal related to merging of topics
|
|
|
|
@class MergeTopicController
|
|
@extends ObjectController
|
|
@namespace Discourse
|
|
@uses ModalFunctionality
|
|
@module Discourse
|
|
**/
|
|
export default ObjectController.extend(Discourse.SelectedPostsCount, ModalFunctionality, {
|
|
needs: ['topic'],
|
|
|
|
topicController: Em.computed.alias('controllers.topic'),
|
|
selectedPosts: Em.computed.alias('topicController.selectedPosts'),
|
|
selectedReplies: Em.computed.alias('topicController.selectedReplies'),
|
|
allPostsSelected: Em.computed.alias('topicController.allPostsSelected'),
|
|
|
|
buttonDisabled: function() {
|
|
if (this.get('saving')) return true;
|
|
return this.blank('selectedTopicId');
|
|
}.property('selectedTopicId', 'saving'),
|
|
|
|
buttonTitle: function() {
|
|
if (this.get('saving')) return I18n.t('saving');
|
|
return I18n.t('topic.merge_topic.title');
|
|
}.property('saving'),
|
|
|
|
onShow: function() {
|
|
this.set('controllers.modal.modalClass', 'split-modal');
|
|
},
|
|
|
|
actions: {
|
|
movePostsToExistingTopic: function() {
|
|
this.set('saving', true);
|
|
|
|
var promise = null;
|
|
if (this.get('allPostsSelected')) {
|
|
promise = Discourse.Topic.mergeTopic(this.get('id'), this.get('selectedTopicId'));
|
|
} else {
|
|
var postIds = this.get('selectedPosts').map(function(p) { return p.get('id'); }),
|
|
replyPostIds = this.get('selectedReplies').map(function(p) { return p.get('id'); });
|
|
|
|
promise = Discourse.Topic.movePosts(this.get('id'), {
|
|
destination_topic_id: this.get('selectedTopicId'),
|
|
post_ids: postIds,
|
|
reply_post_ids: replyPostIds
|
|
});
|
|
}
|
|
|
|
var mergeTopicController = this;
|
|
promise.then(function(result) {
|
|
// Posts moved
|
|
mergeTopicController.send('closeModal');
|
|
mergeTopicController.get('topicController').send('toggleMultiSelect');
|
|
Em.run.next(function() { Discourse.URL.routeTo(result.url); });
|
|
}, function() {
|
|
// Error moving posts
|
|
mergeTopicController.flash(I18n.t('topic.merge_topic.error'));
|
|
mergeTopicController.set('saving', false);
|
|
});
|
|
return false;
|
|
}
|
|
}
|
|
|
|
});
|