fixed post count in paginator and post bar when infinite loader kicked in

v1.18.x
Baris Soner Usakli 12 years ago
parent 66cdb9a067
commit ddb7896df1

@ -1,7 +1,7 @@
define(function() { define(function() {
var Topic = {}, var Topic = {},
infiniteLoaderActive = false; infiniteLoaderActive = false,
pagination;
function showBottomPostBar() { function showBottomPostBar() {
if($('#post-container .post-row').length > 1) { if($('#post-container .post-row').length > 1) {
@ -775,74 +775,75 @@ define(function() {
var pagination;
Topic.postCount = templates.get('postcount');
function updateHeader() {
if (pagination == null) {
jQuery('.pagination-block i:first').on('click', function() {
app.scrollToTop();
});
jQuery('.pagination-block i:last').on('click', function() {
app.scrollToBottom();
});
}
pagination = pagination || document.getElementById('pagination');
var windowHeight = jQuery(window).height();
var scrollTop = jQuery(window).scrollTop();
var scrollBottom = scrollTop + windowHeight;
var progressBar = $('.progress-bar');
var progressBarContainer = $('.progress-container');
pagination.parentNode.style.display = 'block'; Topic.postCount = templates.get('postcount');
progressBarContainer.css('display', '');
if (scrollTop < 50 && Topic.postCount > 1) { window.onscroll = updateHeader;
localStorage.removeItem("topic:" + tid + ":bookmark"); window.onload = updateHeader;
pagination.innerHTML = '1 out of ' + Topic.postCount; };
progressBar.width(0);
return;
}
function updateHeader() {
if (pagination == null) {
jQuery('.pagination-block i:first').on('click', function() {
app.scrollToTop();
});
jQuery('.pagination-block i:last').on('click', function() {
app.scrollToBottom();
});
}
pagination = pagination || document.getElementById('pagination');
var windowHeight = jQuery(window).height();
var scrollTop = jQuery(window).scrollTop();
var scrollBottom = scrollTop + windowHeight;
var progressBar = $('.progress-bar');
var progressBarContainer = $('.progress-container');
var tid = templates.get('topic_id');
pagination.parentNode.style.display = 'block';
progressBarContainer.css('display', '');
if (scrollTop < 50 && Topic.postCount > 1) {
localStorage.removeItem("topic:" + tid + ":bookmark");
pagination.innerHTML = '1 out of ' + Topic.postCount;
progressBar.width(0);
return;
}
var count = 0, smallestNonNegative = 0;
jQuery('.posts > .post-row:not(".deleted")').each(function() { var count = 0, smallestNonNegative = 0;
count++;
this.postnumber = count;
jQuery('.posts > .post-row:not(".deleted")').each(function() {
count++;
this.postnumber = count;
var el = jQuery(this);
var elTop = el.offset().top;
var height = Math.floor(el.height());
var elBottom = elTop + (height < 300 ? height : 300);
var inView = ((elBottom >= scrollTop) && (elTop <= scrollBottom) && (elBottom <= scrollBottom) && (elTop >= scrollTop)); var el = jQuery(this);
var elTop = el.offset().top;
var height = Math.floor(el.height());
var elBottom = elTop + (height < 300 ? height : 300);
var inView = ((elBottom >= scrollTop) && (elTop <= scrollBottom) && (elBottom <= scrollBottom) && (elTop >= scrollTop));
if (inView) {
if(elTop - scrollTop > smallestNonNegative) {
localStorage.setItem("topic:" + tid + ":bookmark", el.attr('data-pid'));
smallestNonNegative = Number.MAX_VALUE;
}
pagination.innerHTML = (this.postnumber-1) + ' out of ' + Topic.postCount; if (inView) {
progressBar.width(((this.postnumber-1) / Topic.postCount * 100) + '%'); if(elTop - scrollTop > smallestNonNegative) {
localStorage.setItem("topic:" + tid + ":bookmark", el.attr('data-pid'));
smallestNonNegative = Number.MAX_VALUE;
} }
});
setTimeout(function() { pagination.innerHTML = (this.postnumber-1) + ' out of ' + Topic.postCount;
if (scrollTop + windowHeight == jQuery(document).height()) { progressBar.width(((this.postnumber-1) / Topic.postCount * 100) + '%');
pagination.innerHTML = Topic.postCount + ' out of ' + Topic.postCount; }
progressBar.width('100%'); });
}
}, 100);
}
window.onscroll = updateHeader; setTimeout(function() {
window.onload = updateHeader; if (scrollTop + windowHeight == jQuery(document).height()) {
}; pagination.innerHTML = Topic.postCount + ' out of ' + Topic.postCount;
progressBar.width('100%');
}
}, 100);
}
Topic.scrollToPost = function(pid) { Topic.scrollToPost = function(pid) {
if (!pid) { if (!pid) {
@ -944,8 +945,13 @@ define(function() {
} }
function updatePostCount() { function updatePostCount() {
Topic.postCount = $('#post-container li[data-pid]:not(.deleted)').length; socket.emit('api:topics.postcount', templates.get('topic_id'), function(err, postcount) {
$('#topic-post-count').html(Topic.postCount); if(!err) {
Topic.postCount = postcount;
$('#topic-post-count').html(Topic.postCount);
updateHeader();
}
})
} }
function loadMorePosts(tid, callback) { function loadMorePosts(tid, callback) {

@ -403,6 +403,10 @@ module.exports.init = function(io) {
}); });
socket.on('api:topics.postcount', function(tid, callback) {
topics.getTopicField(tid, 'postcount', callback);
});
socket.on('api:topics.markAllRead', function(data, callback) { socket.on('api:topics.markAllRead', function(data, callback) {
topics.markAllRead(uid, function(err, success) { topics.markAllRead(uid, function(err, success) {
if (!err && success) { if (!err && success) {

Loading…
Cancel
Save