fix service worker caching issues hopefully

This commit is contained in:
Nolan Lawson 2018-03-25 21:31:40 -07:00
parent 412c7316bc
commit 62c82a05c0
3 changed files with 52 additions and 30 deletions

28
package-lock.json generated
View File

@ -8102,7 +8102,7 @@
} }
}, },
"sapper": { "sapper": {
"version": "github:nolanlawson/sapper#701bc3455a9387d76f8047e7152c8295c9516788", "version": "github:nolanlawson/sapper#2b21a7cfefaa9305354ce0ce0a51a83e9fe645a6",
"requires": { "requires": {
"chalk": "2.3.2", "chalk": "2.3.2",
"chokidar": "1.7.0", "chokidar": "1.7.0",
@ -8131,13 +8131,14 @@
} }
}, },
"ajv": { "ajv": {
"version": "6.3.0", "version": "6.4.0",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.3.0.tgz", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.4.0.tgz",
"integrity": "sha1-FlCkERTvAFdMrBC4Ay2PTBSBLac=", "integrity": "sha1-06/3jpJ3VJdx2vAWTP9ISCt1T8Y=",
"requires": { "requires": {
"fast-deep-equal": "1.0.0", "fast-deep-equal": "1.0.0",
"fast-json-stable-stringify": "2.0.0", "fast-json-stable-stringify": "2.0.0",
"json-schema-traverse": "0.3.1" "json-schema-traverse": "0.3.1",
"uri-js": "3.0.2"
} }
}, },
"ansi-styles": { "ansi-styles": {
@ -8336,7 +8337,7 @@
"requires": { "requires": {
"acorn": "5.3.0", "acorn": "5.3.0",
"acorn-dynamic-import": "2.0.2", "acorn-dynamic-import": "2.0.2",
"ajv": "6.3.0", "ajv": "6.4.0",
"ajv-keywords": "3.1.0", "ajv-keywords": "3.1.0",
"async": "2.6.0", "async": "2.6.0",
"enhanced-resolve": "3.4.1", "enhanced-resolve": "3.4.1",
@ -10230,6 +10231,21 @@
"resolved": "https://registry.npmjs.org/upath/-/upath-1.0.4.tgz", "resolved": "https://registry.npmjs.org/upath/-/upath-1.0.4.tgz",
"integrity": "sha512-d4SJySNBXDaQp+DPrziv3xGS6w3d2Xt69FijJr86zMPBy23JEloMCEOUBBzuN7xCtjLCnmB9tI/z7SBCahHBOw==" "integrity": "sha512-d4SJySNBXDaQp+DPrziv3xGS6w3d2Xt69FijJr86zMPBy23JEloMCEOUBBzuN7xCtjLCnmB9tI/z7SBCahHBOw=="
}, },
"uri-js": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/uri-js/-/uri-js-3.0.2.tgz",
"integrity": "sha1-+QuFhQf4HepNz7s8TD2/orVX+qo=",
"requires": {
"punycode": "2.1.0"
},
"dependencies": {
"punycode": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.0.tgz",
"integrity": "sha1-X4Y+3Im5bbCQdLrXlHvwkFbKTn0="
}
}
},
"urix": { "urix": {
"version": "0.1.0", "version": "0.1.0",
"resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz",

View File

@ -17,7 +17,7 @@ app.use(compression({ threshold: 0 }))
app.use(serveStatic('assets', { app.use(serveStatic('assets', {
setHeaders: (res) => { setHeaders: (res) => {
res.setHeader('Cache-Control', 'public,max-age=14400') res.setHeader('Cache-Control', 'public,max-age=600')
} }
})) }))

View File

@ -1,13 +1,19 @@
const timestamp = '__timestamp__' const timestamp = '__timestamp__'
const ASSETS = `cache${timestamp}` const ASSETS = `assets_${timestamp}`
const ON_DEMAND = `ondemand_${timestamp}`
// `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 assets = __assets__.map(file => file.startsWith('/') ? file : `/${file}`) const assets = __assets__
const toCache = __shell__.concat(assets) .map(file => file.startsWith('/') ? file : `/${file}`)
.filter(filename => !filename.endsWith('.map'))
.filter(filename => !filename.startsWith('/apple-icon')) .filter(filename => !filename.startsWith('/apple-icon'))
const cached = new Set(toCache)
// `shell` is an array of all the files generated by webpack
// also contains '/index.html' for some reason
const resources = __shell__
.filter(filename => !filename.endsWith('.map'))
const toCache = [].concat(assets).concat(resources)
const cacheSet = new Set(toCache)
// `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
@ -24,17 +30,19 @@ self.addEventListener('install', event => {
self.addEventListener('activate', event => { self.addEventListener('activate', event => {
event.waitUntil((async () => { event.waitUntil((async () => {
let keys = await caches.keys() let keys = await caches.keys()
// delete old caches
// delete old asset/ondemand caches
for (let key of keys) { for (let key of keys) {
if (key !== ASSETS) { if (key !== ASSETS && key !== ON_DEMAND) {
await caches.delete(key) await caches.delete(key)
} }
} }
await self.clients.claim() await self.clients.claim()
})()) })())
}) })
const CACHE_FIRST = [ const ON_DEMAND_PATHS = [
'/system/accounts/avatars' '/system/accounts/avatars'
] ]
@ -48,26 +56,24 @@ self.addEventListener('fetch', event => {
} }
event.respondWith((async () => { event.respondWith((async () => {
// always serve assets and webpack-generated files from cache let sameOrigin = url.origin === self.origin
if (url.origin === self.origin && cached.has(url.pathname)) {
let cache = await caches.open(ASSETS) // always serve webpack-generated resources and
return cache.match(req) // assets from the cache
if (sameOrigin && cacheSet.has(url.pathname)) {
return caches.match(req)
} }
// for pages, you might want to serve a shell `index.html` file, // for routes, serve the /index.html file from the most recent
// which Sapper has generated for you. It's not right for every // assets cache
// app, but if it's right for yours then uncomment this section if (sameOrigin && routes.find(route => route.pattern.test(url.pathname))) {
return caches.match('/index.html')
if (url.origin === self.origin &&
routes.find(route => route.pattern.test(url.pathname))) {
let cache = await caches.open(ASSETS)
return cache.match('/index.html')
} }
// For these GET requests, go cache-first // For these GET requests, go cache-first
if (req.method === 'GET' && if (req.method === 'GET' &&
CACHE_FIRST.some(pattern => url.pathname.startsWith(pattern))) { ON_DEMAND_PATHS.some(pattern => url.pathname.startsWith(pattern))) {
let cache = await caches.open(`offline${timestamp}`) let cache = await caches.open(ON_DEMAND)
let response = await cache.match(req) let response = await cache.match(req)
if (response) { if (response) {
// update asynchronously // update asynchronously