|
|
|
'use strict';
|
|
|
|
|
|
|
|
/* globals define, socket, app, templates, bootbox, ajaxify */
|
|
|
|
|
|
|
|
define('forum/users', ['translator'], function(translator) {
|
|
|
|
var Users = {};
|
|
|
|
|
|
|
|
var loadingMoreUsers = false;
|
|
|
|
|
|
|
|
Users.init = function() {
|
|
|
|
app.enterRoom('user_list');
|
|
|
|
|
|
|
|
$('.nav-pills li').removeClass('active').find('a[href="' + window.location.pathname + '"]').parent().addClass('active');
|
|
|
|
|
|
|
|
handleSearch();
|
|
|
|
|
|
|
|
handleInvite();
|
|
|
|
|
|
|
|
socket.removeListener('event:user_status_change', onUserStatusChange);
|
|
|
|
socket.on('event:user_status_change', onUserStatusChange);
|
|
|
|
|
|
|
|
$('#load-more-users-btn').on('click', loadMoreUsers);
|
|
|
|
|
|
|
|
$(window).off('scroll').on('scroll', function() {
|
|
|
|
var bottom = ($(document).height() - $(window).height()) * 0.9;
|
|
|
|
|
|
|
|
if ($(window).scrollTop() > bottom && !loadingMoreUsers) {
|
|
|
|
loadMoreUsers();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
function loadMoreUsers() {
|
|
|
|
if ($('#search-user').val()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ajaxify.data.setName) {
|
|
|
|
startLoading(ajaxify.data.setName, $('#users-container').children('.registered-user').length);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function startLoading(set, after) {
|
|
|
|
loadingMoreUsers = true;
|
|
|
|
|
|
|
|
socket.emit('user.loadMore', {
|
|
|
|
set: set,
|
|
|
|
after: after
|
|
|
|
}, function(err, data) {
|
|
|
|
if (err) {
|
|
|
|
return app.alertError(err.message);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (data && data.users.length) {
|
|
|
|
onUsersLoaded(data);
|
|
|
|
$('#load-more-users-btn').removeClass('disabled');
|
|
|
|
} else {
|
|
|
|
$('#load-more-users-btn').addClass('disabled');
|
|
|
|
}
|
|
|
|
loadingMoreUsers = false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function onUsersLoaded(data) {
|
|
|
|
data.users = data.users.filter(function(user) {
|
|
|
|
return !$('.users-box[data-uid="' + user.uid + '"]').length;
|
|
|
|
});
|
|
|
|
|
|
|
|
templates.parse('users', 'users', data, function(html) {
|
|
|
|
translator.translate(html, function(translated) {
|
|
|
|
translated = $(translated);
|
|
|
|
$('#users-container').append(translated);
|
|
|
|
translated.find('span.timeago').timeago();
|
|
|
|
utils.addCommasToNumbers(translated.find('.formatted-number'));
|
|
|
|
$('#users-container .anon-user').appendTo($('#users-container'));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function handleSearch() {
|
|
|
|
var timeoutId = 0;
|
|
|
|
|
|
|
|
$('#search-user').on('keyup', function() {
|
|
|
|
if (timeoutId) {
|
|
|
|
clearTimeout(timeoutId);
|
|
|
|
timeoutId = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
timeoutId = setTimeout(doSearch, 250);
|
|
|
|
});
|
|
|
|
|
|
|
|
$('.search select, .search input[type="checkbox"]').on('change', function() {
|
|
|
|
doSearch();
|
|
|
|
});
|
|
|
|
|
|
|
|
$('.users').on('click', '.pagination a', function() {
|
|
|
|
doSearch($(this).attr('data-page'));
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function doSearch(page) {
|
|
|
|
var username = $('#search-user').val();
|
|
|
|
page = page || 1;
|
|
|
|
|
|
|
|
if (!username) {
|
|
|
|
return loadPage(page);
|
|
|
|
}
|
|
|
|
var activeSection = getActiveSection();
|
|
|
|
socket.emit('user.search', {
|
|
|
|
query: username,
|
|
|
|
page: page,
|
|
|
|
searchBy: 'username',
|
|
|
|
sortBy: $('.search select').val() || getSortBy(),
|
|
|
|
onlineOnly: $('.search .online-only').is(':checked') || (activeSection === 'online'),
|
|
|
|
bannedOnly: activeSection === 'banned',
|
|
|
|
flaggedOnly: activeSection === 'flagged'
|
|
|
|
}, function(err, data) {
|
|
|
|
if (err) {
|
|
|
|
return app.alertError(err.message);
|
|
|
|
}
|
|
|
|
|
|
|
|
renderSearchResults(data);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function getSortBy() {
|
|
|
|
var sortBy;
|
|
|
|
var activeSection = getActiveSection();
|
|
|
|
if (activeSection === 'sort-posts') {
|
|
|
|
sortBy = 'postcount';
|
|
|
|
} else if (activeSection === 'sort-reputation') {
|
|
|
|
sortBy = 'reputation';
|
|
|
|
} else if (activeSection === 'users') {
|
|
|
|
sortBy = 'joindate';
|
|
|
|
}
|
|
|
|
return sortBy;
|
|
|
|
}
|
|
|
|
|
|
|
|
function loadPage(page) {
|
|
|
|
var section = getActiveSection();
|
|
|
|
section = section !== 'users' ? section : '';
|
|
|
|
$.get('/api/users/' + section + '?page=' + page, function(data) {
|
|
|
|
renderSearchResults(data);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function renderSearchResults(data) {
|
|
|
|
$('#load-more-users-btn').addClass('hide');
|
|
|
|
templates.parse('partials/paginator', {pagination: data.pagination}, function(html) {
|
|
|
|
$('.pagination-container').replaceWith(html);
|
|
|
|
});
|
|
|
|
|
|
|
|
templates.parse('users', 'users', data, function(html) {
|
|
|
|
translator.translate(html, function(translated) {
|
|
|
|
translated = $(translated);
|
|
|
|
$('#users-container').html(translated);
|
|
|
|
translated.find('span.timeago').timeago();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function onUserStatusChange(data) {
|
|
|
|
var section = getActiveSection();
|
|
|
|
|
|
|
|
if ((section.startsWith('online') || section.startsWith('users'))) {
|
|
|
|
updateUser(data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function updateUser(data) {
|
|
|
|
app.updateUserStatus($('#users-container [data-uid="' + data.uid +'"] [component="user/status"]'), data.status);
|
|
|
|
}
|
|
|
|
|
|
|
|
function getActiveSection() {
|
|
|
|
var url = window.location.href;
|
|
|
|
var parts = url.split('/');
|
|
|
|
return parts[parts.length - 1];
|
|
|
|
}
|
|
|
|
|
|
|
|
function handleInvite() {
|
|
|
|
$('[component="user/invite"]').on('click', function() {
|
|
|
|
bootbox.prompt('Email: ', function(email) {
|
|
|
|
if (!email) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
socket.emit('user.invite', email, function(err) {
|
|
|
|
if (err) {
|
|
|
|
return app.alertError(err.message);
|
|
|
|
}
|
|
|
|
app.alertSuccess('[[users:invitation-email-sent, ' + email + ']]');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return Users;
|
|
|
|
});
|