You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

366 lines
10 KiB
JavaScript

8 years ago
'use strict';
10 years ago
define('forum/category', [
'forum/infinitescroll',
'share',
'navigator',
'forum/category/tools',
'sort',
'components',
'translator',
'topicSelect',
'forum/pagination',
8 years ago
'storage',
], function (infinitescroll, share, navigator, categoryTools, sort, components, translator, topicSelect, pagination, storage) {
var Category = {};
8 years ago
$(window).on('action:ajaxify.end', function (ev, data) {
if (data.tpl_url !== 'category') {
10 years ago
navigator.disable();
removeListeners();
}
});
function removeListeners() {
socket.removeListener('event:new_topic', Category.onNewTopic);
categoryTools.removeListeners();
}
Category.init = function () {
10 years ago
var cid = ajaxify.data.cid;
app.enterRoom('category_' + cid);
10 years ago
share.addShareHandlers(ajaxify.data.name);
socket.removeListener('event:new_topic', Category.onNewTopic);
socket.on('event:new_topic', Category.onNewTopic);
categoryTools.init(cid);
10 years ago
sort.handleSort('categoryTopicSort', 'user.setCategorySort', 'category/' + ajaxify.data.slug);
10 years ago
10 years ago
enableInfiniteLoadingOrPagination();
$('[component="category"]').on('click', '[component="topic/header"]', function () {
10 years ago
var clickedIndex = $(this).parents('[data-index]').attr('data-index');
$('[component="category/topic"]').each(function (index, el) {
10 years ago
if ($(el).offset().top - $(window).scrollTop() > 0) {
8 years ago
storage.setItem('category:' + cid + ':bookmark', $(el).attr('data-index'));
storage.setItem('category:' + cid + ':bookmark:clicked', clickedIndex);
return false;
}
});
});
8 years ago
handleScrollToTopicIndex();
handleIgnoreWatch(cid);
9 years ago
$(window).trigger('action:topics.loaded', { topics: ajaxify.data.topics });
$(window).trigger('action:category.loaded', { cid: ajaxify.data.cid });
};
8 years ago
function handleScrollToTopicIndex() {
var parts = window.location.pathname.split('/');
var topicIndex = parts[parts.length - 1];
if (topicIndex && utils.isNumber(topicIndex)) {
topicIndex = Math.max(0, parseInt(topicIndex, 10) - 1);
if (topicIndex && window.location.search.indexOf('page=') === -1) {
navigator.scrollToElement($('[component="category/topic"][data-index="' + topicIndex + '"]'), true, 0);
}
}
}
function handleIgnoreWatch(cid) {
$('[component="category/watching"], [component="category/ignoring"]').on('click', function () {
var $this = $(this);
var command = $this.attr('component') === 'category/watching' ? 'watch' : 'ignore';
socket.emit('categories.' + command, cid, function (err) {
if (err) {
return app.alertError(err.message);
}
$('[component="category/watching/menu"]').toggleClass('hidden', command !== 'watch');
$('[component="category/watching/check"]').toggleClass('fa-check', command === 'watch');
$('[component="category/ignoring/menu"]').toggleClass('hidden', command !== 'ignore');
$('[component="category/ignoring/check"]').toggleClass('fa-check', command === 'ignore');
app.alertSuccess('[[category:' + command + '.message]]');
});
});
}
Category.toTop = function () {
10 years ago
navigator.scrollTop(0);
};
Category.toBottom = function () {
socket.emit('categories.getTopicCount', ajaxify.data.cid, function (err, count) {
if (err) {
return app.alertError(err.message);
}
10 years ago
navigator.scrollBottom(count - 1);
});
};
Category.navigatorCallback = function (topIndex, bottomIndex) {
10 years ago
return bottomIndex;
};
8 years ago
$(window).on('action:popstate', function () {
8 years ago
if (ajaxify.data.template.category && ajaxify.data.cid) {
8 years ago
var bookmarkIndex = storage.getItem('category:' + ajaxify.data.cid + ':bookmark');
var clickedIndex = storage.getItem('category:' + ajaxify.data.cid + ':bookmark:clicked');
8 years ago
storage.removeItem('category:' + ajaxify.data.cid + ':bookmark');
storage.removeItem('category:' + ajaxify.data.cid + ':bookmark:clicked');
bookmarkIndex = Math.max(0, parseInt(bookmarkIndex, 10) || 0);
clickedIndex = Math.max(0, parseInt(clickedIndex, 10) || 0);
if (!parseInt(bookmarkIndex, 10)) {
return;
}
10 years ago
if (config.usePagination) {
var page = Math.ceil((parseInt(bookmarkIndex, 10) + 1) / config.topicsPerPage);
10 years ago
if (parseInt(page, 10) !== ajaxify.data.pagination.currentPage) {
pagination.loadPage(page, function () {
8 years ago
Category.scrollToTopic(bookmarkIndex, clickedIndex, 0);
10 years ago
});
} else {
8 years ago
Category.scrollToTopic(bookmarkIndex, clickedIndex, 0);
10 years ago
}
} else {
10 years ago
if (bookmarkIndex === 0) {
Category.highlightTopic(clickedIndex);
return;
}
$('[component="category"]').empty();
loadTopicsAfter(Math.max(0, bookmarkIndex - 1) + 1, 1, function () {
$(window).one('action:topics.loaded', function () {
Category.scrollToTopic(bookmarkIndex, clickedIndex, 0);
});
});
}
}
});
Category.highlightTopic = function (topicIndex) {
var highlight = components.get('category/topic', 'index', topicIndex);
10 years ago
if (highlight.length && !highlight.hasClass('highlight')) {
highlight.addClass('highlight');
setTimeout(function () {
highlight.removeClass('highlight');
}, 5000);
}
};
Category.scrollToTopic = function (bookmarkIndex, clickedIndex, duration, offset) {
10 years ago
if (!bookmarkIndex) {
return;
}
10 years ago
if (!offset) {
offset = 0;
}
var scrollTo = components.get('category/topic', 'index', bookmarkIndex);
if (scrollTo.length) {
10 years ago
$('html, body').animate({
scrollTop: (scrollTo.offset().top - offset) + 'px',
}, duration !== undefined ? duration : 400, function () {
10 years ago
Category.highlightTopic(clickedIndex);
navigator.update();
});
}
};
function enableInfiniteLoadingOrPagination() {
if (!config.usePagination) {
8 years ago
navigator.init('[component="category/topic"]', ajaxify.data.topic_count, Category.toTop, Category.toBottom, Category.navigatorCallback);
infinitescroll.init($('[component="category"]'), Category.loadMoreTopics);
} else {
10 years ago
navigator.disable();
}
}
Category.onNewTopic = function (topic) {
10 years ago
var cid = ajaxify.data.cid;
10 years ago
if (!topic || parseInt(topic.cid, 10) !== parseInt(cid, 10)) {
return;
}
$(window).trigger('filter:categories.new_topic', topic);
var editable = !!$('.thread-tools').length;
templates.parse('category', 'topics', {
privileges: { editable: editable },
showSelect: editable,
topics: [topic],
template: { category: true },
}, function (html) {
translator.translate(html, function (translatedHTML) {
var topic = $(translatedHTML);
var container = $('[component="category"]');
var topics = $('[component="category/topic"]');
var numTopics = topics.length;
$('[component="category"]').removeClass('hidden');
$('.category-sidebar').removeClass('hidden');
var noTopicsWarning = $('#category-no-topics');
if (noTopicsWarning.length) {
noTopicsWarning.remove();
ajaxify.widgets.render('category', window.location.pathname.slice(1));
}
if (numTopics > 0) {
for (var x = 0; x < numTopics; x += 1) {
var pinned = $(topics[x]).hasClass('pinned');
if (!pinned) {
topic.insertBefore(topics[x]);
break;
}
if (x === numTopics - 1) {
topic.insertAfter(topics[x]);
}
}
} else {
container.append(topic);
}
topic.hide().fadeIn('slow');
topic.find('.timeago').timeago();
app.createUserTooltips();
updateTopicCount();
$(window).trigger('action:categories.new_topic.loaded');
});
});
};
function updateTopicCount() {
socket.emit('categories.getTopicCount', ajaxify.data.cid, function (err, topicCount) {
if (err) {
return app.alertError(err.message);
}
navigator.setCount(topicCount);
});
}
Category.loadMoreTopics = function (direction) {
if (!$('[component="category"]').length || !$('[component="category"]').children().length) {
return;
}
var topics = $('[component="category/topic"]');
var afterEl = direction > 0 ? topics.last() : topics.first();
var after = (parseInt(afterEl.attr('data-index'), 10) || 0) + 1;
loadTopicsAfter(after, direction);
};
function loadTopicsAfter(after, direction, callback) {
callback = callback || function () {};
if (!utils.isNumber(after) || (after === 0 && components.get('category/topic', 'index', 0).length)) {
return callback();
}
$(window).trigger('action:category.loading');
9 years ago
var params = utils.params();
infinitescroll.loadMore('categories.loadMore', {
cid: ajaxify.data.cid,
after: after,
direction: direction,
9 years ago
author: params.author,
tag: params.tag,
categoryTopicSort: config.categoryTopicSort,
}, function (data, done) {
if (data.topics && data.topics.length) {
Category.onTopicsLoaded(data, direction, done);
} else {
done();
}
$(window).trigger('action:category.loaded');
callback();
});
}
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;
var before;
var topics = $('[component="category/topic"]');
if (direction > 0 && topics.length) {
after = topics.last();
} else if (direction < 0 && topics.length) {
before = topics.first();
}
app.parseAndTranslate('category', 'topics', data, function (html) {
$('[component="category"]').removeClass('hidden');
$('.category-sidebar').removeClass('hidden');
$('#category-no-topics').remove();
if (after) {
html.insertAfter(after);
} else if (before) {
var height = $(document).height();
var scrollTop = $(window).scrollTop();
html.insertBefore(before);
$(window).scrollTop(scrollTop + ($(document).height() - height));
} else {
$('[component="category"]').append(html);
}
if (!topicSelect.getSelectedTids().length) {
8 years ago
infinitescroll.removeExtra($('[component="category/topic"]'), direction, config.topicsPerPage * 3);
}
html.find('.timeago').timeago();
app.createUserTooltips();
utils.makeNumbersHumanReadable(html.find('.human-readable-number'));
$(window).trigger('action:topics.loaded', { topics: data.topics });
callback();
});
};
return Category;
});