mirror of
https://github.com/GoogleChromeLabs/squoosh.git
synced 2025-11-15 01:59:57 +00:00
* Quick test * More testing * More testing * Removing transfer for now * Changing name so it's easier to tell them apart when installed * Disable minification to ease debugging * Adding navigate lock * lol oops * Add minifying back * Removing minification again, for debugging * Removing broadcast channel bits, to simplify the code * Revert "Removing broadcast channel bits, to simplify the code" This reverts commit 0b2a3ecf2986aae0dd65fdd1ddda2bd9e4e1eac7. * I think this fixes it * Refactor * Suppress flash of home screen during share target * Almost ready, so switching to real name * Removing log * Ahh yes the trailing comma thing * Removing use of BroadcastChannel * Reducing ternary
80 lines
2.1 KiB
TypeScript
80 lines
2.1 KiB
TypeScript
import {
|
|
cacheOrNetworkAndCache, cleanupCache, cacheOrNetwork, cacheBasics, cacheAdditionalProcessors,
|
|
serveShareTarget,
|
|
} from './util';
|
|
import { get } from 'idb-keyval';
|
|
|
|
// Give TypeScript the correct global.
|
|
declare var self: ServiceWorkerGlobalScope;
|
|
// This is populated by webpack.
|
|
declare var BUILD_ASSETS: string[];
|
|
|
|
const versionedCache = 'static-' + VERSION;
|
|
const dynamicCache = 'dynamic';
|
|
const expectedCaches = [versionedCache, dynamicCache];
|
|
|
|
self.addEventListener('install', (event) => {
|
|
event.waitUntil(async function () {
|
|
const promises = [];
|
|
promises.push(cacheBasics(versionedCache, BUILD_ASSETS));
|
|
|
|
// If the user has already interacted with the app, update the codecs too.
|
|
if (await get('user-interacted')) {
|
|
promises.push(cacheAdditionalProcessors(versionedCache, BUILD_ASSETS));
|
|
}
|
|
|
|
await Promise.all(promises);
|
|
}());
|
|
});
|
|
|
|
self.addEventListener('activate', (event) => {
|
|
self.clients.claim();
|
|
|
|
event.waitUntil(async function () {
|
|
// Remove old caches.
|
|
const promises = (await caches.keys()).map((cacheName) => {
|
|
if (!expectedCaches.includes(cacheName)) return caches.delete(cacheName);
|
|
});
|
|
|
|
await Promise.all<any>(promises);
|
|
}());
|
|
});
|
|
|
|
self.addEventListener('fetch', (event) => {
|
|
const url = new URL(event.request.url);
|
|
|
|
// Don't care about other-origin URLs
|
|
if (url.origin !== location.origin) return;
|
|
|
|
if (
|
|
url.pathname === '/' &&
|
|
url.searchParams.has('share-target') &&
|
|
event.request.method === 'POST'
|
|
) {
|
|
serveShareTarget(event);
|
|
return;
|
|
}
|
|
|
|
// We only care about GET from here on in.
|
|
if (event.request.method !== 'GET') return;
|
|
|
|
if (url.pathname.startsWith('/demo-') || url.pathname.startsWith('/wc-polyfill')) {
|
|
cacheOrNetworkAndCache(event, dynamicCache);
|
|
cleanupCache(event, dynamicCache, BUILD_ASSETS);
|
|
return;
|
|
}
|
|
|
|
cacheOrNetwork(event);
|
|
});
|
|
|
|
self.addEventListener('message', (event) => {
|
|
switch (event.data) {
|
|
case 'cache-all':
|
|
event.waitUntil(cacheAdditionalProcessors(versionedCache, BUILD_ASSETS));
|
|
break;
|
|
case 'skip-waiting':
|
|
self.skipWaiting();
|
|
break;
|
|
}
|
|
});
|