|
|
@ -1,15 +1,22 @@
|
|
|
|
'use strict';
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
|
|
|
|
/* globals define, app, socket, utils */
|
|
|
|
/* globals define, app, socket, utils, config, ajaxify */
|
|
|
|
|
|
|
|
|
|
|
|
define('forum/account/posts', ['forum/account/header', 'forum/infinitescroll'], function(header, infinitescroll) {
|
|
|
|
define('forum/account/posts', ['forum/account/header', 'forum/infinitescroll'], function(header, infinitescroll) {
|
|
|
|
var AccountPosts = {};
|
|
|
|
var AccountPosts = {};
|
|
|
|
|
|
|
|
var method, template;
|
|
|
|
|
|
|
|
|
|
|
|
AccountPosts.init = function() {
|
|
|
|
AccountPosts.init = function() {
|
|
|
|
header.init();
|
|
|
|
header.init();
|
|
|
|
|
|
|
|
|
|
|
|
$('.user-favourite-posts img').addClass('img-responsive');
|
|
|
|
$('[component="post/content"] img').addClass('img-responsive');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
AccountPosts.handleInfiniteScroll('posts.loadMoreUserPosts', 'account/posts');
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
AccountPosts.handleInfiniteScroll = function(_method, _template) {
|
|
|
|
|
|
|
|
method = _method;
|
|
|
|
|
|
|
|
template = _template;
|
|
|
|
if (!config.usePagination) {
|
|
|
|
if (!config.usePagination) {
|
|
|
|
infinitescroll.init(loadMore);
|
|
|
|
infinitescroll.init(loadMore);
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -20,22 +27,22 @@ define('forum/account/posts', ['forum/account/header', 'forum/infinitescroll'],
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
infinitescroll.loadMore('posts.loadMoreUserPosts', {
|
|
|
|
infinitescroll.loadMore(method, {
|
|
|
|
uid: $('.account-username-box').attr('data-uid'),
|
|
|
|
uid: ajaxify.variables.get('theirid'),
|
|
|
|
after: $('.user-favourite-posts').attr('data-nextstart')
|
|
|
|
after: $('[component="posts"]').attr('data-nextstart')
|
|
|
|
}, function(data, done) {
|
|
|
|
}, function(data, done) {
|
|
|
|
if (data.posts && data.posts.length) {
|
|
|
|
if (data.posts && data.posts.length) {
|
|
|
|
onPostsLoaded(data.posts, done);
|
|
|
|
onPostsLoaded(data.posts, done);
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
done();
|
|
|
|
done();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$('.user-favourite-posts').attr('data-nextstart', data.nextStart);
|
|
|
|
$('[component="posts"]').attr('data-nextstart', data.nextStart);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function onPostsLoaded(posts, callback) {
|
|
|
|
function onPostsLoaded(posts, callback) {
|
|
|
|
infinitescroll.parseAndTranslate('account/posts', 'posts', {posts: posts}, function(html) {
|
|
|
|
infinitescroll.parseAndTranslate(template, 'posts', {posts: posts}, function(html) {
|
|
|
|
$('.user-favourite-posts').append(html);
|
|
|
|
$('[component="posts"]').append(html);
|
|
|
|
html.find('img').addClass('img-responsive');
|
|
|
|
html.find('img').addClass('img-responsive');
|
|
|
|
html.find('.timeago').timeago();
|
|
|
|
html.find('.timeago').timeago();
|
|
|
|
app.createUserTooltips();
|
|
|
|
app.createUserTooltips();
|
|
|
|