mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-11 16:35:47 +01:00
removed one of the timeouts in user search
This commit is contained in:
@@ -47,36 +47,34 @@ define(function() {
|
||||
|
||||
$('#user-notfound-notify').html('<i class="fa fa-spinner fa-spin"></i>');
|
||||
|
||||
setTimeout(function() {
|
||||
socket.emit('user.search', username, function(err, data) {
|
||||
if(err) {
|
||||
return app.alert(err.message);
|
||||
}
|
||||
socket.emit('user.search', username, function(err, data) {
|
||||
if(err) {
|
||||
return app.alert(err.message);
|
||||
}
|
||||
|
||||
if (!data) {
|
||||
$('#user-notfound-notify').html('You need to be logged in to search!');
|
||||
$('#user-notfound-notify').parent().addClass('btn-warning label-warning');
|
||||
return;
|
||||
}
|
||||
if (!data) {
|
||||
$('#user-notfound-notify').html('You need to be logged in to search!');
|
||||
$('#user-notfound-notify').parent().addClass('btn-warning label-warning');
|
||||
return;
|
||||
}
|
||||
|
||||
ajaxify.loadTemplate('users', function(usersTemplate) {
|
||||
var html = templates.parse(templates.getBlock(usersTemplate, 'users'), data);
|
||||
ajaxify.loadTemplate('users', function(usersTemplate) {
|
||||
var html = templates.parse(templates.getBlock(usersTemplate, 'users'), data);
|
||||
|
||||
translator.translate(html, function(translated) {
|
||||
$('#users-container').html(translated);
|
||||
translator.translate(html, function(translated) {
|
||||
$('#users-container').html(translated);
|
||||
|
||||
|
||||
if (data && data.users.length === 0) {
|
||||
$('#user-notfound-notify').html('User not found!');
|
||||
$('#user-notfound-notify').parent().addClass('btn-warning label-warning');
|
||||
} else {
|
||||
$('#user-notfound-notify').html(data.users.length + ' user' + (data.users.length > 1 ? 's' : '') + ' found! Search took ' + data.timing + ' ms.');
|
||||
$('#user-notfound-notify').parent().addClass('btn-success label-success');
|
||||
}
|
||||
});
|
||||
if (data && data.users.length === 0) {
|
||||
$('#user-notfound-notify').html('User not found!');
|
||||
$('#user-notfound-notify').parent().addClass('btn-warning label-warning');
|
||||
} else {
|
||||
$('#user-notfound-notify').html(data.users.length + ' user' + (data.users.length > 1 ? 's' : '') + ' found! Search took ' + data.timing + ' ms.');
|
||||
$('#user-notfound-notify').parent().addClass('btn-success label-success');
|
||||
}
|
||||
});
|
||||
});
|
||||
}, 500); //replace this with global throttling function/constant
|
||||
});
|
||||
|
||||
}, 250);
|
||||
});
|
||||
|
||||
@@ -18,16 +18,21 @@ module.exports = function(User) {
|
||||
query = query.toLowerCase();
|
||||
|
||||
var usernames = Object.keys(usernamesHash);
|
||||
var uids = usernames.filter(function(username) {
|
||||
return username.toLowerCase().indexOf(query) === 0;
|
||||
})
|
||||
.slice(0, 10)
|
||||
.sort(function(a, b) {
|
||||
return a > b;
|
||||
})
|
||||
.map(function(username) {
|
||||
return usernamesHash[username];
|
||||
});
|
||||
var uids = [];
|
||||
|
||||
for(var i=0; i<usernames.length; ++i) {
|
||||
if (usernames[i].toLowerCase().indexOf(query) === 0) {
|
||||
uids.push(usernames[i]);
|
||||
}
|
||||
}
|
||||
|
||||
uids = uids.slice(0, 10)
|
||||
.sort(function(a, b) {
|
||||
return a > b;
|
||||
})
|
||||
.map(function(username) {
|
||||
return usernamesHash[username];
|
||||
});
|
||||
|
||||
User.getUsers(uids, function(err, userdata) {
|
||||
if (err) {
|
||||
|
||||
Reference in New Issue
Block a user