mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-23 04:29:21 +00:00
33 lines
872 B
JavaScript
33 lines
872 B
JavaScript
/**
|
|
* Common homes functions
|
|
*
|
|
* @author Pierre HUBERT
|
|
*/
|
|
ComunicWeb.pages.home.home = {
|
|
/**
|
|
* Open home page
|
|
*
|
|
* @param {Object} additionnalData Additionnal data passed in the method
|
|
* @param {element} targetElement Where the template will be applied
|
|
* @returns {Boolean} False if it fails
|
|
*/
|
|
openHomePage: function(additionnalData, targetElement){
|
|
//Check wether if user is logged in or not
|
|
var userLoggedIn = ComunicWeb.user.userLogin.getUserLoginState();
|
|
|
|
//Check if user is in or not
|
|
if(userLoggedIn){
|
|
|
|
//Open current user page
|
|
openPage("user/me");
|
|
|
|
}
|
|
else{
|
|
//Display landing page
|
|
ComunicWeb.pages.home.landingPage.display(targetElement);
|
|
}
|
|
|
|
//Everything seems to be OK
|
|
return true;
|
|
}
|
|
}; |