removed console.log from socket connection success handler

v1.18.x
Julian Lam 12 years ago
parent bcc65fd879
commit 66cb1fb6ad

@ -4,14 +4,14 @@ var socket,
API_URL = null; API_URL = null;
(function() { (function () {
var showWelcomeMessage = false; var showWelcomeMessage = false;
function loadConfig() { function loadConfig() {
$.ajax({ $.ajax({
url: RELATIVE_PATH + '/api/config', url: RELATIVE_PATH + '/api/config',
success: function(data) { success: function (data) {
API_URL = data.api_url; API_URL = data.api_url;
config = data; config = data;
@ -20,19 +20,18 @@ var socket,
var reconnecting = false; var reconnecting = false;
var reconnectTries = 0; var reconnectTries = 0;
socket.on('event:connect', function(data) { socket.on('event:connect', function (data) {
console.log('connected to nodebb socket: ', data);
app.username = data.username; app.username = data.username;
app.showLoginMessage(); app.showLoginMessage();
}); });
socket.on('event:alert', function(data) { socket.on('event:alert', function (data) {
app.alert(data); app.alert(data);
}); });
socket.on('connect', function(data) { socket.on('connect', function (data) {
if (reconnecting) { if (reconnecting) {
setTimeout(function() { setTimeout(function () {
app.alert({ app.alert({
alert_id: 'connection_alert', alert_id: 'connection_alert',
title: 'Connected', title: 'Connected',
@ -49,14 +48,14 @@ var socket,
} }
}); });
socket.on('reconnecting', function(data) { socket.on('reconnecting', function (data) {
function showDisconnectModal() { function showDisconnectModal() {
$('#disconnect-modal').modal({ $('#disconnect-modal').modal({
backdrop: 'static', backdrop: 'static',
show: true show: true
}); });
$('#reload-button').on('click', function() { $('#reload-button').on('click', function () {
$('#disconnect-modal').modal('hide'); $('#disconnect-modal').modal('hide');
window.location.reload(); window.location.reload();
}); });
@ -79,8 +78,8 @@ var socket,
}); });
}); });
socket.on('api:user.get_online_users', function(users) { socket.on('api:user.get_online_users', function (users) {
jQuery('a.username-field').each(function() { jQuery('a.username-field').each(function () {
if (this.processed === true) if (this.processed === true)
return; return;
@ -97,7 +96,7 @@ var socket,
el.processed = true; el.processed = true;
}); });
jQuery('button .username-field').each(function() { jQuery('button .username-field').each(function () {
//DRY FAIL //DRY FAIL
if (this.processed === true) if (this.processed === true)
return; return;
@ -124,17 +123,17 @@ var socket,
} }
// takes a string like 1000 and returns 1,000 // takes a string like 1000 and returns 1,000
app.addCommas = function(text) { app.addCommas = function (text) {
return text.replace(/(\d)(?=(\d\d\d)+(?!\d))/g, "$1,"); return text.replace(/(\d)(?=(\d\d\d)+(?!\d))/g, "$1,");
} }
// Willingly stolen from: http://phpjs.org/functions/strip_tags/ // Willingly stolen from: http://phpjs.org/functions/strip_tags/
app.strip_tags = function(input, allowed) { app.strip_tags = function (input, allowed) {
allowed = (((allowed || "") + "").toLowerCase().match(/<[a-z][a-z0-9]*>/g) || []).join(''); // making sure the allowed arg is a string containing only tags in lowercase (<a><b><c>) allowed = (((allowed || "") + "").toLowerCase().match(/<[a-z][a-z0-9]*>/g) || []).join(''); // making sure the allowed arg is a string containing only tags in lowercase (<a><b><c>)
var tags = /<\/?([a-z][a-z0-9]*)\b[^>]*>/gi, var tags = /<\/?([a-z][a-z0-9]*)\b[^>]*>/gi,
commentsAndPhpTags = /<!--[\s\S]*?-->|<\?(?:php)?[\s\S]*?\?>/gi; commentsAndPhpTags = /<!--[\s\S]*?-->|<\?(?:php)?[\s\S]*?\?>/gi;
return input.replace(commentsAndPhpTags, '').replace(tags, function($0, $1) { return input.replace(commentsAndPhpTags, '').replace(tags, function ($0, $1) {
return allowed.indexOf('<' + $1.toLowerCase() + '>') > -1 ? $0 : ''; return allowed.indexOf('<' + $1.toLowerCase() + '>') > -1 ? $0 : '';
}); });
} }
@ -145,14 +144,14 @@ var socket,
// message = alert message content // message = alert message content
// timeout default = permanent // timeout default = permanent
// location : alert_window (default) or content // location : alert_window (default) or content
app.alert = function(params) { app.alert = function (params) {
var alert_id = 'alert_button_' + ((params.alert_id) ? params.alert_id : new Date().getTime()); var alert_id = 'alert_button_' + ((params.alert_id) ? params.alert_id : new Date().getTime());
var alert = $('#' + alert_id); var alert = $('#' + alert_id);
function startTimeout(div, timeout) { function startTimeout(div, timeout) {
var timeoutId = setTimeout(function() { var timeoutId = setTimeout(function () {
$(div).fadeOut(1000, function() { $(div).fadeOut(1000, function () {
$(this).remove(); $(this).remove();
}); });
}, timeout); }, timeout);
@ -185,7 +184,7 @@ var socket,
button.className = 'close'; button.className = 'close';
button.innerHTML = '&times;'; button.innerHTML = '&times;';
button.onclick = function(ev) { button.onclick = function (ev) {
div.parentNode.removeChild(div); div.parentNode.removeChild(div);
} }
@ -199,9 +198,9 @@ var socket,
} }
if (params.clickfn) { if (params.clickfn) {
div.onclick = function() { div.onclick = function () {
params.clickfn(); params.clickfn();
jQuery(div).fadeOut(500, function() { jQuery(div).fadeOut(500, function () {
this.remove(); this.remove();
}); });
} }
@ -209,7 +208,7 @@ var socket,
} }
} }
app.alertSuccess = function(message, timeout) { app.alertSuccess = function (message, timeout) {
if (!timeout) if (!timeout)
timeout = 2000; timeout = 2000;
@ -221,7 +220,7 @@ var socket,
}); });
} }
app.alertError = function(message, timeout) { app.alertError = function (message, timeout) {
if (!timeout) if (!timeout)
timeout = 2000; timeout = 2000;
@ -234,7 +233,7 @@ var socket,
} }
app.current_room = null; app.current_room = null;
app.enter_room = function(room) { app.enter_room = function (room) {
if (socket) { if (socket) {
if (app.current_room === room) if (app.current_room === room)
return; return;
@ -248,20 +247,20 @@ var socket,
} }
}; };
app.populate_online_users = function() { app.populate_online_users = function () {
var uids = []; var uids = [];
jQuery('.post-row').each(function() { jQuery('.post-row').each(function () {
uids.push(this.getAttribute('data-uid')); uids.push(this.getAttribute('data-uid'));
}); });
socket.emit('api:user.get_online_users', uids); socket.emit('api:user.get_online_users', uids);
} }
app.process_page = function() { app.process_page = function () {
// here is where all modules' onNavigate should be called, I think. // here is where all modules' onNavigate should be called, I think.
require(['mobileMenu'], function(mobileMenu) { require(['mobileMenu'], function (mobileMenu) {
mobileMenu.onNavigate(); mobileMenu.onNavigate();
}); });
@ -273,7 +272,7 @@ var socket,
jQuery('#main-nav li').removeClass('active'); jQuery('#main-nav li').removeClass('active');
if (active) { if (active) {
jQuery('#main-nav li a').each(function() { jQuery('#main-nav li a').each(function () {
var href = this.getAttribute('href'); var href = this.getAttribute('href');
if (active == "sort-posts" || active == "sort-reputation" || active == "search" || active == "latest" || active == "online") if (active == "sort-posts" || active == "sort-reputation" || active == "search" || active == "latest" || active == "online")
active = 'users'; active = 'users';
@ -287,12 +286,12 @@ var socket,
$('span.timeago').timeago(); $('span.timeago').timeago();
setTimeout(function() { setTimeout(function () {
window.scrollTo(0, 1); // rehide address bar on mobile after page load completes. window.scrollTo(0, 1); // rehide address bar on mobile after page load completes.
}, 100); }, 100);
} }
app.showLoginMessage = function() { app.showLoginMessage = function () {
function showAlert() { function showAlert() {
app.alert({ app.alert({
type: 'success', type: 'success',
@ -312,14 +311,14 @@ var socket,
} }
} }
app.addCommasToNumbers = function() { app.addCommasToNumbers = function () {
$('.formatted-number').each(function(index, element) { $('.formatted-number').each(function (index, element) {
$(element).html(app.addCommas($(element).html())); $(element).html(app.addCommas($(element).html()));
}); });
} }
app.openChat = function(username, touid) { app.openChat = function (username, touid) {
require(['chat'], function(chat) { require(['chat'], function (chat) {
var chatModal; var chatModal;
if (!chat.modalExists(touid)) { if (!chat.modalExists(touid)) {
chatModal = chat.createModal(username, touid); chatModal = chat.createModal(username, touid);
@ -330,7 +329,7 @@ var socket,
}); });
} }
app.createNewPosts = function(data) { app.createNewPosts = function (data) {
data.posts[0].display_moderator_tools = 'none'; data.posts[0].display_moderator_tools = 'none';
var html = templates.prepare(templates['topic'].blocks['posts']).parse(data), var html = templates.prepare(templates['topic'].blocks['posts']).parse(data),
uniqueid = new Date().getTime(), uniqueid = new Date().getTime(),
@ -354,7 +353,7 @@ var socket,
app.infiniteLoaderActive = false; app.infiniteLoaderActive = false;
app.loadMorePosts = function(tid, callback) { app.loadMorePosts = function (tid, callback) {
if (app.infiniteLoaderActive) if (app.infiniteLoaderActive)
return; return;
app.infiniteLoaderActive = true; app.infiniteLoaderActive = true;
@ -365,7 +364,7 @@ var socket,
socket.emit('api:topic.loadMore', { socket.emit('api:topic.loadMore', {
tid: tid, tid: tid,
after: document.querySelectorAll('#post-container li[data-pid]').length after: document.querySelectorAll('#post-container li[data-pid]').length
}, function(data) { }, function (data) {
app.infiniteLoaderActive = false; app.infiniteLoaderActive = false;
if (data.posts.length) { if (data.posts.length) {
$('#loading-indicator').attr('done', '0'); $('#loading-indicator').attr('done', '0');
@ -379,19 +378,19 @@ var socket,
}); });
} }
app.scrollToTop = function() { app.scrollToTop = function () {
$('body,html').animate({ $('body,html').animate({
scrollTop: 0 scrollTop: 0
}); });
}; };
app.scrollToBottom = function() { app.scrollToBottom = function () {
$('body,html').animate({ $('body,html').animate({
scrollTop: $('html').height() - 100 scrollTop: $('html').height() - 100
}); });
} }
app.scrollToPost = function(pid) { app.scrollToPost = function (pid) {
if (!pid) if (!pid)
return; return;
@ -408,8 +407,8 @@ var socket,
if (!scrollTo.length && tid) { if (!scrollTo.length && tid) {
var intervalID = setInterval(function() { var intervalID = setInterval(function () {
app.loadMorePosts(tid, function(posts) { app.loadMorePosts(tid, function (posts) {
scrollTo = $('#post_anchor_' + pid); scrollTo = $('#post_anchor_' + pid);
if (tid && scrollTo.length) { if (tid && scrollTo.length) {
@ -427,8 +426,8 @@ var socket,
} }
jQuery('document').ready(function() { jQuery('document').ready(function () {
$('#search-form').on('submit', function() { $('#search-form').on('submit', function () {
var input = $(this).find('input'); var input = $(this).find('input');
ajaxify.go("search/" + input.val(), null, "search"); ajaxify.go("search/" + input.val(), null, "search");
input.val(''); input.val('');

Loading…
Cancel
Save