dont make extra socket call on new post and IS

v1.18.x
barisusakli 10 years ago
parent d146bff2a1
commit 2ec0d3f376

@ -15,6 +15,8 @@ define('forum/topic/postTools', ['share', 'navigator', 'components', 'translator
share.addShareHandlers(topicName); share.addShareHandlers(topicName);
addVoteHandler(); addVoteHandler();
PostTools.updatePostCount(ajaxify.data.postcount);
}; };
PostTools.toggle = function(pid, isDeleted) { PostTools.toggle = function(pid, isDeleted) {
@ -28,15 +30,11 @@ define('forum/topic/postTools', ['share', 'navigator', 'components', 'translator
postEl.find('[component="post/purge"]').toggleClass('hidden', !isDeleted); postEl.find('[component="post/purge"]').toggleClass('hidden', !isDeleted);
}; };
PostTools.updatePostCount = function() { PostTools.updatePostCount = function(postCount) {
socket.emit('topics.postcount', ajaxify.data.tid, function(err, postCount) { var postCountEl = components.get('topic/post-count');
if (!err) { postCountEl.html(postCount).attr('title', postCount);
var postCountEl = components.get('topic/post-count'); utils.makeNumbersHumanReadable(postCountEl);
postCountEl.html(postCount).attr('title', postCount); navigator.setCount(postCount);
utils.makeNumbersHumanReadable(postCountEl);
navigator.setCount(postCount);
}
});
}; };
function addVoteHandler() { function addVoteHandler() {

@ -28,6 +28,8 @@ define('forum/topic/posts', [
}); });
updatePostCounts(data.posts); updatePostCounts(data.posts);
ajaxify.data.postcount ++;
postTools.updatePostCount(ajaxify.data.postcount);
if (config.usePagination) { if (config.usePagination) {
onNewPostPagination(data); onNewPostPagination(data);
@ -220,7 +222,7 @@ define('forum/topic/posts', [
$this.wrap('<a href="' + $this.attr('src') + '" target="_blank">'); $this.wrap('<a href="' + $this.attr('src') + '" target="_blank">');
} }
}); });
postTools.updatePostCount();
addBlockquoteEllipses(posts.find('[component="post/content"] > blockquote > blockquote')); addBlockquoteEllipses(posts.find('[component="post/content"] > blockquote > blockquote'));
hidePostToolsForDeletedPosts(posts); hidePostToolsForDeletedPosts(posts);
Posts.showBottomPostBar(); Posts.showBottomPostBar();

Loading…
Cancel
Save