Some checks failed
CI / go (push) Waiting to run
CI / docker (push) Waiting to run
CI / lint-go (push) Waiting to run
CI / lint-docs (push) Waiting to run
CI / check-paperclip (push) Waiting to run
Deploy static site / Deploy to GitHub Pages (push) Has been cancelled
Deploy static site / Deploy via Docker to hatch.surf (push) Has been cancelled
Resolved conflicts by taking GitHub versions for: - .dockerignore, .gitignore, Dockerfile, README.md, docker-compose.yml Kept deploy.sh updated to: - Pull from GitHub (primary source) - Push to Gitea (push-mirror) - Build from site/ directory (GitHub structure) Co-Authored-By: Paperclip <noreply@paperclip.ing>
45 lines
1.3 KiB
TypeScript
45 lines
1.3 KiB
TypeScript
import type { ComponentType } from 'react';
|
|
import type { RouteLoader } from './route-loader';
|
|
import type { ProxyMatcher } from '../build/analysis/get-page-static-info';
|
|
declare global {
|
|
interface Window {
|
|
__DEV_MIDDLEWARE_MATCHERS?: ProxyMatcher[];
|
|
__DEV_PAGES_MANIFEST?: {
|
|
pages: string[];
|
|
};
|
|
__SSG_MANIFEST_CB?: () => void;
|
|
__SSG_MANIFEST?: Set<string>;
|
|
}
|
|
}
|
|
export type StyleSheetTuple = {
|
|
href: string;
|
|
text: string;
|
|
};
|
|
export type GoodPageCache = {
|
|
page: ComponentType;
|
|
mod: any;
|
|
styleSheets: StyleSheetTuple[];
|
|
};
|
|
export default class PageLoader {
|
|
private buildId;
|
|
private assetPrefix;
|
|
private promisedSsgManifest;
|
|
private promisedDevPagesManifest?;
|
|
private promisedMiddlewareMatchers?;
|
|
routeLoader: RouteLoader;
|
|
constructor(buildId: string, assetPrefix: string);
|
|
getPageList(): string[] | Promise<string[]>;
|
|
getMiddleware(): ProxyMatcher[] | Promise<ProxyMatcher[]> | undefined;
|
|
getDataHref(params: {
|
|
asPath: string;
|
|
href: string;
|
|
locale?: string | false;
|
|
skipInterpolation?: boolean;
|
|
}): string;
|
|
_isSsg(
|
|
/** the route (file-system path) */
|
|
route: string): Promise<boolean>;
|
|
loadPage(route: string): Promise<GoodPageCache>;
|
|
prefetch(route: string): Promise<void>;
|
|
}
|