-
Notifications
You must be signed in to change notification settings - Fork 0
/
sw.js
49 lines (43 loc) · 1.51 KB
/
sw.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
const paginaOffline = "../paginaOffline.html";
self.addEventListener('install', function(e) {
e.waitUntil(
caches.open('cachePagineAppunti').then(function(cache) {
return cache.addAll([
'../login.html',
'../index.php?',
paginaOffline
]);
})
);
});
self.addEventListener('fetch', (event) => {
// Rispondiamo solo a una richiesta per una pagina web
if (event.request.mode === 'navigate') {
event.respondWith((async () => {
try {
// Prova a usare la preloadResponse
const preloadResponse = await event.preloadResponse;
if (preloadResponse) {
return preloadResponse;
}
const networkResponse = await fetch(event.request);
return networkResponse;
} catch (error) {
// Qualcosa è andato storto; probabilmente sei offline!
console.log('Restituisco la pagina offline', error);
const cache = await caches.open('cachePagineAppunti');
const cachedResponse = await cache.match(paginaOffline);
return cachedResponse;
}
})());
}
});
self.addEventListener('push', function(event) {
const title = "Nuovo appunto inserito!";
const options = {
body: event.data.text(),
icon: 'res/logo.jpg',
badge: 'res/logo.jpg'
};
event.waitUntil(self.registration.showNotification(title, options));
});