huskies: merge 949

This commit is contained in:
dave
2026-05-13 07:10:00 +00:00
parent d87722f6c8
commit 4a0fbcaa95
15 changed files with 1454 additions and 231 deletions
+21 -55
View File
@@ -2,6 +2,13 @@
* WS-RPC client for editor and project settings.
*/
import { rpcCall } from "./rpc";
import type {
EditorSettingsResult,
OkResult,
OpenFileParams,
ProjectSettingsPayload,
PutEditorParams,
} from "./rpcContract";
export interface EditorSettings {
editor_command: string | null;
@@ -24,80 +31,39 @@ export interface OpenFileResult {
success: boolean;
}
const DEFAULT_API_BASE = "/api";
function buildApiUrl(path: string, baseUrl = DEFAULT_API_BASE): string {
return `${baseUrl}${path}`;
}
async function requestJson<T>(
path: string,
options: RequestInit = {},
baseUrl = DEFAULT_API_BASE,
): Promise<T> {
const res = await fetch(buildApiUrl(path, baseUrl), {
headers: {
"Content-Type": "application/json",
...(options.headers ?? {}),
},
...options,
});
if (!res.ok) {
const text = await res.text();
throw new Error(text || `Request failed (${res.status})`);
}
return res.json() as Promise<T>;
}
export const settingsApi = {
getProjectSettings(_baseUrl?: string): Promise<ProjectSettings> {
return rpcCall<ProjectSettings>("settings.get_project");
},
putProjectSettings(
async putProjectSettings(
settings: ProjectSettings,
baseUrl?: string,
_baseUrl?: string,
): Promise<ProjectSettings> {
return requestJson<ProjectSettings>(
"/settings",
{ method: "PUT", body: JSON.stringify(settings) },
baseUrl,
);
const params: ProjectSettingsPayload = settings;
return rpcCall<ProjectSettingsPayload>("settings.put_project", params);
},
getEditorCommand(_baseUrl?: string): Promise<EditorSettings> {
return rpcCall<EditorSettings>("settings.get_editor");
},
setEditorCommand(
async setEditorCommand(
command: string | null,
baseUrl?: string,
_baseUrl?: string,
): Promise<EditorSettings> {
return requestJson<EditorSettings>(
"/settings/editor",
{
method: "PUT",
body: JSON.stringify({ editor_command: command }),
},
baseUrl,
);
const params: PutEditorParams = { editor_command: command };
const r = await rpcCall<EditorSettingsResult>("settings.put_editor", params);
return { editor_command: r.editor_command };
},
openFile(
async openFile(
path: string,
line?: number,
baseUrl?: string,
_baseUrl?: string,
): Promise<OpenFileResult> {
const params = new URLSearchParams({ path });
if (line !== undefined) {
params.set("line", String(line));
}
return requestJson<OpenFileResult>(
`/settings/open-file?${params.toString()}`,
{ method: "POST" },
baseUrl,
);
const params: OpenFileParams = { path, line: line ?? null };
const r = await rpcCall<OkResult>("settings.open_file", params);
return { success: r.ok };
},
};