mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-11 08:25:46 +01:00
remove IS topics on category
ability to specify a container for IS, instead of always assuming $(document)
This commit is contained in:
@@ -172,7 +172,7 @@ define('forum/category', [
|
|||||||
|
|
||||||
function enableInfiniteLoadingOrPagination() {
|
function enableInfiniteLoadingOrPagination() {
|
||||||
if (!config.usePagination) {
|
if (!config.usePagination) {
|
||||||
infinitescroll.init(Category.loadMoreTopics);
|
infinitescroll.init($('[component="category"]'), Category.loadMoreTopics);
|
||||||
} else {
|
} else {
|
||||||
navigator.hide();
|
navigator.hide();
|
||||||
pagination.init(ajaxify.data.currentPage, ajaxify.data.pageCount);
|
pagination.init(ajaxify.data.currentPage, ajaxify.data.pageCount);
|
||||||
@@ -245,94 +245,16 @@ define('forum/category', [
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
Category.onTopicsLoaded = function(data, callback) {
|
|
||||||
if(!data || !data.topics.length) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
function removeAlreadyAddedTopics(topics) {
|
|
||||||
return topics.filter(function(topic) {
|
|
||||||
return components.get('category/topic', 'tid', topic.tid).length === 0;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
var after = null,
|
|
||||||
before = null;
|
|
||||||
|
|
||||||
function findInsertionPoint() {
|
|
||||||
var topics = components.get('category/topic');
|
|
||||||
|
|
||||||
if (!topics.length) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var last = topics.last(),
|
|
||||||
lastIndex = last.attr('data-index'),
|
|
||||||
firstIndex = data.topics[data.topics.length - 1].index;
|
|
||||||
|
|
||||||
if (firstIndex > lastIndex) {
|
|
||||||
after = last;
|
|
||||||
} else {
|
|
||||||
before = topics.first();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
data.topics = removeAlreadyAddedTopics(data.topics);
|
|
||||||
if(!data.topics.length) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
data.showSelect = data.privileges.editable;
|
|
||||||
|
|
||||||
findInsertionPoint();
|
|
||||||
|
|
||||||
templates.parse('category', 'topics', data, function(html) {
|
|
||||||
translator.translate(html, function(translatedHTML) {
|
|
||||||
var container = $('[component="category"]'),
|
|
||||||
html = $(translatedHTML);
|
|
||||||
|
|
||||||
$('[component="category"]').removeClass('hidden');
|
|
||||||
$('.category-sidebar').removeClass('hidden');
|
|
||||||
|
|
||||||
$('#category-no-topics').remove();
|
|
||||||
|
|
||||||
if(config.usePagination) {
|
|
||||||
container.empty().append(html);
|
|
||||||
} else {
|
|
||||||
if(after) {
|
|
||||||
html.insertAfter(after);
|
|
||||||
} else if(before) {
|
|
||||||
html.insertBefore(before);
|
|
||||||
} else {
|
|
||||||
container.append(html);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (typeof callback === 'function') {
|
|
||||||
callback();
|
|
||||||
}
|
|
||||||
html.find('.timeago').timeago();
|
|
||||||
app.createUserTooltips();
|
|
||||||
utils.makeNumbersHumanReadable(html.find('.human-readable-number'));
|
|
||||||
});
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
Category.loadMoreTopics = function(direction) {
|
Category.loadMoreTopics = function(direction) {
|
||||||
if (!$('[component="category"]').length || !$('[component="category"]').children().length) {
|
if (!$('[component="category"]').length || !$('[component="category"]').children().length) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var topics = components.get('category/topic');
|
var topics = $('[component="category/topic"]');
|
||||||
var afterEl = direction > 0 ? topics.last() : topics.first();
|
var afterEl = direction > 0 ? topics.last() : topics.first();
|
||||||
var after = parseInt(afterEl.attr('data-index'), 10) || 0;
|
var after = parseInt(afterEl.attr('data-index'), 10) || 0;
|
||||||
var offset = $('#header-menu').height();
|
|
||||||
|
|
||||||
loadTopicsAfter(after, direction, function() {
|
loadTopicsAfter(after, direction);
|
||||||
if (direction < 0 && afterEl.length) {
|
|
||||||
Category.scrollToTopic(afterEl.attr('data-index'), null, 0, offset);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
};
|
||||||
|
|
||||||
function loadTopicsAfter(after, direction, callback) {
|
function loadTopicsAfter(after, direction, callback) {
|
||||||
@@ -348,18 +270,97 @@ define('forum/category', [
|
|||||||
author: utils.params().author
|
author: utils.params().author
|
||||||
}, function (data, done) {
|
}, function (data, done) {
|
||||||
if (data.topics && data.topics.length) {
|
if (data.topics && data.topics.length) {
|
||||||
Category.onTopicsLoaded(data, function() {
|
Category.onTopicsLoaded(data, direction, done);
|
||||||
done();
|
|
||||||
callback();
|
|
||||||
});
|
|
||||||
} else {
|
} else {
|
||||||
done();
|
done();
|
||||||
}
|
}
|
||||||
|
|
||||||
$('[component="category"]').attr('data-nextstart', data.nextStart);
|
|
||||||
$(window).trigger('action:categories.loaded');
|
$(window).trigger('action:categories.loaded');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Category.onTopicsLoaded = function(data, direction, callback) {
|
||||||
|
if (!data || !data.topics.length) {
|
||||||
|
return callback();
|
||||||
|
}
|
||||||
|
|
||||||
|
function removeAlreadyAddedTopics(topics) {
|
||||||
|
return topics.filter(function(topic) {
|
||||||
|
return components.get('category/topic', 'tid', topic.tid).length === 0;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
data.topics = removeAlreadyAddedTopics(data.topics);
|
||||||
|
if (!data.topics.length) {
|
||||||
|
return callback();
|
||||||
|
}
|
||||||
|
|
||||||
|
data.showSelect = data.privileges.editable;
|
||||||
|
|
||||||
|
var after, before;
|
||||||
|
var topics = $('[component="category/topic"]');
|
||||||
|
|
||||||
|
if (direction > 0 && topics.length) {
|
||||||
|
after = topics.last();
|
||||||
|
} else if (direction < 0 && topics.length) {
|
||||||
|
before = topics.first();
|
||||||
|
}
|
||||||
|
|
||||||
|
templates.parse('category', 'topics', data, function(html) {
|
||||||
|
translator.translate(html, function(translatedHTML) {
|
||||||
|
var container = $('[component="category"]'),
|
||||||
|
html = $(translatedHTML);
|
||||||
|
|
||||||
|
$('[component="category"]').removeClass('hidden');
|
||||||
|
$('.category-sidebar').removeClass('hidden');
|
||||||
|
|
||||||
|
$('#category-no-topics').remove();
|
||||||
|
|
||||||
|
|
||||||
|
if (after) {
|
||||||
|
html.insertAfter(after);
|
||||||
|
} else if (before) {
|
||||||
|
var height = $(document).height(),
|
||||||
|
scrollTop = $(window).scrollTop();
|
||||||
|
|
||||||
|
html.insertBefore(before);
|
||||||
|
|
||||||
|
$(window).scrollTop(scrollTop + ($(document).height() - height));
|
||||||
|
} else {
|
||||||
|
container.append(html);
|
||||||
|
}
|
||||||
|
|
||||||
|
removeExtraTopics(direction);
|
||||||
|
|
||||||
|
if (typeof callback === 'function') {
|
||||||
|
callback();
|
||||||
|
}
|
||||||
|
|
||||||
|
html.find('.timeago').timeago();
|
||||||
|
app.createUserTooltips();
|
||||||
|
utils.makeNumbersHumanReadable(html.find('.human-readable-number'));
|
||||||
|
});
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
function removeExtraTopics(direction) {
|
||||||
|
var topics = $('[component="category/topic"]');
|
||||||
|
if (topics.length > 60) {
|
||||||
|
var removeCount = topics.length - 60;
|
||||||
|
if (direction > 0) {
|
||||||
|
var height = $(document).height(),
|
||||||
|
scrollTop = $(window).scrollTop();
|
||||||
|
|
||||||
|
topics.slice(0, removeCount).remove();
|
||||||
|
|
||||||
|
$(window).scrollTop(scrollTop + ($(document).height() - height));
|
||||||
|
} else {
|
||||||
|
topics.slice(topics.length - removeCount).remove();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
return Category;
|
return Category;
|
||||||
});
|
});
|
||||||
@@ -8,17 +8,22 @@ define('forum/infinitescroll', ['translator'], function(translator) {
|
|||||||
var callback;
|
var callback;
|
||||||
var previousScrollTop = 0;
|
var previousScrollTop = 0;
|
||||||
var loadingMore = false;
|
var loadingMore = false;
|
||||||
var topOffset = 0;
|
var container;
|
||||||
|
|
||||||
scroll.init = function(cb, _topOffest) {
|
scroll.init = function(el, cb) {
|
||||||
|
if (typeof el === 'function') {
|
||||||
|
cb = el;
|
||||||
|
el = null;
|
||||||
|
}
|
||||||
callback = cb;
|
callback = cb;
|
||||||
topOffset = _topOffest || 0;
|
container = el || $(document);
|
||||||
$(window).off('scroll', onScroll).on('scroll', onScroll);
|
$(window).off('scroll', onScroll).on('scroll', onScroll);
|
||||||
};
|
};
|
||||||
|
|
||||||
function onScroll() {
|
function onScroll() {
|
||||||
var currentScrollTop = $(window).scrollTop();
|
var currentScrollTop = $(window).scrollTop();
|
||||||
var scrollPercent = 100 * currentScrollTop / ($(document).height() - $(window).height());
|
var offsetTop = container.offset() ? container.offset().top : 0;
|
||||||
|
var scrollPercent = 100 * (currentScrollTop - offsetTop) / (container.height() - $(window).height());
|
||||||
|
|
||||||
var top = 20, bottom = 80;
|
var top = 20, bottom = 80;
|
||||||
|
|
||||||
@@ -27,6 +32,7 @@ define('forum/infinitescroll', ['translator'], function(translator) {
|
|||||||
} else if (scrollPercent > bottom && currentScrollTop > previousScrollTop) {
|
} else if (scrollPercent > bottom && currentScrollTop > previousScrollTop) {
|
||||||
callback(1);
|
callback(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
previousScrollTop = currentScrollTop;
|
previousScrollTop = currentScrollTop;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -192,7 +192,7 @@ define('forum/topic', [
|
|||||||
|
|
||||||
function enableInfiniteLoadingOrPagination() {
|
function enableInfiniteLoadingOrPagination() {
|
||||||
if (!config.usePagination) {
|
if (!config.usePagination) {
|
||||||
infinitescroll.init(posts.loadMorePosts);
|
infinitescroll.init($('[component="topic"]'), posts.loadMorePosts);
|
||||||
} else {
|
} else {
|
||||||
navigator.hide();
|
navigator.hide();
|
||||||
|
|
||||||
|
|||||||
@@ -124,9 +124,9 @@ define('forum/topic/posts', [
|
|||||||
|
|
||||||
var after, before;
|
var after, before;
|
||||||
|
|
||||||
if (direction === 1 && repliesSelector.length) {
|
if (direction > 0 && repliesSelector.length) {
|
||||||
after = repliesSelector.last();
|
after = repliesSelector.last();
|
||||||
} else if (direction === -1 && repliesSelector.length) {
|
} else if (direction < 0 && repliesSelector.length) {
|
||||||
before = repliesSelector.first();
|
before = repliesSelector.first();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
data-index="{posts.index}" data-pid="{posts.pid}" data-uid="{posts.uid}" data-username="{posts.user.username}" data-userslug="{posts.user.userslug}" data-timestamp="{posts.timestamp}" data-votes="{posts.votes}" itemscope itemtype="http://schema.org/Comment"
|
data-index="{posts.index}" data-pid="{posts.pid}" data-uid="{posts.uid}" data-username="{posts.user.username}" data-userslug="{posts.user.userslug}" itemscope itemtype="http://schema.org/Comment"
|
||||||
Reference in New Issue
Block a user