tweak service worker

This commit is contained in:
Nolan Lawson 2018-01-14 14:54:26 -08:00
parent f258d4ca07
commit 0b442bb2a6

View file

@ -1,14 +1,14 @@
const timestamp = '__timestamp__'; const timestamp = '__timestamp__'
const ASSETS = `cache${timestamp}`; const ASSETS = `cache${timestamp}`
// `shell` is an array of all the files generated by webpack, // `shell` is an array of all the files generated by webpack,
// `assets` is an array of everything in the `assets` directory // `assets` is an array of everything in the `assets` directory
const to_cache = __shell__.concat(__assets__); const to_cache = __shell__.concat(__assets__)
const cached = new Set(to_cache); const cached = new Set(to_cache)
// `routes` is an array of `{ pattern: RegExp }` objects that // `routes` is an array of `{ pattern: RegExp }` objects that
// match the pages in your app // match the pages in your app
const routes = __routes__; const routes = __routes__
self.addEventListener('install', event => { self.addEventListener('install', event => {
event.waitUntil( event.waitUntil(
@ -16,45 +16,49 @@ self.addEventListener('install', event => {
.open(ASSETS) .open(ASSETS)
.then(cache => cache.addAll(to_cache)) .then(cache => cache.addAll(to_cache))
.then(() => { .then(() => {
self.skipWaiting(); self.skipWaiting()
}) })
); )
}); })
self.addEventListener('activate', event => { self.addEventListener('activate', event => {
event.waitUntil( event.waitUntil(
caches.keys().then(async keys => { caches.keys().then(async keys => {
// delete old caches // delete old caches
for (const key of keys) { for (const key of keys) {
if (key !== ASSETS) await caches.delete(key); if (key !== ASSETS) {
await caches.delete(key)
}
} }
await self.clients.claim(); await self.clients.claim()
}) })
); )
}); })
self.addEventListener('fetch', event => { self.addEventListener('fetch', event => {
const url = new URL(event.request.url); const url = new URL(event.request.url)
// don't try to handle e.g. data: URIs // don't try to handle e.g. data: URIs
if (!url.protocol.startsWith('http')) return; if (!url.protocol.startsWith('http')) {
return
}
// always serve assets and webpack-generated files from cache // always serve assets and webpack-generated files from cache
if (cached.has(url.pathname)) { if (cached.has(url.pathname)) {
event.respondWith(caches.match(event.request)); event.respondWith(caches.match(event.request))
return; return
} }
// for pages, you might want to serve a shell `index.html` file, // for pages, you might want to serve a shell `index.html` file,
// which Sapper has generated for you. It's not right for every // which Sapper has generated for you. It's not right for every
// app, but if it's right for yours then uncomment this section // app, but if it's right for yours then uncomment this section
/*
if (url.origin === self.origin && routes.find(route => route.pattern.test(url.pathname))) { if (url.origin === self.origin && routes.find(route => route.pattern.test(url.pathname))) {
event.respondWith(caches.match('/index.html')); event.respondWith(caches.match('/index.html'));
return; return;
} }
*/
// for everything else, try the network first, falling back to // for everything else, try the network first, falling back to
// cache if the user is offline. (If the pages never change, you // cache if the user is offline. (If the pages never change, you
@ -64,15 +68,17 @@ self.addEventListener('fetch', event => {
.open(`offline${timestamp}`) .open(`offline${timestamp}`)
.then(async cache => { .then(async cache => {
try { try {
const response = await fetch(event.request); const response = await fetch(event.request)
cache.put(event.request, response.clone()); cache.put(event.request, response.clone())
return response; return response
} catch(err) { } catch (err) {
const response = await cache.match(event.request); const response = await cache.match(event.request)
if (response) return response; if (response) {
return response
}
throw err; throw err
} }
}) })
); )
}); })