2025-09-13 21:45:34 +08:00
|
|
|
import React, { useEffect, useState } from "react";
|
2025-09-06 23:13:01 +08:00
|
|
|
import JsonEditor from "../JsonEditor";
|
|
|
|
|
|
|
|
|
|
interface ClaudeConfigEditorProps {
|
|
|
|
|
value: string;
|
|
|
|
|
onChange: (value: string) => void;
|
2025-09-16 22:59:00 +08:00
|
|
|
useCommonConfig: boolean;
|
|
|
|
|
onCommonConfigToggle: (checked: boolean) => void;
|
|
|
|
|
commonConfigSnippet: string;
|
|
|
|
|
onCommonConfigSnippetChange: (value: string) => void;
|
|
|
|
|
commonConfigError: string;
|
2025-09-06 23:13:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const ClaudeConfigEditor: React.FC<ClaudeConfigEditorProps> = ({
|
|
|
|
|
value,
|
|
|
|
|
onChange,
|
2025-09-16 22:59:00 +08:00
|
|
|
useCommonConfig,
|
|
|
|
|
onCommonConfigToggle,
|
|
|
|
|
commonConfigSnippet,
|
|
|
|
|
onCommonConfigSnippetChange,
|
|
|
|
|
commonConfigError,
|
2025-09-06 23:13:01 +08:00
|
|
|
}) => {
|
2025-09-13 21:45:34 +08:00
|
|
|
const [isDarkMode, setIsDarkMode] = useState(false);
|
2025-09-16 22:59:00 +08:00
|
|
|
const [isCommonConfigModalOpen, setIsCommonConfigModalOpen] = useState(false);
|
2025-09-13 21:45:34 +08:00
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
// 检测暗色模式
|
|
|
|
|
const checkDarkMode = () => {
|
|
|
|
|
setIsDarkMode(document.documentElement.classList.contains("dark"));
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
checkDarkMode();
|
|
|
|
|
|
|
|
|
|
// 监听暗色模式变化
|
|
|
|
|
const observer = new MutationObserver((mutations) => {
|
|
|
|
|
mutations.forEach((mutation) => {
|
|
|
|
|
if (mutation.attributeName === "class") {
|
|
|
|
|
checkDarkMode();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
observer.observe(document.documentElement, {
|
|
|
|
|
attributes: true,
|
|
|
|
|
attributeFilter: ["class"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return () => observer.disconnect();
|
|
|
|
|
}, []);
|
2025-09-16 22:59:00 +08:00
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
if (commonConfigError && !isCommonConfigModalOpen) {
|
|
|
|
|
setIsCommonConfigModalOpen(true);
|
|
|
|
|
}
|
|
|
|
|
}, [commonConfigError, isCommonConfigModalOpen]);
|
|
|
|
|
|
|
|
|
|
const closeModal = () => {
|
|
|
|
|
setIsCommonConfigModalOpen(false);
|
|
|
|
|
};
|
2025-09-06 23:13:01 +08:00
|
|
|
return (
|
|
|
|
|
<div className="space-y-2">
|
|
|
|
|
<div className="flex items-center justify-between">
|
|
|
|
|
<label
|
|
|
|
|
htmlFor="settingsConfig"
|
2025-09-13 21:45:34 +08:00
|
|
|
className="block text-sm font-medium text-gray-900 dark:text-gray-100"
|
2025-09-06 23:13:01 +08:00
|
|
|
>
|
|
|
|
|
Claude Code 配置 (JSON) *
|
|
|
|
|
</label>
|
2025-09-13 21:45:34 +08:00
|
|
|
<label className="inline-flex items-center gap-2 text-sm text-gray-500 dark:text-gray-400 cursor-pointer">
|
2025-09-06 23:13:01 +08:00
|
|
|
<input
|
|
|
|
|
type="checkbox"
|
2025-09-16 22:59:00 +08:00
|
|
|
checked={useCommonConfig}
|
|
|
|
|
onChange={(e) => onCommonConfigToggle(e.target.checked)}
|
2025-09-13 21:45:34 +08:00
|
|
|
className="w-4 h-4 text-blue-500 bg-white dark:bg-gray-800 border-gray-200 dark:border-gray-700 rounded focus:ring-blue-500 dark:focus:ring-blue-400 focus:ring-2"
|
2025-09-06 23:13:01 +08:00
|
|
|
/>
|
2025-09-16 22:59:00 +08:00
|
|
|
写入通用配置
|
2025-09-06 23:13:01 +08:00
|
|
|
</label>
|
|
|
|
|
</div>
|
2025-09-16 22:59:00 +08:00
|
|
|
<div className="flex items-center justify-end">
|
|
|
|
|
<button
|
|
|
|
|
type="button"
|
|
|
|
|
onClick={() => setIsCommonConfigModalOpen(true)}
|
|
|
|
|
className="text-xs text-blue-500 dark:text-blue-400 hover:underline"
|
|
|
|
|
>
|
|
|
|
|
编辑通用配置
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
{commonConfigError && !isCommonConfigModalOpen && (
|
|
|
|
|
<p className="text-xs text-red-500 dark:text-red-400 text-right">
|
|
|
|
|
{commonConfigError}
|
|
|
|
|
</p>
|
|
|
|
|
)}
|
2025-09-06 23:13:01 +08:00
|
|
|
<JsonEditor
|
|
|
|
|
value={value}
|
|
|
|
|
onChange={onChange}
|
2025-09-13 21:45:34 +08:00
|
|
|
darkMode={isDarkMode}
|
2025-09-06 23:13:01 +08:00
|
|
|
placeholder={`{
|
|
|
|
|
"env": {
|
2025-09-12 12:04:19 +08:00
|
|
|
"ANTHROPIC_BASE_URL": "https://your-api-endpoint.com",
|
|
|
|
|
"ANTHROPIC_AUTH_TOKEN": "your-api-key-here"
|
2025-09-06 23:13:01 +08:00
|
|
|
}
|
|
|
|
|
}`}
|
|
|
|
|
rows={12}
|
|
|
|
|
/>
|
2025-09-13 21:45:34 +08:00
|
|
|
<p className="text-xs text-gray-500 dark:text-gray-400">
|
2025-09-06 23:13:01 +08:00
|
|
|
完整的 Claude Code settings.json 配置内容
|
|
|
|
|
</p>
|
2025-09-16 22:59:00 +08:00
|
|
|
{isCommonConfigModalOpen && (
|
|
|
|
|
<div className="fixed inset-0 z-50 flex items-center justify-center">
|
|
|
|
|
<div
|
|
|
|
|
className="absolute inset-0 bg-black/40"
|
|
|
|
|
onClick={closeModal}
|
|
|
|
|
/>
|
|
|
|
|
<div className="relative z-10 w-full max-w-2xl mx-4 bg-white dark:bg-gray-900 rounded-xl shadow-lg border border-gray-200 dark:border-gray-800">
|
|
|
|
|
<div className="flex items-center justify-between px-5 py-4 border-b border-gray-200 dark:border-gray-800">
|
|
|
|
|
<div>
|
|
|
|
|
<h2 className="text-sm font-semibold text-gray-900 dark:text-gray-100">
|
|
|
|
|
编辑通用配置片段
|
|
|
|
|
</h2>
|
|
|
|
|
<p className="text-xs text-gray-500 dark:text-gray-400">
|
|
|
|
|
该片段会在勾选“写入通用配置”时合并到 settings.json 中
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
<button
|
|
|
|
|
type="button"
|
|
|
|
|
onClick={closeModal}
|
|
|
|
|
className="text-xs text-gray-500 hover:text-gray-700 dark:text-gray-400 dark:hover:text-gray-200"
|
|
|
|
|
>
|
|
|
|
|
关闭
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="px-5 py-4 space-y-2">
|
|
|
|
|
<JsonEditor
|
|
|
|
|
value={commonConfigSnippet}
|
|
|
|
|
onChange={onCommonConfigSnippetChange}
|
|
|
|
|
darkMode={isDarkMode}
|
|
|
|
|
rows={12}
|
|
|
|
|
/>
|
|
|
|
|
{commonConfigError && (
|
|
|
|
|
<p className="text-xs text-red-500 dark:text-red-400">
|
|
|
|
|
{commonConfigError}
|
|
|
|
|
</p>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
<div className="flex justify-end gap-2 px-5 py-4 border-t border-gray-200 dark:border-gray-800 bg-gray-50 dark:bg-gray-950">
|
|
|
|
|
<button
|
|
|
|
|
type="button"
|
|
|
|
|
onClick={closeModal}
|
|
|
|
|
className="px-3 py-1.5 text-xs font-medium text-gray-600 dark:text-gray-300 hover:text-gray-900 dark:hover:text-gray-100"
|
|
|
|
|
>
|
|
|
|
|
完成
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
2025-09-06 23:13:01 +08:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default ClaudeConfigEditor;
|