e4dcfc49aa
Tests / Import Check (Python 3.13) (push) Has been cancelled
Tests / Import Check (Python 3.14) (push) Has been cancelled
Tests / Python Tests (Python 3.11) (push) Has been cancelled
Tests / Python Tests (Python 3.12) (push) Has been cancelled
Tests / Python Tests (Python 3.14) (push) Has been cancelled
Tests / Test Summary (push) Has been cancelled
Tests / Lint and Format (push) Has been cancelled
Tests / Web Node Tests (push) Has been cancelled
Tests / Import Check (Python 3.11) (push) Has been cancelled
Tests / Import Check (Python 3.12) (push) Has been cancelled
Tests / Python Tests (Python 3.13) (push) Has been cancelled
36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
import { apiFetch, apiUrl } from "@/lib/api";
|
|
|
|
export interface ToolSettingsResponse {
|
|
enabled_optional_tools: string[];
|
|
}
|
|
|
|
let cached: Promise<string[]> | null = null;
|
|
|
|
async function fetchEnabledOptionalTools(): Promise<string[]> {
|
|
const res = await apiFetch(apiUrl("/api/v1/tools"));
|
|
if (!res.ok) throw new Error(`HTTP ${res.status}`);
|
|
const payload = (await res.json()) as ToolSettingsResponse;
|
|
return Array.isArray(payload.enabled_optional_tools)
|
|
? payload.enabled_optional_tools.slice()
|
|
: [];
|
|
}
|
|
|
|
/** Read the user's saved set of enabled toggleable tools.
|
|
* Cached at module scope so multiple consumers on the same page share one
|
|
* network round-trip; call ``refreshEnabledOptionalTools`` to bust. */
|
|
export async function getEnabledOptionalTools(options?: {
|
|
force?: boolean;
|
|
}): Promise<string[]> {
|
|
if (options?.force || cached === null) {
|
|
cached = fetchEnabledOptionalTools().catch((err) => {
|
|
cached = null;
|
|
throw err;
|
|
});
|
|
}
|
|
return cached.then((list) => list.slice());
|
|
}
|
|
|
|
export function invalidateEnabledOptionalToolsCache(): void {
|
|
cached = null;
|
|
}
|