- ✅ Ticket 1.1: Estructura Clean Architecture en backend - ✅ Ticket 1.2: Schemas Zod compartidos - ✅ Ticket 1.3: Refactorización drugs.ts (1362 → 8 archivos modulares) - ✅ Ticket 1.4: Refactorización procedures.ts (3583 → 6 archivos modulares) - ✅ Ticket 1.5: Eliminación de duplicidades (~50 líneas) Cambios principales: - Creada estructura Clean Architecture en backend/src/ - Schemas Zod compartidos en backend/src/shared/schemas/ - Refactorización modular de drugs y procedures - Utilidades genéricas en src/utils/ (filter, validation) - Eliminados scripts obsoletos y documentación antigua - Corregidos errores: QueryClient, import test-error-handling - Build verificado y funcionando correctamente
135 lines
4 KiB
TypeScript
135 lines
4 KiB
TypeScript
import DetachedBrowserPage from './DetachedBrowserPage.js';
|
|
import * as PropertySymbol from '../../PropertySymbol.js';
|
|
import AsyncTaskManager from '../../async-task-manager/AsyncTaskManager.js';
|
|
import IBrowserFrame from '../types/IBrowserFrame.js';
|
|
import Response from '../../fetch/Response.js';
|
|
import IGoToOptions from '../types/IGoToOptions.js';
|
|
import { Script } from 'vm';
|
|
import BrowserWindow from '../../window/BrowserWindow.js';
|
|
import IReloadOptions from '../types/IReloadOptions.js';
|
|
import Document from '../../nodes/document/Document.js';
|
|
import CrossOriginBrowserWindow from '../../window/CrossOriginBrowserWindow.js';
|
|
import HistoryItemList from '../../history/HistoryItemList.js';
|
|
/**
|
|
* Browser frame used when constructing a Window instance without a browser.
|
|
*/
|
|
export default class DetachedBrowserFrame implements IBrowserFrame {
|
|
window: BrowserWindow;
|
|
readonly childFrames: DetachedBrowserFrame[];
|
|
readonly parentFrame: DetachedBrowserFrame | null;
|
|
readonly page: DetachedBrowserPage;
|
|
readonly closed: boolean;
|
|
[PropertySymbol.asyncTaskManager]: AsyncTaskManager;
|
|
[PropertySymbol.listeners]: {
|
|
navigation: Array<() => void>;
|
|
};
|
|
[PropertySymbol.openerFrame]: IBrowserFrame | null;
|
|
[PropertySymbol.openerWindow]: BrowserWindow | CrossOriginBrowserWindow | null;
|
|
[PropertySymbol.popup]: boolean;
|
|
[PropertySymbol.history]: HistoryItemList;
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param page Page.
|
|
* @param [window] Window.
|
|
*/
|
|
constructor(page: DetachedBrowserPage);
|
|
/**
|
|
* Returns the content.
|
|
*
|
|
* @returns Content.
|
|
*/
|
|
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);
|
|
/**
|
|
* Returns document.
|
|
*
|
|
* @returns Document.
|
|
*/
|
|
get document(): Document;
|
|
/**
|
|
* 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 frame 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;
|
|
/**
|
|
* Evaluates a module in the page's context.
|
|
*
|
|
* @param options Options.
|
|
* @param options.url URL.
|
|
* @param options.type Module type.
|
|
* @param options.code Code.
|
|
* @returns Module exports.
|
|
*/
|
|
evaluateModule(options: {
|
|
url?: string;
|
|
type?: 'esm' | 'css' | 'json';
|
|
code?: string;
|
|
}): Promise<Record<string, any>>;
|
|
/**
|
|
* 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 steps Steps.
|
|
* @param [options] Options.
|
|
*/
|
|
goSteps(steps?: number, options?: IGoToOptions): Promise<Response | null>;
|
|
/**
|
|
* Reloads the current frame.
|
|
*
|
|
* @param [options] Options.
|
|
* @returns Response.
|
|
*/
|
|
reload(options?: IReloadOptions): Promise<Response | null>;
|
|
}
|
|
//# sourceMappingURL=DetachedBrowserFrame.d.ts.map
|