fix: invalidate home cache when updating read progress

- Add cache tags support to BaseApiService
- Tag home data with 'home-data' tag in HomeService
- Use revalidateTag('home-data', 'max') after read progress updates
- With 'max' profile: serve stale while fetching fresh in background
This commit is contained in:
2026-02-28 10:16:12 +01:00
parent 7523ec06e1
commit ecce0a9738
3 changed files with 39 additions and 18 deletions

View File

@@ -10,6 +10,8 @@ interface KomgaRequestInit extends RequestInit {
noJson?: boolean;
/** Next.js cache duration in seconds. Use false to disable cache, number for TTL */
revalidate?: number | false;
/** Cache tags for targeted invalidation */
tags?: string[];
}
interface KomgaUrlBuilder {
@@ -137,10 +139,12 @@ export abstract class BaseApiService {
connectTimeout: timeoutMs,
bodyTimeout: timeoutMs,
headersTimeout: timeoutMs,
// Next.js cache
next: options.revalidate !== undefined
? { revalidate: options.revalidate }
: undefined,
// Next.js cache with tags support
next: options.tags
? { tags: options.tags }
: options.revalidate !== undefined
? { revalidate: options.revalidate }
: undefined,
});
} catch (fetchError: any) {
// Gestion spécifique des erreurs DNS
@@ -158,10 +162,12 @@ export abstract class BaseApiService {
// Force IPv4 si IPv6 pose problème
// @ts-ignore
family: 4,
// Next.js cache
next: options.revalidate !== undefined
? { revalidate: options.revalidate }
: undefined,
// Next.js cache with tags support
next: options.tags
? { tags: options.tags }
: options.revalidate !== undefined
? { revalidate: options.revalidate }
: undefined,
});
} else if (fetchError?.cause?.code === "UND_ERR_CONNECT_TIMEOUT") {
// Retry automatique sur timeout de connexion (cold start)
@@ -175,10 +181,12 @@ export abstract class BaseApiService {
connectTimeout: timeoutMs,
bodyTimeout: timeoutMs,
headersTimeout: timeoutMs,
// Next.js cache
next: options.revalidate !== undefined
? { revalidate: options.revalidate }
: undefined,
// Next.js cache with tags support
next: options.tags
? { tags: options.tags }
: options.revalidate !== undefined
? { revalidate: options.revalidate }
: undefined,
});
} else {
throw fetchError;

View File

@@ -7,8 +7,12 @@ import { AppError } from "../../utils/errors";
export type { HomeData };
// Cache tag pour invalidation ciblée
const HOME_CACHE_TAG = "home-data";
export class HomeService extends BaseApiService {
private static readonly CACHE_TTL = 120; // 2 minutes
private static readonly CACHE_TTL = 120; // 2 minutes fallback
private static readonly CACHE_TAG = HOME_CACHE_TAG;
static async getHomeData(): Promise<HomeData> {
try {
@@ -25,7 +29,7 @@ export class HomeService extends BaseApiService {
},
},
{},
{ revalidate: this.CACHE_TTL }
{ revalidate: this.CACHE_TTL, tags: [this.CACHE_TAG] }
),
this.fetchFromApi<LibraryResponse<KomgaBook>>(
{
@@ -39,7 +43,7 @@ export class HomeService extends BaseApiService {
},
},
{},
{ revalidate: this.CACHE_TTL }
{ revalidate: this.CACHE_TTL, tags: [this.CACHE_TAG] }
),
this.fetchFromApi<LibraryResponse<KomgaBook>>(
{
@@ -51,7 +55,7 @@ export class HomeService extends BaseApiService {
},
},
{},
{ revalidate: this.CACHE_TTL }
{ revalidate: this.CACHE_TTL, tags: [this.CACHE_TAG] }
),
this.fetchFromApi<LibraryResponse<KomgaBook>>(
{
@@ -63,7 +67,7 @@ export class HomeService extends BaseApiService {
},
},
{},
{ revalidate: this.CACHE_TTL }
{ revalidate: this.CACHE_TTL, tags: [this.CACHE_TAG] }
),
this.fetchFromApi<LibraryResponse<KomgaSeries>>(
{
@@ -75,7 +79,7 @@ export class HomeService extends BaseApiService {
},
},
{},
{ revalidate: this.CACHE_TTL }
{ revalidate: this.CACHE_TTL, tags: [this.CACHE_TAG] }
),
]);