[notifications] Load when page gets loaded

This commit is contained in:
Ferdinand Thiessen 2021-04-01 19:39:47 +02:00
parent fc35e2ecec
commit f787e314ef
1 changed files with 15 additions and 14 deletions

View File

@ -135,7 +135,10 @@ export default defineComponent({
const useNative = 'Notification' in window && window.Notification !== undefined;
const noPermission = ref(!useNative || window.Notification.permission !== 'granted');
onBeforeMount(() => pollNotification());
onBeforeMount(() => {
polling.value = window.setInterval(() => pollNotification(), config.pollingInterval);
pollNotification();
});
onBeforeUnmount(() => window.clearInterval(polling.value));
const leftDrawerOpen = computed({
@ -170,7 +173,6 @@ export default defineComponent({
}
function pollNotification() {
polling.value = window.setInterval(() => {
void mainStore
.loadNotifications(<FG_Plugin.Flaschengeist>flaschengeist)
.then((notifications) => {
@ -182,7 +184,6 @@ export default defineComponent({
})
);
});
}, config.pollingInterval);
}
return {