openvk/Web/static/js/al_notifs.js
Vitaly Orekhov d2b2e41328
Shut up notification listener on false triggers (#760)
За-йо-бал трещать ложными уведомлениями. Использует подкостыль из (https://github.com/openvk/openvk/issues/694#issuecomment-1229165601)[комментария].
2022-10-27 12:44:46 +03:00

37 lines
1.1 KiB
JavaScript

createjs.Sound.registerSound("/assets/packages/static/openvk/audio/notify.mp3", "notification");
function __actualPlayNotifSound() {
createjs.Sound.play("notification");
}
window.playNotifSound = Function.noop;
async function setupNotificationListener() {
console.warn("Setting up notifications listener...");
while(true) {
let notif;
try {
notif = await API.Notifications.fetch();
} catch(rejection) {
if(rejection.message !== "Nothing to report") {
console.error(rejection);
return;
}
console.info("No new notifications discovered... Redialing event broker");
continue;
}
playNotifSound();
NewNotification(notif.title, notif.body, notif.ava, Function.noop, notif.priority * 6000);
console.info("New notification", notif);
API.Notifications.ack();
}
};
setupNotificationListener();
u(document.body).on("click", () => window.playNotifSound = window.__actualPlayNotifSound);