' + posts[i].content + '
' + '' + ''; frag.appendChild(li.cloneNode(true)); recent_replies.appendChild(frag); } $('#category_recent_replies span.timeago').timeago(); app.createUserTooltips(); }); $(window).off('scroll').on('scroll', function (ev) { var bottom = ($(document).height() - $(window).height()) * 0.9; if ($(window).scrollTop() > bottom && !loadingMoreTopics) { Category.loadMoreTopics(cid); } }); }; Category.onNewTopic = function(data) { var html = templates.prepare(templates['category'].blocks['topics']).parse({ topics: [data] }), topic = $(html), container = $('#topics-container'), topics = $('#topics-container').children('.category-item'), numTopics = topics.length; jQuery('#topics-container, .category-sidebar').removeClass('hidden'); jQuery('#category-no-topics').remove(); if (numTopics > 0) { for (var x = 0; x < numTopics; x++) { if ($(topics[x]).find('.fa-thumb-tack').length) { if(x === numTopics - 1) { topic.insertAfter(topics[x]); } continue; } topic.insertBefore(topics[x]); break; } } else { container.append(topic); } topic.hide().fadeIn('slow'); socket.emit('api:categories.getRecentReplies', templates.get('category_id')); addActiveUser(data); $('#topics-container span.timeago').timeago(); } function addActiveUser(data) { var activeUser = $('.category-sidebar .active-users').find('a[data-uid="' + data.uid + '"]'); if(!activeUser.length) { var newUser = templates.prepare(templates['category'].blocks['active_users']).parse({ active_users: [{ uid: data.uid, username: data.username, userslug: data.userslug, picture: data.teaser_userpicture }] }); $(newUser).appendTo($('.category-sidebar .active-users')); } } Category.onTopicsLoaded = function(topics) { var html = templates.prepare(templates['category'].blocks['topics']).parse({ topics: topics }), container = $('#topics-container'); jQuery('#topics-container, .category-sidebar').removeClass('hidden'); jQuery('#category-no-topics').remove(); container.append(html); $('#topics-container span.timeago').timeago(); } Category.loadMoreTopics = function(cid) { if (loadingMoreTopics) { return; } loadingMoreTopics = true; socket.emit('api:category.loadMore', { cid: cid, after: $('#topics-container').children('.category-item').length }, function (data) { if (data.topics.length) { Category.onTopicsLoaded(data.topics); } loadingMoreTopics = false; }); } return Category; });