Split service worker image cache into multiple

This commit is contained in:
schroda
2026-01-18 16:34:20 +01:00
parent 25b8c85ef2
commit 7b13c1dcc1
3 changed files with 99 additions and 22 deletions

View File

@@ -6,12 +6,41 @@
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
const CACHE_NAME = 'image-cache';
import { defaultPromiseErrorHandler } from '@/lib/DefaultPromiseErrorHandler.ts';
// !!! IMPORTANT !!! - Update along with vite.config.ts workbox config
export enum ImageCacheKey {
OTHER = 'image-cache-other',
EXTENSION_ICONS = 'image-cache-extension-icons',
MANGA_THUMBNAILS = 'image-cache-manga-thumbnails',
CHAPTER_PAGES = 'image-cache-chapter-pages',
}
const IMAGE_CACHE_KEYS = Object.values(ImageCacheKey);
caches.delete('image-cache').catch(defaultPromiseErrorHandler('ImageCache: delete removed "image-cache"'));
export class ImageCache {
static async has(url: string): Promise<boolean> {
// !!! IMPORTANT !!! - Update along with vite.config.ts workbox config
static getKeyFor(url: string): ImageCacheKey {
if (url.match(/\/chapter\/[0-9]+\/page\/[0-9]+/g)) {
return ImageCacheKey.CHAPTER_PAGES;
}
if (url.match(/\/manga\/[0-9]+\/thumbnail/g)) {
return ImageCacheKey.MANGA_THUMBNAILS;
}
if (url.includes('/extension/icon/')) {
return ImageCacheKey.EXTENSION_ICONS;
}
return ImageCacheKey.OTHER;
}
static async has(url: string, key: ImageCacheKey = this.getKeyFor(url)): Promise<boolean> {
try {
const cache = await caches.open(CACHE_NAME);
const cache = await caches.open(key);
const response = await cache.match(url, { ignoreVary: true });
return response !== undefined;
@@ -20,9 +49,9 @@ export class ImageCache {
}
}
static async get(url: string): Promise<Response | null> {
static async get(url: string, key: ImageCacheKey = this.getKeyFor(url)): Promise<Response | null> {
try {
const cache = await caches.open(CACHE_NAME);
const cache = await caches.open(key);
const response = await cache.match(url);
return response || null;
@@ -31,10 +60,14 @@ export class ImageCache {
}
}
static async clear(): Promise<void> {
const cache = await caches.open(CACHE_NAME);
const keys = await cache.keys();
static async clear(key: ImageCacheKey): Promise<void> {
const cache = await caches.open(key);
const imageKeys = await cache.keys();
await Promise.all(keys.map((key) => cache.delete(key)));
await Promise.all(imageKeys.map((imageKey) => cache.delete(imageKey)));
}
static async clearAll(): Promise<void> {
IMAGE_CACHE_KEYS.forEach(ImageCache.clear);
}
}