mirror of https://github.com/elk-zone/elk.git
123 lines
3.7 KiB
TypeScript
123 lines
3.7 KiB
TypeScript
/// <reference lib="WebWorker" />
|
|
/// <reference types="vite/client" />
|
|
import { cleanupOutdatedCaches, createHandlerBoundToURL, precacheAndRoute } from 'workbox-precaching'
|
|
import { NavigationRoute, registerRoute } from 'workbox-routing'
|
|
import { CacheableResponsePlugin } from 'workbox-cacheable-response'
|
|
import { NetworkFirst, StaleWhileRevalidate } from 'workbox-strategies'
|
|
import { ExpirationPlugin } from 'workbox-expiration'
|
|
|
|
import { onNotificationClick, onPush } from './web-push-notifications'
|
|
import { onShareTarget } from './share-target'
|
|
|
|
declare const self: ServiceWorkerGlobalScope
|
|
|
|
self.addEventListener('message', (event) => {
|
|
if (event.data && event.data.type === 'SKIP_WAITING')
|
|
self.skipWaiting()
|
|
})
|
|
|
|
const entries = self.__WB_MANIFEST
|
|
if (import.meta.env.DEV)
|
|
entries.push({ url: '/', revision: Math.random().toString() })
|
|
|
|
precacheAndRoute(entries)
|
|
|
|
// clean old assets
|
|
cleanupOutdatedCaches()
|
|
|
|
// allow only fallback in dev: we don't want to cache anything
|
|
let allowlist: undefined | RegExp[]
|
|
if (import.meta.env.DEV)
|
|
allowlist = [/^\/$/]
|
|
|
|
// deny api and server page calls
|
|
let denylist: undefined | RegExp[]
|
|
if (import.meta.env.PROD) {
|
|
denylist = [
|
|
/^\/api\//,
|
|
/^\/login\//,
|
|
/^\/oauth\//,
|
|
/^\/signin\//,
|
|
/^\/web-share-target\//,
|
|
// exclude shiki: has its own cache
|
|
/^\/shiki\//,
|
|
// exclude shiki: has its own cache
|
|
/^\/emojis\//,
|
|
// exclude sw: if the user navigates to it, fallback to index.html
|
|
/^\/sw.js$/,
|
|
// exclude webmanifest: has its own cache
|
|
/^\/manifest-(.*).webmanifest$/,
|
|
]
|
|
}
|
|
|
|
// only cache pages and external assets on local build + start or in production
|
|
if (import.meta.env.PROD) {
|
|
// include webmanifest cache
|
|
registerRoute(
|
|
({ request, sameOrigin }) =>
|
|
sameOrigin && request.destination === 'manifest',
|
|
new NetworkFirst({
|
|
cacheName: 'elk-webmanifest',
|
|
plugins: [
|
|
new CacheableResponsePlugin({ statuses: [200] }),
|
|
// we only need a few entries
|
|
new ExpirationPlugin({ maxEntries: 100 }),
|
|
],
|
|
}),
|
|
)
|
|
// include shiki cache
|
|
registerRoute(
|
|
({ sameOrigin, url }) =>
|
|
sameOrigin && url.pathname.startsWith('/shiki/'),
|
|
new StaleWhileRevalidate({
|
|
cacheName: 'elk-shiki',
|
|
plugins: [
|
|
new CacheableResponsePlugin({ statuses: [200] }),
|
|
// 365 days max
|
|
new ExpirationPlugin({ purgeOnQuotaError: true, maxAgeSeconds: 60 * 60 * 24 * 365 }),
|
|
],
|
|
}),
|
|
)
|
|
// include emoji icons
|
|
registerRoute(
|
|
({ sameOrigin, request, url }) =>
|
|
sameOrigin
|
|
&& request.destination === 'image'
|
|
&& url.pathname.startsWith('/emojis/'),
|
|
new StaleWhileRevalidate({
|
|
cacheName: 'elk-emojis',
|
|
plugins: [
|
|
new CacheableResponsePlugin({ statuses: [200] }),
|
|
// 15 days max
|
|
new ExpirationPlugin({ purgeOnQuotaError: true, maxAgeSeconds: 60 * 60 * 24 * 15 }),
|
|
],
|
|
}),
|
|
)
|
|
// external assets: rn avatars from mas.to
|
|
// requires <img crossorigin="anonymous".../> and http header: Allow-Control-Allow-Origin: *
|
|
/*
|
|
registerRoute(
|
|
({ sameOrigin, request }) => !sameOrigin && request.destination === 'image',
|
|
new NetworkFirst({
|
|
cacheName: 'elk-external-media',
|
|
plugins: [
|
|
// add opaque responses?
|
|
new CacheableResponsePlugin({ statuses: [/!* 0, *!/200] }),
|
|
// 15 days max
|
|
new ExpirationPlugin({ maxAgeSeconds: 60 * 60 * 24 * 15 }),
|
|
],
|
|
}),
|
|
)
|
|
*/
|
|
}
|
|
|
|
// to allow work offline
|
|
registerRoute(new NavigationRoute(
|
|
createHandlerBoundToURL('/'),
|
|
{ allowlist, denylist },
|
|
))
|
|
|
|
self.addEventListener('push', onPush)
|
|
self.addEventListener('notificationclick', onNotificationClick)
|
|
self.addEventListener('fetch', onShareTarget)
|