forked from external-repos/squoosh
Add share target (#469)
* 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
This commit is contained in:
115
src/lib/sw-bridge.ts
Normal file
115
src/lib/sw-bridge.ts
Normal file
@@ -0,0 +1,115 @@
|
||||
import { get, set } from 'idb-keyval';
|
||||
|
||||
// Just for TypeScript
|
||||
import SnackBarElement from './SnackBar';
|
||||
|
||||
/** Tell the service worker to skip waiting */
|
||||
async function skipWaiting() {
|
||||
const reg = await navigator.serviceWorker.getRegistration();
|
||||
if (!reg || !reg.waiting) return;
|
||||
reg.waiting.postMessage('skip-waiting');
|
||||
}
|
||||
|
||||
/** Find the service worker that's 'active' or closest to 'active' */
|
||||
async function getMostActiveServiceWorker() {
|
||||
const reg = await navigator.serviceWorker.getRegistration();
|
||||
if (!reg) return null;
|
||||
return reg.active || reg.waiting || reg.installing;
|
||||
}
|
||||
|
||||
/** Wait for an installing worker */
|
||||
async function installingWorker(reg: ServiceWorkerRegistration): Promise<ServiceWorker> {
|
||||
if (reg.installing) return reg.installing;
|
||||
return new Promise<ServiceWorker>((resolve) => {
|
||||
reg.addEventListener(
|
||||
'updatefound',
|
||||
() => resolve(reg.installing!),
|
||||
{ once: true },
|
||||
);
|
||||
});
|
||||
}
|
||||
|
||||
/** Wait a service worker to become waiting */
|
||||
async function updateReady(reg: ServiceWorkerRegistration): Promise<void> {
|
||||
if (reg.waiting) return;
|
||||
const installing = await installingWorker(reg);
|
||||
return new Promise<void>((resolve) => {
|
||||
installing.addEventListener('statechange', () => {
|
||||
if (installing.state === 'installed') resolve();
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
/** Wait for a shared image */
|
||||
export function getSharedImage(): Promise<File> {
|
||||
return new Promise((resolve) => {
|
||||
const onmessage = (event: MessageEvent) => {
|
||||
if (event.data.action !== 'load-image') return;
|
||||
resolve(event.data.file);
|
||||
navigator.serviceWorker.removeEventListener('message', onmessage);
|
||||
};
|
||||
|
||||
navigator.serviceWorker.addEventListener('message', onmessage);
|
||||
|
||||
// This message is picked up by the service worker - it's how it knows we're ready to receive
|
||||
// the file.
|
||||
navigator.serviceWorker.controller!.postMessage('share-ready');
|
||||
});
|
||||
}
|
||||
|
||||
/** Set up the service worker and monitor changes */
|
||||
export async function offliner(showSnack: SnackBarElement['showSnackbar']) {
|
||||
// This needs to be a typeof because Webpack.
|
||||
if (typeof PRERENDER === 'boolean') return;
|
||||
|
||||
if (process.env.NODE_ENV === 'production') {
|
||||
navigator.serviceWorker.register('../sw');
|
||||
}
|
||||
|
||||
const hasController = !!navigator.serviceWorker.controller;
|
||||
|
||||
// Look for changes in the controller
|
||||
navigator.serviceWorker.addEventListener('controllerchange', async () => {
|
||||
// Is it the first install?
|
||||
if (!hasController) {
|
||||
showSnack('Ready to work offline', { timeout: 5000 });
|
||||
return;
|
||||
}
|
||||
|
||||
// Otherwise reload (the user will have agreed to this).
|
||||
location.reload();
|
||||
});
|
||||
|
||||
// If we don't have a controller, we don't need to check for updates – we've just loaded from the
|
||||
// network.
|
||||
if (!hasController) return;
|
||||
|
||||
const reg = await navigator.serviceWorker.getRegistration();
|
||||
// Service worker not registered yet.
|
||||
if (!reg) return;
|
||||
// Look for updates
|
||||
await updateReady(reg);
|
||||
|
||||
// Ask the user if they want to update.
|
||||
const result = await showSnack('Update available', {
|
||||
actions: ['reload', 'dismiss'],
|
||||
});
|
||||
|
||||
// Tell the waiting worker to activate, this will change the controller and cause a reload (see
|
||||
// 'controllerchange')
|
||||
if (result === 'reload') skipWaiting();
|
||||
}
|
||||
|
||||
/**
|
||||
* Tell the service worker the main app has loaded. If it's the first time the service worker has
|
||||
* heard about this, cache the heavier assets like codecs.
|
||||
*/
|
||||
export async function mainAppLoaded() {
|
||||
// If the user has already interacted, no need to tell the service worker anything.
|
||||
const userInteracted = await get<boolean | undefined>('user-interacted');
|
||||
if (userInteracted) return;
|
||||
set('user-interacted', true);
|
||||
const serviceWorker = await getMostActiveServiceWorker();
|
||||
if (!serviceWorker) return; // Service worker not installing yet.
|
||||
serviceWorker.postMessage('cache-all');
|
||||
}
|
||||
Reference in New Issue
Block a user