mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-22 20:23:49 +01:00
Cache
This commit is contained in:
parent
e2a22fc968
commit
908c1dc7d6
@ -4,9 +4,39 @@
|
|||||||
|
|
||||||
import composeNotification from './common/scripts/compose-notification';
|
import composeNotification from './common/scripts/compose-notification';
|
||||||
|
|
||||||
|
// キャッシュするリソース
|
||||||
|
const cachee = [
|
||||||
|
'/'
|
||||||
|
];
|
||||||
|
|
||||||
// インストールされたとき
|
// インストールされたとき
|
||||||
self.addEventListener('install', () => {
|
self.addEventListener('install', ev => {
|
||||||
console.info('installed');
|
console.info('installed');
|
||||||
|
|
||||||
|
// Cache
|
||||||
|
ev.waitUntil(caches.open(_VERSION_).then(cache => cache.addAll(cachee)));
|
||||||
|
});
|
||||||
|
|
||||||
|
// アクティベートされたとき
|
||||||
|
self.addEventListener('activate', ev => {
|
||||||
|
// Clean up old caches
|
||||||
|
ev.waitUntil(
|
||||||
|
caches.keys().then(keys => Promise.all(
|
||||||
|
keys
|
||||||
|
.filter(key => key != _VERSION_)
|
||||||
|
.map(key => caches.delete(key))
|
||||||
|
))
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
// リクエストが発生したとき
|
||||||
|
self.addEventListener('fetch', ev => {
|
||||||
|
ev.respondWith(
|
||||||
|
// キャッシュがあるか確認してあればそれを返す
|
||||||
|
caches.match(ev.request).then(response =>
|
||||||
|
response || fetch(ev.request)
|
||||||
|
)
|
||||||
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
// プッシュ通知を受け取ったとき
|
// プッシュ通知を受け取ったとき
|
||||||
|
Loading…
Reference in New Issue
Block a user