-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice-worker.js
131 lines (107 loc) · 3.51 KB
/
service-worker.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
let cacheName = "WebBleedPWA"; // 👈 any unique name
let filesToCache = [
"/WebBleed/", // 👈 your repository name , both slash are important
"service-worker.js",
"js/main.js",
"js/install-handler.js",
"js/settings.js",
"css/main.css",
"assets/icons/icon.png",
"assets/icons/arrow.png",
"components/home/index.html",
"components/notification/index.html",
"components/vibrate/index.html",
"components/battery/index.html",
"components/platform/index.html",
"components/share/index.html",
"assets/icons/share.png",
"components/screencapture/index.html",
"assets/icons/screenshare.png",
"components/url/index.html",
"manifest.json"
// add your assets here
// ❗️❕donot add config.json here ❗️❕
];
self.addEventListener("install", function(event) {
event.waitUntil(caches.open(cacheName).then((cache) => {
console.log('installed successfully')
return cache.addAll(filesToCache);
}));
});
self.addEventListener('fetch', function(event) {
if (event.request.url.includes('clean-cache')) {
caches.delete(cacheName);
console.log('Cache cleared')
}
event.respondWith(caches.match(event.request).then(function(response) {
if (response) {
console.log('served form cache')
} else {
console.log('Not serving from cache ', event.request.url)
}
return response || fetch(event.request);
}));
});
self.addEventListener('activate', function(e) {
e.waitUntil(
caches.keys().then(function(keyList) {
return Promise.all(keyList.map(function(key) {
if (key !== cacheName) {
console.log('service worker: Removing old cache', key);
return caches.delete(key);
}
}));
})
);
return self.clients.claim();
});
const channel = new BroadcastChannel('sw-messages');
channel.addEventListener('message', event => {
console.log('Received', event.data);
self.registration.showNotification(event.data.title, {
"body": event.data.body,
"icon": "assets/icons/icon.png",
"actions": [{
"action": "contact-picker",
"title": event.data.btn
}]
}).then(evt => {
console.log(evt)
}).catch(err => {
console.log(err)
})
});
let lastNotificationId = -1;
self.addEventListener('sync', function(event) {
console.log("sync event", event);
checkNotification();
});
function checkNotification() {
fetch(`config.json?rand=${new Date().getTime()}`).then(res => res.json()).then(data => {
if (lastNotificationId != data.notification.id || true) {
lastNotificationId = data.notification.id;
self.registration.showNotification(data.notification.title, data.notification).then(evt => {
console.log(evt)
}).catch(err => {
console.log(err)
})
}
})
}
const swEventChannel = new BroadcastChannel('sw-events');
swEventChannel.addEventListener('message', (evt) => {
try {
self.registration.periodicSync.register('push-sync', {
// An interval of one day.
minInterval: 24 * 60 * 60 * 1000,
}).then(_ => {
self.addEventListener('periodicsync', (event) => {
if (event.tag === 'push-sync') {
checkNotification();
}
});
})
} catch (error) {
console.error(err)
}
})