mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-14 17:41:33 +03:00
83 lines
2.5 KiB
JavaScript
83 lines
2.5 KiB
JavaScript
import { registerRoute } from 'workbox-routing';
|
|
import {
|
|
NetworkFirst,
|
|
StaleWhileRevalidate,
|
|
CacheFirst,
|
|
} from 'workbox-strategies';
|
|
|
|
// Used for filtering matches based on status code, header, or both
|
|
import { CacheableResponsePlugin } from 'workbox-cacheable-response';
|
|
// Used to limit entries in cache, remove entries after a certain period of time
|
|
import { ExpirationPlugin } from 'workbox-expiration';
|
|
|
|
|
|
// generate a different sw for every build, to bust cache properly
|
|
const hash = process.env.LANDSCAPE_SHORTHASH;
|
|
|
|
self.addEventListener("install", ev => {
|
|
self.skipWaiting();
|
|
});
|
|
|
|
self.addEventListener('activate', ev => {
|
|
ev.waitUntil(clients.claim());
|
|
});
|
|
|
|
// Cache page navigations (html) with a Network First strategy
|
|
registerRoute(
|
|
// Check to see if the request is a navigation to a new page
|
|
({ request }) => request.mode === 'navigate',
|
|
// Use a Network First caching strategy
|
|
new NetworkFirst({
|
|
// Put all cached files in a cache named 'pages'
|
|
cacheName: 'pages',
|
|
plugins: [
|
|
// Ensure that only requests that result in a 200 status are cached
|
|
new CacheableResponsePlugin({
|
|
statuses: [200],
|
|
}),
|
|
],
|
|
}),
|
|
);
|
|
|
|
// Cache CSS, JS, and Web Worker requests with a Stale While Revalidate strategy
|
|
registerRoute(
|
|
// Check to see if the request's destination is style for stylesheets, script for JavaScript, or worker for web worker
|
|
({ request }) =>
|
|
request.destination === 'style' ||
|
|
request.destination === 'script' ||
|
|
request.destination === 'worker',
|
|
// Use a Stale While Revalidate caching strategy
|
|
new StaleWhileRevalidate({
|
|
// Put all cached files in a cache named 'assets'
|
|
cacheName: 'assets',
|
|
plugins: [
|
|
// Ensure that only requests that result in a 200 status are cached
|
|
new CacheableResponsePlugin({
|
|
statuses: [200],
|
|
}),
|
|
],
|
|
}),
|
|
);
|
|
|
|
// Cache images with a Cache First strategy
|
|
registerRoute(
|
|
// Check to see if the request's destination is style for an image
|
|
({ request }) => request.destination === 'image',
|
|
// Use a Cache First caching strategy
|
|
new CacheFirst({
|
|
// Put all cached files in a cache named 'images'
|
|
cacheName: 'images',
|
|
plugins: [
|
|
// Ensure that only requests that result in a 200 status are cached
|
|
new CacheableResponsePlugin({
|
|
statuses: [200],
|
|
}),
|
|
// Don't cache more than 50 items, and expire them after 30 days
|
|
new ExpirationPlugin({
|
|
maxEntries: 50,
|
|
maxAgeSeconds: 60 * 60 * 24 * 30, // 30 Days
|
|
}),
|
|
],
|
|
}),
|
|
);
|