Last active
December 21, 2020 16:38
-
-
Save scsskid/db6745c01d96ee021a804190e6b506b8 to your computer and use it in GitHub Desktop.
[Random Service Worker Examples] #serviceworker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//src: https://github.com/tretapey/svelte-pwa/blob/master/public/service-worker.js | |
'use strict'; | |
// Update cache names any time any of the cached files change. | |
const CACHE_NAME = 'static-cache-v1'; | |
// Add list of files to cache here. | |
const FILES_TO_CACHE = [ | |
'/offline.html', | |
]; | |
self.addEventListener('install', (evt) => { | |
console.log('[ServiceWorker] Install'); | |
evt.waitUntil( | |
caches.open(CACHE_NAME).then((cache) => { | |
console.log('[ServiceWorker] Pre-caching offline page'); | |
return cache.addAll(FILES_TO_CACHE); | |
}) | |
); | |
self.skipWaiting(); | |
}); | |
self.addEventListener('activate', (evt) => { | |
console.log('[ServiceWorker] Activate'); | |
// Remove previous cached data from disk. | |
evt.waitUntil( | |
caches.keys().then((keyList) => { | |
return Promise.all(keyList.map((key) => { | |
if (key !== CACHE_NAME) { | |
console.log('[ServiceWorker] Removing old cache', key); | |
return caches.delete(key); | |
} | |
})); | |
}) | |
); | |
self.clients.claim(); | |
}); | |
self.addEventListener('fetch', (evt) => { | |
console.log('[ServiceWorker] Fetch', evt.request.url); | |
// Add fetch event handler here. | |
if (evt.request.mode !== 'navigate') { | |
// Not a page navigation, bail. | |
return; | |
} | |
evt.respondWith( | |
fetch(evt.request) | |
.catch(() => { | |
return caches.open(CACHE_NAME) | |
.then((cache) => { | |
return cache.match('offline.html'); | |
}); | |
}) | |
); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment