2018-02-02 05:56:52 +00:00
|
|
|
/**
|
|
|
|
* Latest posts page main script
|
|
|
|
*
|
|
|
|
* @author Pierre HUBERT
|
|
|
|
*/
|
|
|
|
|
|
|
|
ComunicWeb.pages.latestPosts.main = {
|
|
|
|
|
2018-02-03 17:21:26 +00:00
|
|
|
/**
|
|
|
|
* Last loaded post id
|
|
|
|
*/
|
|
|
|
_last_post_id: 0,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Specify if post loading is locked or not
|
|
|
|
*/
|
|
|
|
_load_post_locked: false,
|
|
|
|
|
2018-02-02 05:56:52 +00:00
|
|
|
/**
|
|
|
|
* Open latest posts page
|
|
|
|
*
|
|
|
|
* @param {Object} params Parametres required to open the page
|
|
|
|
* @param {HTMLElement} target The target for the user page
|
|
|
|
*/
|
|
|
|
open: function(params, target){
|
|
|
|
|
2018-02-03 17:21:26 +00:00
|
|
|
//Reset variables
|
|
|
|
this._last_post_id = 0;
|
|
|
|
this._load_post_locked = true;
|
2018-02-03 14:58:28 +00:00
|
|
|
|
|
|
|
//Create post list box
|
|
|
|
//Create row
|
|
|
|
var pageRow = createElem2({
|
|
|
|
appendTo: target,
|
|
|
|
type: "div",
|
|
|
|
class: "row latest-posts-row"
|
|
|
|
});
|
|
|
|
|
|
|
|
//Post column
|
|
|
|
var column = createElem2({
|
|
|
|
appendTo: pageRow,
|
|
|
|
type: "div",
|
2018-02-03 17:25:21 +00:00
|
|
|
class: "col-md-5"
|
2018-02-03 14:58:28 +00:00
|
|
|
});
|
|
|
|
|
2019-05-19 12:59:36 +00:00
|
|
|
// Display create posts form
|
|
|
|
ComunicWeb.components.posts.form.display("user", userID(), column);
|
|
|
|
|
2018-02-03 14:58:28 +00:00
|
|
|
//Create post box
|
|
|
|
var postBox = createElem2({
|
|
|
|
appendTo: column,
|
|
|
|
type: "div",
|
|
|
|
class: "box box-primary"
|
|
|
|
});
|
|
|
|
|
|
|
|
//Create box body
|
|
|
|
var boxBody = createElem2({
|
|
|
|
appendTo: postBox,
|
|
|
|
type: "div",
|
|
|
|
class: "box-body"
|
|
|
|
});
|
|
|
|
|
2018-02-03 17:21:26 +00:00
|
|
|
//Load the list
|
|
|
|
this._load_list(boxBody);
|
|
|
|
|
|
|
|
//Catch scroll event
|
|
|
|
$(window).scroll(function(){
|
|
|
|
|
|
|
|
//Cancel event if it came by error
|
|
|
|
if(!boxBody.isConnected)
|
|
|
|
return;
|
|
|
|
|
|
|
|
//Cancel event if the page is locked
|
|
|
|
if(ComunicWeb.pages.latestPosts.main._load_post_locked !== false)
|
|
|
|
return;
|
|
|
|
|
|
|
|
//Check if we reached the bottom of the page
|
|
|
|
if($(window).scrollTop() + $(window).height() < $(document).height() - 50){
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
//Lock the loading state
|
|
|
|
ComunicWeb.pages.latestPosts.main._load_post_locked = true;
|
|
|
|
|
|
|
|
//Load next posts
|
|
|
|
ComunicWeb.pages.latestPosts.main._load_list(boxBody);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Load the list of post
|
|
|
|
*
|
|
|
|
* @param {HTMLElement} target The target
|
|
|
|
*/
|
|
|
|
_load_list: function(target){
|
|
|
|
|
|
|
|
//Perform a request on the server to get the list of latest posts
|
2018-07-20 13:17:26 +00:00
|
|
|
ComunicWeb.components.posts.interface.get_latest(this._last_post_id, true, function(response){
|
2018-02-03 17:21:26 +00:00
|
|
|
|
|
|
|
//Check for errors - display a modal
|
|
|
|
if(response.error){
|
|
|
|
|
|
|
|
//Display modal error
|
2018-08-04 07:03:31 +00:00
|
|
|
var error = ComunicWeb.common.messages.createCalloutElem(lang("page_latest_posts_err_get_list_title"), lang("page_latest_posts_err_get_list_message"), "danger");
|
2018-02-03 17:21:26 +00:00
|
|
|
error.className += " latestPostsError";
|
|
|
|
target.appendChild(error);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
//Display the list of posts
|
|
|
|
ComunicWeb.pages.latestPosts.main._display_list(response, target);
|
|
|
|
|
2018-05-26 14:19:24 +00:00
|
|
|
//Unlock posts loading (if required)
|
|
|
|
if(response.length != 0)
|
|
|
|
ComunicWeb.pages.latestPosts.main._load_post_locked = false;
|
2018-02-03 17:21:26 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display the list of latest post
|
|
|
|
*
|
|
|
|
* @param {Object} list The list of posts to display
|
|
|
|
* @param {HTMLElement} target The target for the posts
|
|
|
|
*/
|
|
|
|
_display_list: function(list, target){
|
|
|
|
|
2018-02-03 14:58:28 +00:00
|
|
|
//Process the list of posts
|
2018-04-24 18:19:00 +00:00
|
|
|
for (var index = 0; index < list.length; index++) {
|
2018-02-03 17:21:26 +00:00
|
|
|
|
2018-02-03 14:58:28 +00:00
|
|
|
//Display the post
|
2018-02-03 17:21:26 +00:00
|
|
|
ComunicWeb.components.posts.ui.display_post(list[index], target);
|
|
|
|
|
|
|
|
//Save its ID
|
|
|
|
this._last_post_id = list[index].ID;
|
2018-02-03 15:04:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//Check if there aren't any post to display
|
|
|
|
if(list.length == 0){
|
2018-02-03 15:09:16 +00:00
|
|
|
//Display message
|
2018-08-04 07:03:31 +00:00
|
|
|
var message = ComunicWeb.common.messages.createCalloutElem(lang("page_latest_posts_notice_no_post_title"), lang("page_latest_posts_notice_no_posts_message"), "info");
|
2018-02-03 15:04:53 +00:00
|
|
|
message.className += " noLatestPosts";
|
2018-04-11 06:54:22 +00:00
|
|
|
target.appendChild(message);
|
2018-02-03 14:58:28 +00:00
|
|
|
}
|
|
|
|
}
|
2018-02-02 05:56:52 +00:00
|
|
|
}
|