ComunicWeb/assets/js/components/notifications/service.js
2018-11-24 16:01:45 +01:00

69 lines
1.8 KiB
JavaScript

/**
* Notifications service
*
* @author Pierre HUBERT
*/
ComunicWeb.components.notifications.service = {
/**
* Init the service
*
* @param {HTMLElement} target The target that will receive
* the number of unread notifications
* @param {Bool} auto_hide Automatically hide the notifications
* number if there is not any new notification
* @param {HTMLElement} target_conversations Optionnal, defins the target
* for the number of conversations
*/
init: function(target, auto_hide, target_conversations){
//Initialize interval
var interval = setInterval(function(){
//Auto-remove interval if the target has been removed
if(!target.isConnected){
ComunicWeb.common.pageTitle.setNotificationsNumber(0);
return clearInterval(interval);
}
//Get the number of notifications from the API
ComunicWeb.components.notifications.interface.getAllUnread(function(response){
//Continue in case of success
if(response.error)
return;
//Update the target
target.innerHTML = response.notifications;
//If the number of notifications equals 0, hide the target if required
if(response.notifications == 0 && auto_hide)
target.style.display = "none";
else
target.style.display = "block";
//Update the number of conversations if possible too
if(target_conversations){
//Update the target
target_conversations.innerHTML = response.conversations;
//If the number of notifications equals 0, hide the target if required
if(response.conversations == 0 && auto_hide)
target_conversations.style.display = "none";
else
target_conversations.style.display = "block";
}
//Update page title too
ComunicWeb.common.pageTitle.setNotificationsNumber(response.notifications + response.conversations);
});
}, 2000);
},
}