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.
46 lines
1.1 KiB
JavaScript
46 lines
1.1 KiB
JavaScript
'use strict';
|
|
|
|
/* globals define, app, utils */
|
|
|
|
define('forum/account/favourites', ['forum/account/header', 'forum/infinitescroll'], function(header, infinitescroll) {
|
|
var Favourites = {};
|
|
|
|
Favourites.init = function() {
|
|
header.init();
|
|
|
|
$('.user-favourite-posts img').addClass('img-responsive');
|
|
|
|
infinitescroll.init(loadMore);
|
|
};
|
|
|
|
function loadMore(direction) {
|
|
if (direction < 0) {
|
|
return;
|
|
}
|
|
|
|
infinitescroll.loadMore('posts.loadMoreFavourites', {
|
|
after: $('.user-favourite-posts').attr('data-nextstart')
|
|
}, function(data, done) {
|
|
if (data.posts && data.posts.length) {
|
|
onPostsLoaded(data.posts, done);
|
|
$('.user-favourite-posts').attr('data-nextstart', data.nextStart);
|
|
} else {
|
|
done();
|
|
}
|
|
});
|
|
}
|
|
|
|
function onPostsLoaded(posts, callback) {
|
|
infinitescroll.parseAndTranslate('account/favourites', 'posts', {posts: posts}, function(html) {
|
|
$('.user-favourite-posts').append(html);
|
|
html.find('img').addClass('img-responsive');
|
|
html.find('span.timeago').timeago();
|
|
app.createUserTooltips();
|
|
utils.makeNumbersHumanReadable(html.find('.human-readable-number'));
|
|
callback();
|
|
});
|
|
}
|
|
|
|
return Favourites;
|
|
});
|