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.

56 lines
1.4 KiB
JavaScript

'use strict';
10 years ago
/* globals define, app, socket, utils, config, ajaxify */
define('forum/account/topics', ['forum/account/header', 'forum/infinitescroll'], function(header, infinitescroll) {
var AccountTopics = {};
10 years ago
var template, set;
AccountTopics.init = function() {
header.init();
10 years ago
AccountTopics.handleInfiniteScroll('account/topics', 'uid:' + ajaxify.data.theirid + ':topics');
10 years ago
};
AccountTopics.handleInfiniteScroll = function(_template, _set) {
template = _template;
set = _set;
10 years ago
if (!config.usePagination) {
infinitescroll.init(loadMore);
}
};
function loadMore(direction) {
if (direction < 0) {
return;
}
infinitescroll.loadMore('topics.loadMoreFromSet', {
10 years ago
set: set,
after: $('[component="category"]').attr('data-nextstart')
}, function(data, done) {
if (data.topics && data.topics.length) {
onTopicsLoaded(data.topics, done);
} else {
done();
}
10 years ago
10 years ago
$('[component="category"]').attr('data-nextstart', data.nextStart);
});
}
function onTopicsLoaded(topics, callback) {
app.parseAndTranslate('account/topics', 'topics', {topics: topics}, function(html) {
$('[component="category"]').append(html);
html.find('.timeago').timeago();
app.createUserTooltips();
utils.makeNumbersHumanReadable(html.find('.human-readable-number'));
$(window).trigger('action:topics.loaded', {topics: topics});
callback();
});
}
return AccountTopics;
});