- Delete old Vite+Svelte frontend - Initialize new SvelteKit project with TypeScript - Configure Tailwind CSS v4 + DaisyUI - Implement JWT authentication with auto-refresh - Create login page with form validation (Zod) - Add protected route guards - Update Docker configuration for single-stage build - Add E2E tests with Playwright (6/11 passing) - Fix Svelte 5 reactivity with $state() runes Known issues: - 5 E2E tests failing (timing/async issues) - Token refresh implementation needs debugging - Validation error display timing
117 lines
3.4 KiB
TypeScript
117 lines
3.4 KiB
TypeScript
import VirtualConsolePrinter from '../../console/VirtualConsolePrinter.cjs';
|
|
import DetachedBrowserFrame from './DetachedBrowserFrame.cjs';
|
|
import DetachedBrowserContext from './DetachedBrowserContext.cjs';
|
|
import IBrowserPage from '../types/IBrowserPage.cjs';
|
|
import { Script } from 'vm';
|
|
import IGoToOptions from '../types/IGoToOptions.cjs';
|
|
import Response from '../../fetch/Response.cjs';
|
|
import IReloadOptions from '../types/IReloadOptions.cjs';
|
|
import IOptionalBrowserPageViewport from '../types/IOptionalBrowserPageViewport.cjs';
|
|
import IBrowserPageViewport from '../types/IBrowserPageViewport.cjs';
|
|
/**
|
|
* Detached browser page used when constructing a Window instance without a browser.
|
|
*/
|
|
export default class DetachedBrowserPage implements IBrowserPage {
|
|
readonly virtualConsolePrinter: VirtualConsolePrinter;
|
|
readonly mainFrame: DetachedBrowserFrame;
|
|
readonly context: DetachedBrowserContext;
|
|
readonly console: Console;
|
|
readonly viewport: IBrowserPageViewport;
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param context Browser context.
|
|
*/
|
|
constructor(context: DetachedBrowserContext);
|
|
/**
|
|
* Returns frames.
|
|
*/
|
|
get frames(): DetachedBrowserFrame[];
|
|
/**
|
|
* Returns the viewport.
|
|
*/
|
|
get content(): string;
|
|
/**
|
|
* Sets the content.
|
|
*
|
|
* @param content Content.
|
|
*/
|
|
set content(content: string);
|
|
/**
|
|
* Returns the URL.
|
|
*
|
|
* @returns URL.
|
|
*/
|
|
get url(): string;
|
|
/**
|
|
* Sets the content.
|
|
*
|
|
* @param url URL.
|
|
*/
|
|
set url(url: string);
|
|
/**
|
|
* Aborts all ongoing operations and destroys the page.
|
|
*/
|
|
close(): Promise<void>;
|
|
/**
|
|
* Returns a promise that is resolved when all resources has been loaded, fetch has completed, and all async tasks such as timers are complete.
|
|
*/
|
|
waitUntilComplete(): Promise<void>;
|
|
/**
|
|
* Returns a promise that is resolved when the page has navigated and the response HTML has been written to the document.
|
|
*/
|
|
waitForNavigation(): Promise<void>;
|
|
/**
|
|
* Aborts all ongoing operations.
|
|
*/
|
|
abort(): Promise<void>;
|
|
/**
|
|
* Evaluates code or a VM Script in the page's context.
|
|
*
|
|
* @param script Script.
|
|
* @returns Result.
|
|
*/
|
|
evaluate(script: string | Script): any;
|
|
/**
|
|
* Sets the viewport.
|
|
*
|
|
* @param viewport Viewport.
|
|
*/
|
|
setViewport(viewport: IOptionalBrowserPageViewport): void;
|
|
/**
|
|
* Go to a page.
|
|
*
|
|
* @param url URL.
|
|
* @param [options] Options.
|
|
* @returns Response.
|
|
*/
|
|
goto(url: string, options?: IGoToOptions): Promise<Response | null>;
|
|
/**
|
|
* Navigates back in history.
|
|
*
|
|
* @param [options] Options.
|
|
*/
|
|
goBack(options?: IGoToOptions): Promise<Response | null>;
|
|
/**
|
|
* Navigates forward in history.
|
|
*
|
|
* @param [options] Options.
|
|
*/
|
|
goForward(options?: IGoToOptions): Promise<Response | null>;
|
|
/**
|
|
* Navigates a delta in history.
|
|
*
|
|
* @param delta Delta.
|
|
* @param steps
|
|
* @param [options] Options.
|
|
*/
|
|
goSteps(steps?: number, options?: IGoToOptions): Promise<Response | null>;
|
|
/**
|
|
* Reloads the current page.
|
|
*
|
|
* @param [options] Options.
|
|
* @returns Response.
|
|
*/
|
|
reload(options?: IReloadOptions): Promise<Response | null>;
|
|
}
|
|
//# sourceMappingURL=DetachedBrowserPage.d.ts.map
|