mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-01 11:35:55 +01:00
getUpvoters works with array
This commit is contained in:
@@ -39,15 +39,15 @@ define('forum/topic/postTools', ['composer', 'share', 'navigator'], function(com
|
||||
|
||||
function addVoteHandler() {
|
||||
$('#post-container').on('mouseenter', '.post-row .votes', function() {
|
||||
loadDataAndCreateTooltip($(this), 'posts.getUpvoters');
|
||||
loadDataAndCreateTooltip($(this));
|
||||
});
|
||||
}
|
||||
|
||||
function loadDataAndCreateTooltip(el, method) {
|
||||
function loadDataAndCreateTooltip(el) {
|
||||
var pid = el.parents('.post-row').attr('data-pid');
|
||||
socket.emit(method, pid, function(err, data) {
|
||||
if (!err) {
|
||||
createTooltip(el, data);
|
||||
socket.emit('posts.getUpvoters', [pid], function(err, data) {
|
||||
if (!err && data.length) {
|
||||
createTooltip(el, data[0]);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@@ -339,8 +339,11 @@ SocketPosts.getPrivileges = function(socket, pids, callback) {
|
||||
});
|
||||
};
|
||||
|
||||
SocketPosts.getUpvoters = function(socket, pid, callback) {
|
||||
favourites.getUpvotedUidsByPids([pid], function(err, data) {
|
||||
SocketPosts.getUpvoters = function(socket, pids, callback) {
|
||||
if (!Array.isArray(pids)) {
|
||||
return callback(new Error('[[error:invalid-data]]'));
|
||||
}
|
||||
favourites.getUpvotedUidsByPids(pids, function(err, data) {
|
||||
if (err || !Array.isArray(data) || !data.length) {
|
||||
return callback(err, []);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user