Files
ashutoshpythoncs@gmail.com b564857c0b claude-code
2026-03-31 18:58:05 +05:30

147 lines
5.1 KiB
TypeScript

"use client";
import { useState } from "react";
import { Eye, EyeOff, CheckCircle, XCircle, Loader2 } from "lucide-react";
import { useChatStore } from "@/lib/store";
import { SettingRow, SectionHeader, Toggle } from "./SettingRow";
import { cn } from "@/lib/utils";
type ConnectionStatus = "idle" | "checking" | "ok" | "error";
export function ApiSettings() {
const { settings, updateSettings, resetSettings } = useChatStore();
const [showKey, setShowKey] = useState(false);
const [connectionStatus, setConnectionStatus] = useState<ConnectionStatus>("idle");
const [latencyMs, setLatencyMs] = useState<number | null>(null);
async function checkConnection() {
setConnectionStatus("checking");
setLatencyMs(null);
const start = Date.now();
try {
const res = await fetch(`${settings.apiUrl}/health`, { signal: AbortSignal.timeout(5000) });
const ms = Date.now() - start;
setLatencyMs(ms);
setConnectionStatus(res.ok ? "ok" : "error");
} catch {
setConnectionStatus("error");
}
}
const statusIcon = {
idle: null,
checking: <Loader2 className="w-4 h-4 animate-spin text-surface-400" />,
ok: <CheckCircle className="w-4 h-4 text-green-400" />,
error: <XCircle className="w-4 h-4 text-red-400" />,
}[connectionStatus];
const statusText = {
idle: "Not checked",
checking: "Checking...",
ok: latencyMs !== null ? `Connected — ${latencyMs}ms` : "Connected",
error: "Connection failed",
}[connectionStatus];
return (
<div>
<SectionHeader title="API & Authentication" onReset={() => resetSettings("api")} />
<SettingRow
label="API key"
description="Your Anthropic API key. Stored locally and never sent to third parties."
stack
>
<div className="flex gap-2">
<div className="relative flex-1">
<input
type={showKey ? "text" : "password"}
value={settings.apiKey}
onChange={(e) => updateSettings({ apiKey: e.target.value })}
placeholder="sk-ant-..."
className={cn(
"w-full bg-surface-800 border border-surface-700 rounded-md px-3 py-1.5 pr-10 text-sm",
"text-surface-200 placeholder-surface-600 focus:outline-none focus:ring-1 focus:ring-brand-500 font-mono"
)}
/>
<button
onClick={() => setShowKey((v) => !v)}
className="absolute right-2 top-1/2 -translate-y-1/2 text-surface-500 hover:text-surface-300 transition-colors"
title={showKey ? "Hide key" : "Show key"}
>
{showKey ? <EyeOff className="w-4 h-4" /> : <Eye className="w-4 h-4" />}
</button>
</div>
</div>
{settings.apiKey && (
<p className="text-xs text-surface-500 mt-1">
Key ending in{" "}
<span className="font-mono text-surface-400">
...{settings.apiKey.slice(-4)}
</span>
</p>
)}
</SettingRow>
<SettingRow
label="API base URL"
description="Custom endpoint for enterprise or proxy setups. Leave as default for direct Anthropic access."
stack
>
<input
type="url"
value={settings.apiUrl}
onChange={(e) => updateSettings({ apiUrl: e.target.value })}
placeholder="http://localhost:3001"
className={cn(
"w-full bg-surface-800 border border-surface-700 rounded-md px-3 py-1.5 text-sm",
"text-surface-200 placeholder-surface-600 focus:outline-none focus:ring-1 focus:ring-brand-500 font-mono"
)}
/>
</SettingRow>
<SettingRow
label="Connection status"
description="Verify that the API endpoint is reachable."
>
<div className="flex items-center gap-3">
<div className="flex items-center gap-1.5">
{statusIcon}
<span
className={cn(
"text-xs",
connectionStatus === "ok" && "text-green-400",
connectionStatus === "error" && "text-red-400",
connectionStatus === "idle" && "text-surface-500",
connectionStatus === "checking" && "text-surface-400"
)}
>
{statusText}
</span>
</div>
<button
onClick={checkConnection}
disabled={connectionStatus === "checking"}
className={cn(
"px-3 py-1 text-xs rounded-md border border-surface-700 transition-colors",
"text-surface-300 hover:text-surface-100 hover:bg-surface-800",
"disabled:opacity-50 disabled:cursor-not-allowed"
)}
>
Check
</button>
</div>
</SettingRow>
<SettingRow
label="Streaming"
description="Stream responses token by token as they are generated."
>
<Toggle
checked={settings.streamingEnabled}
onChange={(v) => updateSettings({ streamingEnabled: v })}
/>
</SettingRow>
</div>
);
}