blob: 055fcf64d73985fa8a7ce205b58579282ec90ab7 (
plain) (
blame)
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
|
/// <reference no-default-lib="true"/>
/// <reference lib="esnext" />
/// <reference lib="WebWorker" />
var sw = /** @type {ServiceWorkerGlobalScope & typeof self} */ (self);
sw.addEventListener('install', function() {
sw.skipWaiting();
});
sw.addEventListener('activate', function() {
sw.clients.claim();
});
sw.addEventListener('push', function(evt) {
if (evt.data) {
const data = evt.data.json();
console.log('Push', data);
if (data.body) {
sw.registration.showNotification(data.title, {
body: data.body,
icon: data.custom.message.user.avatar
});
}
}
});
sw.addEventListener('notificationclick', function(evt) {
evt.waitUntil(
sw.clients.matchAll().then(function(clientList) {
if (clientList.length > 0) {
return clientList[0].focus();
}
return sw.clients.openWindow('https://juick.com/');
})
);
});
|