Files
NodeBB/public/src/client/categories.js

75 lines
2.0 KiB
JavaScript
Raw Normal View History

'use strict';
/* globals define, socket, app, templates, ajaxify*/
define('forum/categories', ['components', 'translator'], function (components, translator) {
2015-02-17 13:25:13 -05:00
var categories = {};
$(window).on('action:ajaxify.start', function (ev, data) {
if (ajaxify.currentPage !== data.url) {
2015-02-17 13:25:13 -05:00
socket.removeListener('event:new_post', categories.onNewPost);
}
});
categories.init = function () {
2015-02-17 13:25:13 -05:00
app.enterRoom('categories');
socket.removeListener('event:new_post', categories.onNewPost);
socket.on('event:new_post', categories.onNewPost);
2015-02-17 13:25:13 -05:00
$('.category-header').tooltip({
placement: 'bottom'
});
};
categories.onNewPost = function (data) {
if (data && data.posts && data.posts.length && data.posts[0].topic) {
renderNewPost(data.posts[0].topic.cid, data.posts[0]);
}
};
function renderNewPost(cid, post) {
var category = components.get('categories/category', 'cid', cid);
var numRecentReplies = category.attr('data-numRecentReplies');
if (!numRecentReplies || !parseInt(numRecentReplies, 10)) {
return;
}
var recentPosts = category.find('[component="category/posts"]');
var insertBefore = recentPosts.first();
parseAndTranslate([post], function (html) {
html.hide();
if(recentPosts.length === 0) {
html.appendTo(category);
} else {
html.insertBefore(recentPosts.first());
}
html.fadeIn();
app.createUserTooltips();
2016-03-03 20:35:54 +02:00
html.find('.timeago').timeago();
if (category.find('[component="category/posts"]').length > parseInt(numRecentReplies, 10)) {
recentPosts.last().remove();
}
$(window).trigger('action:posts.loaded', {posts: [post]});
});
}
function parseAndTranslate(posts, callback) {
templates.parse('categories', '(categories.)?posts', {categories: {posts: posts}}, function (html) {
translator.translate(html, function (translatedHTML) {
translatedHTML = $(translatedHTML);
2015-09-10 17:13:36 -04:00
translatedHTML.find('img:not(.not-responsive)').addClass('img-responsive');
2016-03-03 20:35:54 +02:00
callback(translatedHTML);
});
});
}
2015-02-17 13:25:13 -05:00
return categories;
});