-
Notifications
You must be signed in to change notification settings - Fork 1
/
serviceWorker.js
51 lines (41 loc) · 1.21 KB
/
serviceWorker.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
const CACHE = "app-cache";
importScripts('https://storage.googleapis.com/workbox-cdn/releases/5.1.2/workbox-sw.js');
self.addEventListener("message", (event) => {
if (event.data && event.data.type === "SKIP_WAITING") {
self.skipWaiting();
}
});
workbox.routing.registerRoute(
new RegExp('/*'),
new workbox.strategies.StaleWhileRevalidate({
cacheName: CACHE
})
);
function enviarNotificacao() {
self.registration.showNotification('Precinho', {
body: 'Olá, pessoa! Que tal economizar um pouco? Nossos preços foram atualizados!',
icon: '/public/icon-192x192.png',
});
}
function agendarNotificacaoDiaria() {
const agora = new Date();
let horarioNotificacao = new Date(
agora.getFullYear(),
agora.getMonth(),
agora.getDate(), // Dia atual
18, // Hora
30, // Minutos
0 // Segundos
);
if (agora.getHours() > 18) {
horarioNotificacao.setDate(agora.getDate() + 1);
}
const tempoRestante = horarioNotificacao.getTime() - agora.getTime();
if (tempoRestante > 0) {
setTimeout(function () {
enviarNotificacao();
agendarNotificacaoDiaria();
}, tempoRestante);
}
}
agendarNotificacaoDiaria();