mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-23 12:39:22 +00:00
32 lines
532 B
JavaScript
32 lines
532 B
JavaScript
/**
|
|
* Comments utilities
|
|
*
|
|
* @author Pierre HUBERT
|
|
*/
|
|
|
|
ComunicWeb.components.comments.utils = {
|
|
|
|
/**
|
|
* Get the IDs of the users who posted comments
|
|
*
|
|
* @param {Object} infos Informations about the comments
|
|
* @return {Object} List of users ID
|
|
*/
|
|
get_users_id: function(infos){
|
|
|
|
//Process the list of users
|
|
var users = [];
|
|
|
|
var i;
|
|
for(i in infos){
|
|
|
|
//If the user isn't already present in the list, add it
|
|
if(!users.includes(infos[i].userID))
|
|
users.push(infos[i].userID);
|
|
|
|
}
|
|
|
|
return users;
|
|
}
|
|
|
|
} |