2017-11-20 19:40:09 +01:00
|
|
|
/**
|
|
|
|
* Service Worker
|
|
|
|
*/
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
import composeNotification from './scripts/compose-notification';
|
2017-11-27 14:00:48 +01:00
|
|
|
|
2019-09-26 22:12:56 +02:00
|
|
|
// eslint-disable-next-line no-undef
|
|
|
|
const version = _VERSION_;
|
|
|
|
const cacheName = `mk-cache-${version}`;
|
|
|
|
|
|
|
|
const apiUrl = `${location.origin}/api/`;
|
|
|
|
|
2017-11-20 19:40:09 +01:00
|
|
|
// インストールされたとき
|
2017-11-27 14:00:48 +01:00
|
|
|
self.addEventListener('install', ev => {
|
2017-11-20 23:06:36 +01:00
|
|
|
console.info('installed');
|
2017-11-27 14:00:48 +01:00
|
|
|
|
2019-09-26 22:12:56 +02:00
|
|
|
ev.waitUntil(
|
|
|
|
caches.open(cacheName)
|
|
|
|
.then(cache => {
|
|
|
|
return cache.addAll([
|
2020-02-06 14:11:27 +01:00
|
|
|
'/'
|
2019-09-26 22:12:56 +02:00
|
|
|
]);
|
|
|
|
})
|
|
|
|
.then(() => self.skipWaiting())
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
self.addEventListener('activate', ev => {
|
|
|
|
ev.waitUntil(
|
|
|
|
caches.keys()
|
|
|
|
.then(cacheNames => Promise.all(
|
|
|
|
cacheNames
|
|
|
|
.filter((v) => v !== cacheName)
|
|
|
|
.map(name => caches.delete(name))
|
|
|
|
))
|
|
|
|
.then(() => self.clients.claim())
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
self.addEventListener('fetch', ev => {
|
|
|
|
if (ev.request.method !== 'GET' || ev.request.url.startsWith(apiUrl)) return;
|
|
|
|
ev.respondWith(
|
|
|
|
caches.match(ev.request)
|
|
|
|
.then(response => {
|
|
|
|
return response || fetch(ev.request);
|
|
|
|
})
|
|
|
|
.catch(() => {
|
2020-01-29 20:37:25 +01:00
|
|
|
return caches.match('/');
|
2019-09-26 22:12:56 +02:00
|
|
|
})
|
|
|
|
);
|
2017-11-27 14:00:48 +01:00
|
|
|
});
|
|
|
|
|
2017-11-20 19:40:09 +01:00
|
|
|
// プッシュ通知を受け取ったとき
|
|
|
|
self.addEventListener('push', ev => {
|
|
|
|
// クライアント取得
|
2017-11-20 23:06:36 +01:00
|
|
|
ev.waitUntil(self.clients.matchAll({
|
2017-11-20 19:40:09 +01:00
|
|
|
includeUncontrolled: true
|
|
|
|
}).then(clients => {
|
|
|
|
// クライアントがあったらストリームに接続しているということなので通知しない
|
|
|
|
if (clients.length != 0) return;
|
|
|
|
|
|
|
|
const { type, body } = ev.data.json();
|
2017-11-20 23:06:36 +01:00
|
|
|
|
2017-11-20 21:09:45 +01:00
|
|
|
const n = composeNotification(type, body);
|
2017-11-20 23:06:36 +01:00
|
|
|
return self.registration.showNotification(n.title, {
|
|
|
|
body: n.body,
|
|
|
|
icon: n.icon,
|
|
|
|
});
|
|
|
|
}));
|
2017-11-20 19:40:09 +01:00
|
|
|
});
|