mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-22 12:09:21 +00:00
Created friends components utilities.
This commit is contained in:
parent
4010ce9cbf
commit
411800b46f
@ -561,6 +561,13 @@ var ComunicWeb = {
|
||||
*/
|
||||
interface: {
|
||||
//TODO : implement
|
||||
},
|
||||
|
||||
/**
|
||||
* Friends utilities
|
||||
*/
|
||||
utils: {
|
||||
//TODO : implement
|
||||
}
|
||||
},
|
||||
|
||||
|
29
assets/js/components/friends/utils.js
Normal file
29
assets/js/components/friends/utils.js
Normal file
@ -0,0 +1,29 @@
|
||||
/**
|
||||
* Friends component utilities
|
||||
*
|
||||
* @author Pierre HUBERT
|
||||
*/
|
||||
|
||||
ComunicWeb.components.friends.utils = {
|
||||
|
||||
/**
|
||||
* Extract the IDs of the friends of the users from a friends list
|
||||
*
|
||||
* @param {array} list The friends list to process
|
||||
* @return {array} The list of IDs
|
||||
*/
|
||||
getUsersIdFromPersonnalList: function(list){
|
||||
|
||||
//Parse the list
|
||||
usersID = [];
|
||||
list.forEach(friend => {
|
||||
//Extract user id
|
||||
usersID.push(friend.ID_friend);
|
||||
});
|
||||
|
||||
//Return the generated list
|
||||
return usersID;
|
||||
},
|
||||
|
||||
|
||||
}
|
@ -216,6 +216,7 @@ class Dev {
|
||||
"js/components/friends/friendsBar.js",
|
||||
"js/components/friends/listModal.js",
|
||||
"js/components/friends/interface.js",
|
||||
"js/components/friends/utils.js",
|
||||
|
||||
//Private conversations
|
||||
"js/components/conversations/manager.js",
|
||||
|
Loading…
Reference in New Issue
Block a user