| import { danger } from "../globals.js"; | |
| import { defaultRuntime } from "../runtime.js"; | |
| import { callBrowserResize, type BrowserParentOpts } from "./browser-cli-shared.js"; | |
| export async function runBrowserResizeWithOutput(params: { | |
| parent: BrowserParentOpts; | |
| profile?: string; | |
| width: number; | |
| height: number; | |
| targetId?: string; | |
| timeoutMs?: number; | |
| successMessage: string; | |
| }): Promise<void> { | |
| const { width, height } = params; | |
| if (!Number.isFinite(width) || !Number.isFinite(height)) { | |
| defaultRuntime.error(danger("width and height must be numbers")); | |
| defaultRuntime.exit(1); | |
| return; | |
| } | |
| const result = await callBrowserResize( | |
| params.parent, | |
| { | |
| profile: params.profile, | |
| width, | |
| height, | |
| targetId: params.targetId, | |
| }, | |
| { timeoutMs: params.timeoutMs ?? 20000 }, | |
| ); | |
| if (params.parent?.json) { | |
| defaultRuntime.log(JSON.stringify(result, null, 2)); | |
| return; | |
| } | |
| defaultRuntime.log(params.successMessage); | |
| } | |