'use strict'; /* globals config, app, ajaxify, define, socket, utils */ define('forum/topic/posts', [ 'forum/pagination', 'forum/infinitescroll', 'forum/topic/postTools', 'navigator', 'components' ], function(pagination, infinitescroll, postTools, navigator, components) { var Posts = {}; Posts.onNewPost = function(data) { if (!data || !data.posts || !data.posts.length) { return; } if (parseInt(data.posts[0].tid, 10) !== parseInt(ajaxify.data.tid, 10)) { return; } data.loggedIn = app.user.uid ? true : false; data.posts.forEach(function(post) { post.selfPost = !!app.user.uid && parseInt(post.uid, 10) === parseInt(app.user.uid, 10); post.display_moderator_tools = post.selfPost || ajaxify.data.privileges.isAdminOrMod; post.display_move_tools = ajaxify.data.privileges.isAdminOrMod; post.display_post_menu = ajaxify.data.privileges.isAdminOrMod || post.selfPost || ((app.user.uid || ajaxify.data.postSharing.length) && !post.deleted); }); updatePostCounts(data.posts); ajaxify.data.postcount ++; postTools.updatePostCount(ajaxify.data.postcount); if (config.usePagination) { onNewPostPagination(data); } else { onNewPostInfiniteScroll(data); } }; function updatePostCounts(posts) { for (var i=0; i 1) { data.posts.forEach(function(post) { var p = components.get('post', 'pid', post.pid); if (p.hasClass('new')) { p.remove(); } }); } data.posts = data.posts.filter(function(post) { return $('[component="post"][data-pid="' + post.pid + '"]').length === 0; }); } removeAlreadyAddedPosts(); if (!data.posts.length) { return callback(); } var after, before; if (direction > 0 && repliesSelector.length) { after = repliesSelector.last(); } else if (direction < 0 && repliesSelector.length) { before = repliesSelector.first(); } data.slug = ajaxify.data.slug; $(window).trigger('action:posts.loading', {posts: data.posts, after: after, before: before}); app.parseAndTranslate('topic', 'posts', data, function(html) { html = html.filter(function() { var pid = $(this).attr('data-pid'); return pid && $('[component="post"][data-pid="' + pid + '"]').length === 0; }); if (after) { html.insertAfter(after); } else if (before) { // Save document height and position for future reference (about 5 lines down) var height = $(document).height(), scrollTop = $(window).scrollTop(); html.insertBefore(before); // Now restore the relative position the user was on prior to new post insertion $(window).scrollTop(scrollTop + ($(document).height() - height)); } else { components.get('topic').append(html); } infinitescroll.removeExtra($('[component="post"]'), direction, 40); $(window).trigger('action:posts.loaded', {posts: data.posts}); Posts.processPage(html); callback(html); }); } Posts.loadMorePosts = function(direction) { if (!components.get('topic').length || navigator.scrollActive) { return; } var replies = components.get('post').not('[data-index=0]').not('.new'); var afterEl = direction > 0 ? replies.last() : replies.first(); var after = parseInt(afterEl.attr('data-index'), 10) || 0; var tid = ajaxify.data.tid; if (!utils.isNumber(tid) || !utils.isNumber(after) || (direction < 0 && components.get('post', 'index', 0).length)) { return; } var indicatorEl = $('.loading-indicator'); if (!indicatorEl.is(':animated')) { indicatorEl.fadeIn(); } infinitescroll.loadMore('topics.loadMore', { tid: tid, after: after, direction: direction }, function (data, done) { indicatorEl.fadeOut(); if (data && data.posts && data.posts.length) { createNewPosts(data, replies, direction, done); } else { if (app.user.uid) { socket.emit('topics.markAsRead', [tid]); } navigator.update(); done(); } }); }; Posts.processPage = function(posts) { Posts.showBottomPostBar(); posts.find('[component="post/content"] img:not(.not-responsive)').addClass('img-responsive'); app.createUserTooltips(posts); app.replaceSelfLinks(posts.find('a')); utils.addCommasToNumbers(posts.find('.formatted-number')); utils.makeNumbersHumanReadable(posts.find('.human-readable-number')); posts.find('.timeago').timeago(); Posts.wrapImagesInLinks(posts); addBlockquoteEllipses(posts.find('[component="post/content"] > blockquote > blockquote')); hidePostToolsForDeletedPosts(posts); }; Posts.wrapImagesInLinks = function(posts) { posts.find('[component="post/content"] img:not(.emoji)').each(function() { var $this = $(this); if (!$this.parent().is('a')) { $this.wrap(''); } }); }; Posts.showBottomPostBar = function() { var mainPost = components.get('post', 'index', 0); var posts = $('[component="post"]'); if (!!mainPost.length && posts.length > 1 && $('.post-bar').length < 2) { $('.post-bar').clone().appendTo(mainPost); } else if (mainPost.length && posts.length < 2) { mainPost.find('.post-bar').remove(); } }; function hidePostToolsForDeletedPosts(posts) { posts.each(function() { if ($(this).hasClass('deleted')) { postTools.toggle($(this).attr('data-pid'), true); } }); } function addBlockquoteEllipses(blockquotes) { blockquotes.each(function() { var $this = $(this); if ($this.find(':hidden:not(br)').length && !$this.find('.toggle').length) { $this.append(''); } }); } return Posts; });