From ed26728a0f7b18525da3ce4e6174f66cbbb65a1c Mon Sep 17 00:00:00 2001 From: Baris Usakli Date: Fri, 3 May 2013 11:43:01 -0400 Subject: [PATCH] show username on homepage --- public/templates/home.tpl | 16 +--------------- src/topics.js | 37 +++++++++++++++++++++++-------------- src/user.js | 11 +++++++++++ 3 files changed, 35 insertions(+), 29 deletions(-) diff --git a/public/templates/home.tpl b/public/templates/home.tpl index 23675bd306..8be6975834 100644 --- a/public/templates/home.tpl +++ b/public/templates/home.tpl @@ -3,7 +3,7 @@
  • {topics.title}

    -

    Posted {topics.relativeTime} by {topics.uid}. {topics.post_count} posts.

    +

    Posted {topics.relativeTime} by {topics.username}. {topics.post_count} posts.

  • @@ -14,20 +14,6 @@ new_post.onclick = function() { } jQuery('document').ready(function() { - jQuery('.username').each(function() { - var userId = this.innerHTML; - - (function(span){ - socket.on('api:user.getNameByUid', function(username) { - span.innerHTML = username; - }); - })(this); - - socket.emit('api:user.getNameByUid', { fields: [ 'username' ], 'uid': userId }); - - }) - - diff --git a/src/topics.js b/src/topics.js index 6f92688c0e..01f1849a3b 100644 --- a/src/topics.js +++ b/src/topics.js @@ -1,6 +1,7 @@ var RDB = require('./redis.js'), posts = require('./posts.js'), - utils = require('./utils.js'); + utils = require('./utils.js'), + user = require('./user.js'); (function(Topics) { //data structure @@ -68,25 +69,33 @@ var RDB = require('./redis.js'), .mget(slug) .mget(postcount) .exec(function(err, replies) { + title = replies[0]; uid = replies[1]; timestamp = replies[2]; slug = replies[3]; postcount = replies[4]; - var topics = []; - for (var i=0, ii=title.length; i