mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-23 04:29:21 +00:00
Splited friends component
This commit is contained in:
parent
5229349600
commit
7eb6bf383c
@ -444,8 +444,20 @@ var ComunicWeb = {
|
|||||||
/**
|
/**
|
||||||
* Friends list
|
* Friends list
|
||||||
*/
|
*/
|
||||||
friendsList: {
|
friends: {
|
||||||
//TODO : implement
|
/**
|
||||||
|
* Friends list caching system
|
||||||
|
*/
|
||||||
|
list:{
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Friends bar
|
||||||
|
*/
|
||||||
|
bar:{
|
||||||
|
|
||||||
|
},
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
91
assets/js/components/friendsList/friendsBar.js
Normal file
91
assets/js/components/friendsList/friendsBar.js
Normal file
@ -0,0 +1,91 @@
|
|||||||
|
/**
|
||||||
|
* Friends bar
|
||||||
|
*
|
||||||
|
* @author Pierre HUBERT
|
||||||
|
*/
|
||||||
|
|
||||||
|
ComunicWeb.components.friends.bar = {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Display friends list
|
||||||
|
*
|
||||||
|
* @return {Boolean} True for a success
|
||||||
|
*/
|
||||||
|
display: function(){
|
||||||
|
//Log action
|
||||||
|
ComunicWeb.debug.logMessage("Initialize friends list.");
|
||||||
|
|
||||||
|
//Check if friends list already exists or not
|
||||||
|
var friendsListContainer = byId("friendsList");
|
||||||
|
|
||||||
|
//We check if the friend list already exists or not
|
||||||
|
if(friendsListContainer){
|
||||||
|
ComunicWeb.debug.logMessage("Notice: friend list already present on the page. Nothing to be done.");
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
//Create and apply friends list element
|
||||||
|
var friendsListContainer = createElem("div");
|
||||||
|
friendsListContainer.id = "friendsList";
|
||||||
|
|
||||||
|
//Check if "pageTarget" already exists or not
|
||||||
|
var pageTarget = byId("pageTarget");
|
||||||
|
if(pageTarget){
|
||||||
|
//Insert friends list just before pageTarget
|
||||||
|
byId("wrapper").insertBefore(friendsListContainer, pageTarget);
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
byId("wrapper").appendChild(friendsListContainer); //Just happend the menubar
|
||||||
|
}
|
||||||
|
|
||||||
|
//Initializate friends list
|
||||||
|
this.init(friendsListContainer);
|
||||||
|
|
||||||
|
//Success
|
||||||
|
return true;
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initializate a friend list
|
||||||
|
*
|
||||||
|
* @param {HTMLElement} friendsListContainer The container of the friend list
|
||||||
|
* @return {Boolean} True for a success
|
||||||
|
*/
|
||||||
|
init: function(friendsListContainer){
|
||||||
|
|
||||||
|
//First, create the table container
|
||||||
|
var listFriendsElem = createElem("table", friendsListContainer);
|
||||||
|
listFriendsElem.className = "table table-condensed";
|
||||||
|
|
||||||
|
//Refresh friends list
|
||||||
|
this.refresh(listFriendsElem);
|
||||||
|
|
||||||
|
//Success
|
||||||
|
return true;
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Refresh a friend list
|
||||||
|
*
|
||||||
|
* @param {HTMLElement} listFriendsElem The element that contains the list of friens
|
||||||
|
* @return {Boolean} True for a success
|
||||||
|
*/
|
||||||
|
refresh: function(listFriendsElem){
|
||||||
|
//First, perform an API request
|
||||||
|
var apiURI = "friends/getList";
|
||||||
|
var params = {};
|
||||||
|
|
||||||
|
//Perform request
|
||||||
|
ComunicWeb.common.api.makeAPIrequest(apiURI, params, true, function(result){
|
||||||
|
|
||||||
|
//Check for error
|
||||||
|
if(result.error){
|
||||||
|
ComunicWeb.debug.logMessage("Couldn't get a new version of friends list !");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
//Log information
|
||||||
|
ComunicWeb.debug.logMessage("Got a new version of friends list !");
|
||||||
|
});
|
||||||
|
},
|
||||||
|
}
|
@ -1,91 +1,9 @@
|
|||||||
/**
|
/**
|
||||||
* Friends list
|
* Friends list caching system
|
||||||
*
|
*
|
||||||
* @author Pierre HUBERT
|
* @author Pierre HUBERT
|
||||||
*/
|
*/
|
||||||
|
|
||||||
ComunicWeb.components.friendsList = {
|
ComunicWeb.components.friends.list = {
|
||||||
|
|
||||||
/**
|
};
|
||||||
* Display friends list
|
|
||||||
*
|
|
||||||
* @return {Boolean} True for a success
|
|
||||||
*/
|
|
||||||
display: function(){
|
|
||||||
//Log action
|
|
||||||
ComunicWeb.debug.logMessage("Initialize friends list.");
|
|
||||||
|
|
||||||
//Check if friends list already exists or not
|
|
||||||
var friendsListContainer = byId("friendsList");
|
|
||||||
|
|
||||||
//We check if the friend list already exists or not
|
|
||||||
if(friendsListContainer){
|
|
||||||
ComunicWeb.debug.logMessage("Notice: friend list already present on the page. Nothing to be done.");
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
//Create and apply friends list element
|
|
||||||
var friendsListContainer = createElem("div");
|
|
||||||
friendsListContainer.id = "friendsList";
|
|
||||||
|
|
||||||
//Check if "pageTarget" already exists or not
|
|
||||||
var pageTarget = byId("pageTarget");
|
|
||||||
if(pageTarget){
|
|
||||||
//Insert friends list just before pageTarget
|
|
||||||
byId("wrapper").insertBefore(friendsListContainer, pageTarget);
|
|
||||||
}
|
|
||||||
else{
|
|
||||||
byId("wrapper").appendChild(friendsListContainer); //Just happend the menubar
|
|
||||||
}
|
|
||||||
|
|
||||||
//Initializate friends list
|
|
||||||
this.init(friendsListContainer);
|
|
||||||
|
|
||||||
//Success
|
|
||||||
return true;
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Initializate a friend list
|
|
||||||
*
|
|
||||||
* @param {HTMLElement} friendsListContainer The container of the friend list
|
|
||||||
* @return {Boolean} True for a success
|
|
||||||
*/
|
|
||||||
init: function(friendsListContainer){
|
|
||||||
|
|
||||||
//First, create the table container
|
|
||||||
var listFriendsElem = createElem("table", friendsListContainer);
|
|
||||||
listFriendsElem.className = "table table-condensed";
|
|
||||||
|
|
||||||
//Refresh friends list
|
|
||||||
this.refresh(listFriendsElem);
|
|
||||||
|
|
||||||
//Success
|
|
||||||
return true;
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Refresh a friend list
|
|
||||||
*
|
|
||||||
* @param {HTMLElement} listFriendsElem The element that contains the list of friens
|
|
||||||
* @return {Boolean} True for a success
|
|
||||||
*/
|
|
||||||
refresh: function(listFriendsElem){
|
|
||||||
//First, perform an API request
|
|
||||||
var apiURI = "friends/getList";
|
|
||||||
var params = {};
|
|
||||||
|
|
||||||
//Perform request
|
|
||||||
ComunicWeb.common.api.makeAPIrequest(apiURI, params, true, function(result){
|
|
||||||
|
|
||||||
//Check for error
|
|
||||||
if(result.error){
|
|
||||||
ComunicWeb.debug.logMessage("Couldn't get a new version of friends list !");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
//Log information
|
|
||||||
ComunicWeb.debug.logMessage("Got a new version of friends list !");
|
|
||||||
});
|
|
||||||
},
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user