mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-23 04:29:21 +00:00
84 lines
2.2 KiB
JavaScript
84 lines
2.2 KiB
JavaScript
/**
|
|
* Notifications service
|
|
*
|
|
* @author Pierre HUBERT
|
|
*/
|
|
|
|
ComunicWeb.components.notifications.service = {
|
|
|
|
/**
|
|
* Last known number of notifications
|
|
*/
|
|
last_notifs_number: -1,
|
|
|
|
/**
|
|
* 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(() => {
|
|
|
|
//Auto-remove interval if the target has been removed
|
|
if(!target.isConnected){
|
|
ComunicWeb.common.pageTitle.setNotificationsNumber(0);
|
|
this.last_notifs_number = -1;
|
|
return clearInterval(interval);
|
|
}
|
|
|
|
|
|
//Get the number of notifications from the API
|
|
ComunicWeb.components.notifications.interface.getAllUnread(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";
|
|
|
|
}
|
|
|
|
//Sum notification number
|
|
let total_number_notifs = response.notifications + response.conversations;
|
|
|
|
//Update page title too
|
|
ComunicWeb.common.pageTitle.setNotificationsNumber(total_number_notifs);
|
|
|
|
//Play song if required
|
|
if(this.last_notifs_number != -1 && total_number_notifs > this.last_notifs_number)
|
|
ComunicWeb.components.notifications.song.play();
|
|
|
|
this.last_notifs_number = total_number_notifs;
|
|
});
|
|
|
|
}, 2000);
|
|
|
|
},
|
|
|
|
} |