-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
👽 manifest updates, add service worker
- Loading branch information
1 parent
549d211
commit 8816634
Showing
8 changed files
with
81 additions
and
47 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
import { build, files, version } from '$service-worker' | ||
|
||
const CACHE = `cache-${version}` | ||
|
||
const ASSETS = [...build, ...files] | ||
|
||
self.addEventListener('install', (event) => { | ||
async function addFilesToCache() { | ||
const cache = await caches.open(CACHE) | ||
await cache.addAll(ASSETS) | ||
} | ||
|
||
event.waitUntil(addFilesToCache()) | ||
}) | ||
|
||
self.addEventListener('activate', (event) => { | ||
// Remove previous cached data from disk | ||
async function deleteOldCaches() { | ||
for (const key of await caches.keys()) { | ||
if (key !== CACHE) await caches.delete(key) | ||
} | ||
} | ||
|
||
event.waitUntil(deleteOldCaches()) | ||
}) | ||
|
||
self.addEventListener('fetch', (event) => { | ||
// ignore POST requests etc | ||
if (event.request.method !== 'GET') return | ||
|
||
async function respond() { | ||
const url = new URL(event.request.url) | ||
const cache = await caches.open(CACHE) | ||
|
||
if (ASSETS.includes(url.pathname)) { | ||
const response = await cache.match(url.pathname) | ||
|
||
if (response) { | ||
return response | ||
} | ||
} | ||
|
||
// for everything else, try the network first, but | ||
// fall back to the cache if we're offline | ||
try { | ||
const response = await fetch(event.request) | ||
|
||
// if we're offline, fetch can return a value that is not a Response | ||
// instead of throwing - and we can't pass this non-Response to respondWith | ||
if (!(response instanceof Response)) { | ||
throw new Error('invalid response from fetch') | ||
} | ||
|
||
if (response.status === 200) { | ||
await cache.put(event.request, response.clone()) | ||
} | ||
|
||
return response | ||
} catch (err) { | ||
const response = await cache.match(event.request) | ||
|
||
if (response) { | ||
return response | ||
} | ||
|
||
// if there's no cache, then just error out | ||
// as there is nothing we can do to respond to this request | ||
throw err | ||
} | ||
} | ||
|
||
event.respondWith(respond()) | ||
}) |
Binary file not shown.
This file contains 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