- Full-featured monitoring dashboard for local web apps - Real-time status tracking with uptime percentages - Visual sparklines for status history - Add/Edit/Delete apps dynamically - Categories and color coding - Auto-refresh every 30 seconds - API endpoints for apps and status management
92 lines
3.8 KiB
TypeScript
92 lines
3.8 KiB
TypeScript
import type { CacheFs } from '../../../shared/lib/utils';
|
|
import type { PrerenderManifest } from '../../../build';
|
|
import { type IncrementalCacheValue, type IncrementalCacheEntry, type IncrementalCache as IncrementalCacheType, IncrementalCacheKind } from '../../response-cache';
|
|
import type { Revalidate } from '../revalidate';
|
|
import type { DeepReadonly } from '../../../shared/lib/deep-readonly';
|
|
export interface CacheHandlerContext {
|
|
fs?: CacheFs;
|
|
dev?: boolean;
|
|
flushToDisk?: boolean;
|
|
serverDistDir?: string;
|
|
maxMemoryCacheSize?: number;
|
|
fetchCacheKeyPrefix?: string;
|
|
prerenderManifest?: PrerenderManifest;
|
|
revalidatedTags: string[];
|
|
_requestHeaders: IncrementalCache['requestHeaders'];
|
|
}
|
|
export interface CacheHandlerValue {
|
|
lastModified?: number;
|
|
age?: number;
|
|
cacheState?: string;
|
|
value: IncrementalCacheValue | null;
|
|
}
|
|
export declare class CacheHandler {
|
|
constructor(_ctx: CacheHandlerContext);
|
|
get(..._args: Parameters<IncrementalCache['get']>): Promise<CacheHandlerValue | null>;
|
|
set(..._args: Parameters<IncrementalCache['set']>): Promise<void>;
|
|
revalidateTag(..._args: Parameters<IncrementalCache['revalidateTag']>): Promise<void>;
|
|
resetRequestCache(): void;
|
|
}
|
|
export declare class IncrementalCache implements IncrementalCacheType {
|
|
readonly dev?: boolean;
|
|
readonly disableForTestmode?: boolean;
|
|
readonly cacheHandler?: CacheHandler;
|
|
readonly hasCustomCacheHandler: boolean;
|
|
readonly prerenderManifest: DeepReadonly<PrerenderManifest>;
|
|
readonly requestHeaders: Record<string, undefined | string | string[]>;
|
|
readonly requestProtocol?: 'http' | 'https';
|
|
readonly allowedRevalidateHeaderKeys?: string[];
|
|
readonly minimalMode?: boolean;
|
|
readonly fetchCacheKeyPrefix?: string;
|
|
readonly revalidatedTags?: string[];
|
|
readonly isOnDemandRevalidate?: boolean;
|
|
readonly hasDynamicIO?: boolean;
|
|
private readonly locks;
|
|
/**
|
|
* The revalidate timings for routes. This will source the timings from the
|
|
* prerender manifest until the in-memory cache is updated with new timings.
|
|
*/
|
|
private readonly revalidateTimings;
|
|
constructor({ fs, dev, dynamicIO, flushToDisk, fetchCache, minimalMode, serverDistDir, requestHeaders, requestProtocol, maxMemoryCacheSize, getPrerenderManifest, fetchCacheKeyPrefix, CurCacheHandler, allowedRevalidateHeaderKeys, }: {
|
|
fs?: CacheFs;
|
|
dev: boolean;
|
|
dynamicIO: boolean;
|
|
fetchCache?: boolean;
|
|
minimalMode?: boolean;
|
|
serverDistDir?: string;
|
|
flushToDisk?: boolean;
|
|
requestProtocol?: 'http' | 'https';
|
|
allowedRevalidateHeaderKeys?: string[];
|
|
requestHeaders: IncrementalCache['requestHeaders'];
|
|
maxMemoryCacheSize?: number;
|
|
getPrerenderManifest: () => DeepReadonly<PrerenderManifest>;
|
|
fetchCacheKeyPrefix?: string;
|
|
CurCacheHandler?: typeof CacheHandler;
|
|
});
|
|
private calculateRevalidate;
|
|
_getPathname(pathname: string, fetchCache?: boolean): string;
|
|
resetRequestCache(): void;
|
|
lock(cacheKey: string): Promise<() => Promise<void>>;
|
|
revalidateTag(tags: string | string[]): Promise<void>;
|
|
generateCacheKey(url: string, init?: RequestInit | Request): Promise<string>;
|
|
get(cacheKey: string, ctx: {
|
|
kind: IncrementalCacheKind;
|
|
revalidate?: Revalidate;
|
|
fetchUrl?: string;
|
|
fetchIdx?: number;
|
|
tags?: string[];
|
|
softTags?: string[];
|
|
isRoutePPREnabled?: boolean;
|
|
isFallback: boolean | undefined;
|
|
}): Promise<IncrementalCacheEntry | null>;
|
|
set(pathname: string, data: IncrementalCacheValue | null, ctx: {
|
|
revalidate?: Revalidate;
|
|
fetchCache?: boolean;
|
|
fetchUrl?: string;
|
|
fetchIdx?: number;
|
|
tags?: string[];
|
|
isRoutePPREnabled?: boolean;
|
|
isFallback?: boolean;
|
|
}): Promise<void>;
|
|
}
|