2025-10-16 20:32:11 +08:00
|
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
|
import {
|
|
|
|
|
Dialog,
|
|
|
|
|
DialogContent,
|
|
|
|
|
DialogHeader,
|
|
|
|
|
DialogTitle,
|
|
|
|
|
} from "@/components/ui/dialog";
|
|
|
|
|
import { Label } from "@/components/ui/label";
|
|
|
|
|
|
|
|
|
|
interface CommonConfigEditorProps {
|
|
|
|
|
value: string;
|
|
|
|
|
onChange: (value: string) => void;
|
|
|
|
|
useCommonConfig: boolean;
|
|
|
|
|
onCommonConfigToggle: (checked: boolean) => void;
|
|
|
|
|
commonConfigSnippet: string;
|
|
|
|
|
onCommonConfigSnippetChange: (value: string) => void;
|
|
|
|
|
commonConfigError: string;
|
|
|
|
|
onEditClick: () => void;
|
|
|
|
|
isModalOpen: boolean;
|
|
|
|
|
onModalClose: () => void;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function CommonConfigEditor({
|
|
|
|
|
value,
|
|
|
|
|
onChange,
|
|
|
|
|
useCommonConfig,
|
|
|
|
|
onCommonConfigToggle,
|
|
|
|
|
commonConfigSnippet,
|
|
|
|
|
onCommonConfigSnippetChange,
|
|
|
|
|
commonConfigError,
|
|
|
|
|
onEditClick,
|
|
|
|
|
isModalOpen,
|
|
|
|
|
onModalClose,
|
|
|
|
|
}: CommonConfigEditorProps) {
|
|
|
|
|
const { t } = useTranslation();
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<div className="space-y-2">
|
|
|
|
|
<div className="flex items-center justify-between">
|
2025-10-24 13:02:35 +08:00
|
|
|
<Label htmlFor="settingsConfig">{t("provider.configJson")}</Label>
|
2025-10-16 20:32:11 +08:00
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
|
<label className="inline-flex items-center gap-2 text-sm text-muted-foreground cursor-pointer">
|
|
|
|
|
<input
|
|
|
|
|
type="checkbox"
|
|
|
|
|
id="useCommonConfig"
|
|
|
|
|
checked={useCommonConfig}
|
|
|
|
|
onChange={(e) => onCommonConfigToggle(e.target.checked)}
|
2025-10-21 10:49:30 +08:00
|
|
|
className="w-4 h-4 text-blue-500 bg-white dark:bg-gray-800 border-border-default rounded focus:ring-blue-500 dark:focus:ring-blue-400 focus:ring-2"
|
2025-10-16 20:32:11 +08:00
|
|
|
/>
|
|
|
|
|
<span>
|
|
|
|
|
{t("claudeConfig.writeCommonConfig", {
|
|
|
|
|
defaultValue: "写入通用配置",
|
|
|
|
|
})}
|
|
|
|
|
</span>
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="flex items-center justify-end">
|
|
|
|
|
<button
|
|
|
|
|
type="button"
|
|
|
|
|
onClick={onEditClick}
|
|
|
|
|
className="text-xs text-blue-400 dark:text-blue-500 hover:text-blue-500 dark:hover:text-blue-400 transition-colors"
|
|
|
|
|
>
|
|
|
|
|
{t("claudeConfig.editCommonConfig", {
|
|
|
|
|
defaultValue: "编辑通用配置",
|
|
|
|
|
})}
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
{commonConfigError && !isModalOpen && (
|
|
|
|
|
<p className="text-xs text-red-500 dark:text-red-400 text-right">
|
|
|
|
|
{commonConfigError}
|
|
|
|
|
</p>
|
|
|
|
|
)}
|
2025-10-21 10:49:30 +08:00
|
|
|
<textarea
|
|
|
|
|
id="settingsConfig"
|
|
|
|
|
value={value}
|
|
|
|
|
onChange={(e) => onChange(e.target.value)}
|
|
|
|
|
placeholder={`{
|
2025-10-16 20:32:11 +08:00
|
|
|
"env": {
|
|
|
|
|
"ANTHROPIC_BASE_URL": "https://your-api-endpoint.com",
|
|
|
|
|
"ANTHROPIC_AUTH_TOKEN": "your-api-key-here"
|
|
|
|
|
}
|
|
|
|
|
}`}
|
2025-10-21 10:49:30 +08:00
|
|
|
rows={14}
|
2025-10-22 13:31:17 +08:00
|
|
|
className="w-full px-3 py-2 border border-border-default dark:bg-gray-800 dark:text-gray-100 rounded-lg text-sm font-mono focus:outline-none focus:ring-2 focus:ring-blue-500/20 dark:focus:ring-blue-400/20 transition-colors resize-y min-h-[16rem]"
|
2025-10-21 10:49:30 +08:00
|
|
|
autoComplete="off"
|
|
|
|
|
autoCorrect="off"
|
|
|
|
|
autoCapitalize="none"
|
|
|
|
|
spellCheck={false}
|
|
|
|
|
lang="en"
|
|
|
|
|
inputMode="text"
|
|
|
|
|
data-gramm="false"
|
|
|
|
|
data-gramm_editor="false"
|
|
|
|
|
data-enable-grammarly="false"
|
|
|
|
|
/>
|
2025-10-16 20:32:11 +08:00
|
|
|
<p className="text-xs text-muted-foreground">
|
|
|
|
|
{t("claudeConfig.fullSettingsHint", {
|
|
|
|
|
defaultValue: "请填写完整的 Claude Code 配置",
|
|
|
|
|
})}
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
2025-10-18 16:52:02 +08:00
|
|
|
<Dialog
|
|
|
|
|
open={isModalOpen}
|
|
|
|
|
onOpenChange={(open) => !open && onModalClose()}
|
|
|
|
|
>
|
2025-10-16 20:32:11 +08:00
|
|
|
<DialogContent className="sm:max-w-[600px]">
|
|
|
|
|
<DialogHeader>
|
|
|
|
|
<DialogTitle>
|
|
|
|
|
{t("claudeConfig.editCommonConfigTitle", {
|
|
|
|
|
defaultValue: "编辑通用配置片段",
|
|
|
|
|
})}
|
|
|
|
|
</DialogTitle>
|
|
|
|
|
</DialogHeader>
|
|
|
|
|
<div className="space-y-4 py-4">
|
|
|
|
|
<p className="text-sm text-muted-foreground">
|
|
|
|
|
{t("claudeConfig.commonConfigHint", {
|
2025-10-18 16:52:02 +08:00
|
|
|
defaultValue: "通用配置片段将合并到所有启用它的供应商配置中",
|
2025-10-16 20:32:11 +08:00
|
|
|
})}
|
|
|
|
|
</p>
|
2025-10-21 10:49:30 +08:00
|
|
|
<textarea
|
|
|
|
|
value={commonConfigSnippet}
|
|
|
|
|
onChange={(e) => onCommonConfigSnippetChange(e.target.value)}
|
|
|
|
|
rows={12}
|
2025-10-22 13:31:17 +08:00
|
|
|
className="w-full px-3 py-2 border border-border-default dark:bg-gray-800 dark:text-gray-100 rounded-lg text-sm font-mono focus:outline-none focus:ring-2 focus:ring-blue-500/20 dark:focus:ring-blue-400/20 transition-colors resize-y min-h-[14rem]"
|
2025-10-21 10:49:30 +08:00
|
|
|
autoComplete="off"
|
|
|
|
|
autoCorrect="off"
|
|
|
|
|
autoCapitalize="none"
|
|
|
|
|
spellCheck={false}
|
|
|
|
|
lang="en"
|
|
|
|
|
inputMode="text"
|
|
|
|
|
data-gramm="false"
|
|
|
|
|
data-gramm_editor="false"
|
|
|
|
|
data-enable-grammarly="false"
|
|
|
|
|
/>
|
2025-10-16 20:32:11 +08:00
|
|
|
{commonConfigError && (
|
|
|
|
|
<p className="text-sm text-red-500 dark:text-red-400">
|
|
|
|
|
{commonConfigError}
|
|
|
|
|
</p>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
</DialogContent>
|
|
|
|
|
</Dialog>
|
|
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
}
|