* chore: remove dead/unreferenced files across ui, vscode Remove 59 unused source files (components, hooks, lib utils, stores, barrels, and orphaned vscode github modules) that are not imported by any entry-reachable code. Also drop a stale test mock for the removed execCommands module. Co-authored-by: Serhii Dziupin <makeittech@users.noreply.github.com> * refactor: remove unused exported symbols (types, functions, consts, hooks) Remove exported symbols whose identifier is referenced nowhere in the repository (verified via repo-wide search), across ui types/contracts, lib utilities, sync layer, stores, and components. Also drop the few imports/private helpers orphaned by these removals. Co-authored-by: Serhii Dziupin <makeittech@users.noreply.github.com> * refactor: remove more unused exports (desktop, shortcuts, worktree, vscode) Continue removing repo-wide unreferenced exported functions, consts and types across lib/desktop, shortcuts, worktreeSessionCreator, sync, and vscode gitService, with cascading orphaned helpers/imports cleaned up. Co-authored-by: Serhii Dziupin <makeittech@users.noreply.github.com> * chore: add dead-code cleanup tooling * refactor: checkpoint dead-code cleanup * refactor: remove dead-code suppressions --------- Co-authored-by: Serhii Dziupin <makeittech@users.noreply.github.com> Co-authored-by: Bohdan Triapitsyn <artmore@protonmail.com>
233 lines
6.8 KiB
TypeScript
233 lines
6.8 KiB
TypeScript
declare const acquireVsCodeApi: () => {
|
|
postMessage: (message: unknown) => void;
|
|
getState: () => unknown;
|
|
setState: (state: unknown) => void;
|
|
};
|
|
|
|
interface VSCodeAPI {
|
|
postMessage: (message: unknown) => void;
|
|
}
|
|
|
|
let vscodeApi: VSCodeAPI | null = null;
|
|
|
|
function getVSCodeAPI(): VSCodeAPI {
|
|
if (!vscodeApi) {
|
|
vscodeApi = acquireVsCodeApi();
|
|
}
|
|
return vscodeApi;
|
|
}
|
|
|
|
interface BridgeRequest {
|
|
id: string;
|
|
type: string;
|
|
payload?: unknown;
|
|
}
|
|
|
|
interface BridgeResponse {
|
|
id: string;
|
|
type: string;
|
|
success: boolean;
|
|
data?: unknown;
|
|
error?: string;
|
|
}
|
|
|
|
const pendingRequests = new Map<string, {
|
|
resolve: (value: unknown) => void;
|
|
reject: (reason: Error) => void;
|
|
timeout?: ReturnType<typeof setTimeout>;
|
|
onAbort?: () => void;
|
|
}>();
|
|
|
|
let requestIdCounter = 0;
|
|
|
|
window.addEventListener('message', (event: MessageEvent<BridgeResponse>) => {
|
|
const response = event.data;
|
|
if (!response || typeof response.id !== 'string') return;
|
|
|
|
const messageId = (response as BridgeResponse & { _msgId?: unknown })._msgId;
|
|
if (typeof messageId === 'string' && messageId.length > 0) {
|
|
getVSCodeAPI().postMessage({ type: 'bridge:ack', _msgId: messageId });
|
|
}
|
|
|
|
const pending = pendingRequests.get(response.id);
|
|
if (pending) {
|
|
pendingRequests.delete(response.id);
|
|
if (pending.timeout) {
|
|
clearTimeout(pending.timeout);
|
|
}
|
|
if (pending.onAbort) {
|
|
pending.onAbort();
|
|
}
|
|
if (response.success) {
|
|
pending.resolve(response.data);
|
|
} else {
|
|
pending.reject(new Error(response.error || 'Unknown error'));
|
|
}
|
|
}
|
|
});
|
|
|
|
export function sendBridgeMessage<T = unknown>(type: string, payload?: unknown): Promise<T> {
|
|
return sendBridgeMessageWithOptions<T>(type, payload);
|
|
}
|
|
|
|
export function sendBridgeMessageWithOptions<T = unknown>(
|
|
type: string,
|
|
payload?: unknown,
|
|
options?: { timeoutMs?: number; signal?: AbortSignal; onAbort?: (id: string) => void }
|
|
): Promise<T> {
|
|
return new Promise((resolve, reject) => {
|
|
const id = `req_${++requestIdCounter}_${Date.now()}`;
|
|
const request: BridgeRequest = { id, type, payload };
|
|
|
|
const pending: {
|
|
resolve: (value: unknown) => void;
|
|
reject: (reason: Error) => void;
|
|
timeout?: ReturnType<typeof setTimeout>;
|
|
onAbort?: () => void;
|
|
} = {
|
|
resolve: resolve as (value: unknown) => void,
|
|
reject,
|
|
};
|
|
|
|
if (options?.signal) {
|
|
const abort = () => {
|
|
if (!pendingRequests.has(id)) return;
|
|
pendingRequests.delete(id);
|
|
if (pending.timeout) {
|
|
clearTimeout(pending.timeout);
|
|
}
|
|
options.onAbort?.(id);
|
|
reject(new DOMException('Aborted', 'AbortError'));
|
|
};
|
|
if (options.signal.aborted) {
|
|
reject(new DOMException('Aborted', 'AbortError'));
|
|
return;
|
|
}
|
|
options.signal.addEventListener('abort', abort, { once: true });
|
|
pending.onAbort = () => options.signal?.removeEventListener('abort', abort);
|
|
}
|
|
|
|
pendingRequests.set(id, pending);
|
|
|
|
const timeoutMs = typeof options?.timeoutMs === 'number' ? options.timeoutMs : 30000;
|
|
if (Number.isFinite(timeoutMs) && timeoutMs > 0) {
|
|
pending.timeout = setTimeout(() => {
|
|
if (pendingRequests.has(id)) {
|
|
pendingRequests.delete(id);
|
|
if (pending.onAbort) {
|
|
pending.onAbort();
|
|
}
|
|
reject(new Error(`Request ${type} timed out`));
|
|
}
|
|
}, timeoutMs);
|
|
}
|
|
|
|
getVSCodeAPI().postMessage(request);
|
|
});
|
|
}
|
|
|
|
export type ProxiedApiResponse = {
|
|
status: number;
|
|
headers: Record<string, string>;
|
|
bodyBase64?: string;
|
|
bodyText?: string;
|
|
};
|
|
|
|
export async function proxyApiRequest(options: {
|
|
method: string;
|
|
path: string;
|
|
headers?: Record<string, string>;
|
|
bodyBase64?: string;
|
|
signal?: AbortSignal;
|
|
}): Promise<ProxiedApiResponse> {
|
|
// Do not impose a bridge-level timeout. Let the original fetch's AbortSignal
|
|
// (or OpenCode server response timing) control the lifecycle.
|
|
const { signal, ...payload } = options;
|
|
return sendBridgeMessageWithOptions<ProxiedApiResponse>('api:proxy', payload, {
|
|
timeoutMs: 0,
|
|
signal,
|
|
onAbort: (requestID) => getVSCodeAPI().postMessage({ id: `abort_${requestID}`, type: 'api:proxy:abort', payload: { requestID } }),
|
|
});
|
|
}
|
|
|
|
export async function proxySessionMessageRequest(options: {
|
|
path: string;
|
|
headers?: Record<string, string>;
|
|
bodyText: string;
|
|
signal?: AbortSignal;
|
|
}): Promise<ProxiedApiResponse> {
|
|
// Keep parity with server-side direct forwarder: let extension host control timeout.
|
|
const { signal, ...payload } = options;
|
|
return sendBridgeMessageWithOptions<ProxiedApiResponse>('api:session:message', payload, {
|
|
timeoutMs: 0,
|
|
signal,
|
|
onAbort: (requestID) => getVSCodeAPI().postMessage({ id: `abort_${requestID}`, type: 'api:proxy:abort', payload: { requestID } }),
|
|
});
|
|
}
|
|
|
|
export type ProxiedSseStartResponse = {
|
|
status: number;
|
|
headers: Record<string, string>;
|
|
streamId: string | null;
|
|
error?: string;
|
|
};
|
|
|
|
export async function startSseProxy(options: {
|
|
path: string;
|
|
headers?: Record<string, string>;
|
|
}): Promise<ProxiedSseStartResponse> {
|
|
return sendBridgeMessage<ProxiedSseStartResponse>('api:sse:start', options);
|
|
}
|
|
|
|
export async function stopSseProxy(options: { streamId: string }): Promise<{ stopped: boolean }> {
|
|
return sendBridgeMessage<{ stopped: boolean }>('api:sse:stop', options);
|
|
}
|
|
|
|
export async function executeVSCodeCommand(command: string, args?: unknown[]): Promise<{ result?: unknown }> {
|
|
return sendBridgeMessage<{ result?: unknown }>('vscode:command', { command, args });
|
|
}
|
|
|
|
export async function openVSCodeExternalUrl(url: string): Promise<void> {
|
|
await sendBridgeMessage('vscode:openExternalUrl', { url });
|
|
}
|
|
|
|
type CommandHandler = (payload: unknown) => void;
|
|
const commandHandlers = new Map<string, CommandHandler>();
|
|
|
|
export function onCommand(command: string, handler: CommandHandler): () => void {
|
|
commandHandlers.set(command, handler);
|
|
return () => commandHandlers.delete(command);
|
|
}
|
|
|
|
window.addEventListener('message', (event: MessageEvent) => {
|
|
const message = event.data;
|
|
if (message?.type === 'command' && message.command) {
|
|
const handler = commandHandlers.get(message.command);
|
|
if (handler) {
|
|
handler(message.payload);
|
|
}
|
|
}
|
|
});
|
|
|
|
type ThemeChangePayload =
|
|
| 'light'
|
|
| 'dark'
|
|
| {
|
|
kind?: 'light' | 'dark' | 'high-contrast';
|
|
shikiThemes?: { light?: Record<string, unknown>; dark?: Record<string, unknown> } | null;
|
|
};
|
|
type ThemeChangeHandler = (theme: ThemeChangePayload) => void;
|
|
let themeChangeHandler: ThemeChangeHandler | null = null;
|
|
|
|
export function onThemeChange(handler: ThemeChangeHandler): () => void {
|
|
themeChangeHandler = handler;
|
|
return () => { themeChangeHandler = null; };
|
|
}
|
|
|
|
window.addEventListener('message', (event: MessageEvent) => {
|
|
const message = event.data;
|
|
if (message?.type === 'themeChange' && themeChangeHandler) {
|
|
themeChangeHandler(message.theme);
|
|
}
|
|
});
|