mirror of
https://github.com/farion1231/cc-switch.git
synced 2026-07-26 23:56:02 +08:00
7e6f803035
- Add json-five crate for JSON5 serialization preserving comments and formatting - Rewrite openclaw_config.rs with comment-preserving JSON5 read/write engine - Add Tauri commands: get_openclaw_live_provider, write_openclaw_config_section - Redesign EnvPanel as full JSON editor with structured error handling - Add tools.profile selection (minimal/coding/messaging/full) to ToolsPanel - Add legacy timeout migration support to AgentsDefaultsPanel - Add OpenClawHealthBanner component for config validation warnings - Add supporting hooks, mutations, utility functions, and unit tests
72 lines
1.8 KiB
TypeScript
72 lines
1.8 KiB
TypeScript
import type {
|
|
OpenClawAgentsDefaults,
|
|
OpenClawEnvConfig,
|
|
OpenClawToolsProfile,
|
|
} from "@/types";
|
|
|
|
export const OPENCLAW_TOOL_PROFILES: OpenClawToolsProfile[] = [
|
|
"minimal",
|
|
"coding",
|
|
"messaging",
|
|
"full",
|
|
];
|
|
|
|
export const OPENCLAW_UNSUPPORTED_PROFILE = "__unsupported_profile__";
|
|
export const OPENCLAW_UNSET_PROFILE = "__unset_profile__";
|
|
|
|
export function parseOpenClawEnvEditorValue(raw: string): OpenClawEnvConfig {
|
|
if (!raw.trim()) {
|
|
throw new Error("OPENCLAW_ENV_EMPTY");
|
|
}
|
|
|
|
let parsed: unknown;
|
|
try {
|
|
parsed = JSON.parse(raw);
|
|
} catch {
|
|
throw new Error("OPENCLAW_ENV_INVALID_JSON");
|
|
}
|
|
|
|
if (!parsed || typeof parsed !== "object" || Array.isArray(parsed)) {
|
|
throw new Error("OPENCLAW_ENV_OBJECT_REQUIRED");
|
|
}
|
|
return parsed as OpenClawEnvConfig;
|
|
}
|
|
|
|
export function isOpenClawToolsProfile(
|
|
profile?: string,
|
|
): profile is OpenClawToolsProfile {
|
|
return (
|
|
typeof profile === "string" &&
|
|
OPENCLAW_TOOL_PROFILES.includes(profile as OpenClawToolsProfile)
|
|
);
|
|
}
|
|
|
|
export function getOpenClawToolsProfileSelectValue(profile?: string): string {
|
|
if (!profile) {
|
|
return OPENCLAW_UNSET_PROFILE;
|
|
}
|
|
return isOpenClawToolsProfile(profile)
|
|
? profile
|
|
: OPENCLAW_UNSUPPORTED_PROFILE;
|
|
}
|
|
|
|
export function getOpenClawUnsupportedProfile(profile?: string): string | null {
|
|
if (!profile || isOpenClawToolsProfile(profile)) {
|
|
return null;
|
|
}
|
|
return profile;
|
|
}
|
|
|
|
export function getOpenClawTimeoutInputValue(
|
|
defaults?: OpenClawAgentsDefaults | null,
|
|
): string {
|
|
const timeoutSeconds =
|
|
typeof defaults?.timeoutSeconds === "number"
|
|
? defaults.timeoutSeconds
|
|
: undefined;
|
|
const legacyTimeout =
|
|
typeof defaults?.timeout === "number" ? defaults.timeout : undefined;
|
|
const value = timeoutSeconds ?? legacyTimeout;
|
|
return value === undefined ? "" : String(value);
|
|
}
|