mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-03-04 19:41:16 +01:00
single socket call on topic enter
This commit is contained in:
@@ -72,9 +72,7 @@ define('forum/topic', dependencies, function(pagination, infinitescroll, threadT
|
||||
|
||||
$(window).trigger('action:topic.loaded');
|
||||
|
||||
socket.emit('topics.markAsRead', tid);
|
||||
socket.emit('topics.markTopicNotificationsRead', tid);
|
||||
socket.emit('topics.increaseViewCount', tid);
|
||||
socket.emit('topics.enter', tid);
|
||||
};
|
||||
|
||||
Topic.toTop = function() {
|
||||
|
||||
@@ -54,6 +54,15 @@ SocketTopics.post = function(socket, data, callback) {
|
||||
});
|
||||
};
|
||||
|
||||
SocketTopics.enter = function(socket, tid, callback) {
|
||||
if (!tid || !socket.uid) {
|
||||
return;
|
||||
}
|
||||
SocketTopics.markAsRead(socket, tid);
|
||||
topics.markTopicNotificationsRead(tid, socket.uid);
|
||||
topics.increaseViewCount(tid);
|
||||
};
|
||||
|
||||
SocketTopics.postcount = function(socket, tid, callback) {
|
||||
topics.getTopicField(tid, 'postcount', callback);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user