File size: 15,395 Bytes
f56a29b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 |
import { useState, useCallback, useEffect } from 'react';
import { Button } from '@/components/ui/button';
import { Input } from '@/components/ui/input';
import { Label } from '@/components/ui/label';
import { Checkbox } from '@/components/ui/checkbox';
import {
AlertDialog,
AlertDialogAction,
AlertDialogCancel,
AlertDialogContent,
AlertDialogDescription,
AlertDialogFooter,
AlertDialogHeader,
AlertDialogTitle,
} from '@/components/ui/alert-dialog';
import {
Loader2,
CheckCircle2,
XCircle,
Eye,
EyeOff,
RotateCcw,
Plus,
Zap,
Settings2,
Trash2,
Sparkles,
Wrench,
FileText,
Send,
} from 'lucide-react';
import { useI18n } from '@/lib/hooks/use-i18n';
import type { ProviderConfig } from '@/lib/ai/providers';
import type { ProvidersConfig } from '@/lib/types/settings';
import { createVerifyModelRequest, formatContextWindow } from './utils';
import { cn } from '@/lib/utils';
interface ProviderConfigPanelProps {
provider: ProviderConfig;
initialApiKey: string;
initialBaseUrl: string;
initialRequiresApiKey: boolean;
providersConfig: ProvidersConfig;
onConfigChange: (apiKey: string, baseUrl: string, requiresApiKey: boolean) => void;
onSave: () => void; // Auto-save on blur
onEditModel: (index: number) => void;
onDeleteModel: (index: number) => void;
onAddModel: () => void;
onResetToDefault?: () => void; // Reset provider to default configuration
isBuiltIn: boolean; // To determine if reset button should be shown
}
export function ProviderConfigPanel({
provider,
initialApiKey,
initialBaseUrl,
initialRequiresApiKey,
providersConfig,
onConfigChange,
onSave,
onEditModel,
onDeleteModel,
onAddModel,
onResetToDefault,
isBuiltIn,
}: ProviderConfigPanelProps) {
const { t } = useI18n();
// Local state for this provider
const [apiKey, setApiKey] = useState(initialApiKey);
const [baseUrl, setBaseUrl] = useState(initialBaseUrl);
const [requiresApiKey, setRequiresApiKey] = useState(initialRequiresApiKey);
const [showApiKey, setShowApiKey] = useState(false);
const [testStatus, setTestStatus] = useState<'idle' | 'testing' | 'success' | 'error'>('idle');
const [testMessage, setTestMessage] = useState('');
const [showResetDialog, setShowResetDialog] = useState(false);
// Update local state when provider changes or initial values change
useEffect(() => {
// eslint-disable-next-line react-hooks/set-state-in-effect -- Sync local state from props on provider change
setApiKey(initialApiKey);
setBaseUrl(initialBaseUrl);
setRequiresApiKey(initialRequiresApiKey);
setTestStatus('idle');
setTestMessage('');
}, [provider.id, initialApiKey, initialBaseUrl, initialRequiresApiKey]);
// Notify parent of changes
const handleApiKeyChange = (key: string) => {
setApiKey(key);
onConfigChange(key, baseUrl, requiresApiKey);
};
const handleBaseUrlChange = (url: string) => {
setBaseUrl(url);
onConfigChange(apiKey, url, requiresApiKey);
};
const handleRequiresApiKeyChange = (requires: boolean) => {
setRequiresApiKey(requires);
onConfigChange(apiKey, baseUrl, requires);
};
const handleTestApi = useCallback(async () => {
setTestStatus('testing');
setTestMessage('');
const availableModels = providersConfig[provider.id]?.models || [];
if (availableModels.length === 0) {
setTestStatus('error');
setTestMessage(t('settings.noModelsAvailable') || 'No models available for testing');
return;
}
const testModelId = availableModels[0].id;
try {
const response = await fetch('/api/verify-model', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(
createVerifyModelRequest({
providerId: provider.id,
modelId: testModelId,
apiKey,
baseUrl,
providerType: provider.type,
requiresApiKey,
}),
),
});
const data = await response.json();
if (data.success) {
setTestStatus('success');
setTestMessage(t('settings.connectionSuccess'));
} else {
setTestStatus('error');
setTestMessage(data.error || t('settings.connectionFailed'));
}
} catch (_error) {
setTestStatus('error');
setTestMessage(t('settings.connectionFailed'));
}
}, [apiKey, baseUrl, provider.id, provider.type, requiresApiKey, providersConfig, t]);
const models = providersConfig[provider.id]?.models || [];
const isServerConfigured = providersConfig[provider.id]?.isServerConfigured;
return (
<div className="space-y-6 max-w-3xl">
{/* Server-configured notice */}
{isServerConfigured && (
<div className="rounded-lg border border-blue-200 bg-blue-50 dark:border-blue-800 dark:bg-blue-950/30 p-3 text-sm text-blue-700 dark:text-blue-300">
{t('settings.serverConfiguredNotice')}
</div>
)}
{/* API Key */}
<div className="space-y-2">
<Label>{t('settings.apiSecret')}</Label>
<div className="flex gap-2">
<div className="relative flex-1">
<Input
name={`llm-api-key-${provider.id}`}
type={showApiKey ? 'text' : 'password'}
autoComplete="new-password"
autoCapitalize="none"
autoCorrect="off"
spellCheck={false}
placeholder={isServerConfigured ? t('settings.optionalOverride') : 'sk-...'}
value={apiKey}
onChange={(e) => handleApiKeyChange(e.target.value)}
onBlur={onSave}
disabled={!requiresApiKey && !isServerConfigured}
className="h-8 pr-8"
/>
<button
type="button"
onClick={() => setShowApiKey(!showApiKey)}
className="absolute right-2 top-1/2 -translate-y-1/2 text-muted-foreground hover:text-foreground"
disabled={!requiresApiKey}
>
{showApiKey ? <EyeOff className="h-4 w-4" /> : <Eye className="h-4 w-4" />}
</button>
</div>
<Button
variant="outline"
size="sm"
onClick={handleTestApi}
disabled={
testStatus === 'testing' || (requiresApiKey && !apiKey && !isServerConfigured)
}
className="gap-1.5"
>
{testStatus === 'testing' ? (
<Loader2 className="h-3.5 w-3.5 animate-spin" />
) : (
<>
<Zap className="h-3.5 w-3.5" />
{t('settings.testConnection')}
</>
)}
</Button>
</div>
{testMessage && (
<div
className={cn(
'rounded-lg p-3 text-sm overflow-hidden',
testStatus === 'success' && 'bg-green-50 text-green-700 border border-green-200',
testStatus === 'error' && 'bg-red-50 text-red-700 border border-red-200',
)}
>
<div className="flex items-start gap-2 min-w-0">
{testStatus === 'success' && <CheckCircle2 className="h-4 w-4 mt-0.5 shrink-0" />}
{testStatus === 'error' && <XCircle className="h-4 w-4 mt-0.5 shrink-0" />}
<p className="flex-1 min-w-0 break-all">{testMessage}</p>
</div>
</div>
)}
<div className="flex items-center space-x-2">
<Checkbox
id={`requires-api-key-${provider.id}`}
checked={requiresApiKey}
onCheckedChange={(checked) => {
handleRequiresApiKeyChange(checked as boolean);
onSave();
}}
/>
<label
htmlFor={`requires-api-key-${provider.id}`}
className="text-sm cursor-pointer text-muted-foreground"
>
{t('settings.requiresApiKey')}
</label>
</div>
</div>
{/* API Host */}
<div className="space-y-2">
<Label>{t('settings.apiHost')}</Label>
<Input
name={`llm-base-url-${provider.id}`}
type="url"
autoComplete="off"
autoCapitalize="none"
autoCorrect="off"
spellCheck={false}
placeholder={provider.defaultBaseUrl || 'https://api.example.com/v1'}
value={baseUrl}
onChange={(e) => handleBaseUrlChange(e.target.value)}
onBlur={onSave}
className="h-8"
/>
{provider.alternateBaseUrls && provider.alternateBaseUrls.length > 0 && (
<div className="flex flex-wrap items-center gap-1.5">
{provider.alternateBaseUrls.map((alt) => {
const active = (baseUrl || provider.defaultBaseUrl) === alt.url;
return (
<button
key={alt.url}
type="button"
onClick={() => {
handleBaseUrlChange(alt.url);
onSave();
}}
className={cn(
'px-2 py-0.5 text-xs rounded-md border transition-colors',
active
? 'bg-primary text-primary-foreground border-primary'
: 'bg-background text-muted-foreground border-border hover:bg-muted',
)}
>
{t(alt.label)}
</button>
);
})}
</div>
)}
{(() => {
const effectiveBaseUrl = baseUrl || provider.defaultBaseUrl || '';
if (!effectiveBaseUrl) return null;
// Generate endpoint path based on provider type
let endpointPath = '';
switch (provider.type) {
case 'openai':
endpointPath = '/chat/completions';
break;
case 'anthropic':
endpointPath = '/messages';
break;
case 'google':
endpointPath = '/models/[model]';
break;
default:
endpointPath = '';
}
const fullUrl = effectiveBaseUrl + endpointPath;
return (
<p className="text-xs text-muted-foreground break-all">
{t('settings.requestUrl')}: {fullUrl}
</p>
);
})()}
</div>
{/* Models - No selection state, just list for management */}
<div className="space-y-3">
<div className="flex items-center justify-between flex-wrap gap-2">
<Label className="text-base">{t('settings.models')}</Label>
<div className="flex items-center gap-2 flex-wrap">
{isBuiltIn && onResetToDefault && (
<Button
variant="outline"
size="sm"
onClick={() => setShowResetDialog(true)}
className="gap-1.5"
>
<RotateCcw className="h-3.5 w-3.5" />
{t('settings.reset')}
</Button>
)}
<Button variant="outline" size="sm" onClick={onAddModel} className="gap-1.5">
<Plus className="h-3.5 w-3.5" />
{t('settings.addNewModel')}
</Button>
</div>
</div>
<div className="space-y-1.5">
{models.map((model, index) => {
return (
<div
key={model.id}
className="flex items-center justify-between p-3 rounded-lg border border-border/50 bg-card"
>
<div className="flex-1">
<div className="font-mono text-sm font-medium mb-1.5">{model.name}</div>
<div className="flex items-center gap-2 text-xs text-muted-foreground">
{/* Capabilities */}
<div className="flex items-center gap-1">
{model.capabilities?.vision && (
<div title={t('settings.capabilities.vision')}>
<Sparkles className="h-3 w-3" />
</div>
)}
{model.capabilities?.tools && (
<div title={t('settings.capabilities.tools')}>
<Wrench className="h-3 w-3" />
</div>
)}
{model.capabilities?.streaming && (
<div title={t('settings.capabilities.streaming')}>
<Zap className="h-3 w-3" />
</div>
)}
</div>
{/* Context Window */}
{model.contextWindow && (
<span className="flex items-center gap-0.5">
<FileText className="h-3 w-3" />
<span className="text-[10px]">
{formatContextWindow(model.contextWindow)}
</span>
</span>
)}
{/* Output Window */}
{model.outputWindow && (
<span className="flex items-center gap-0.5">
<Send className="h-3 w-3" />
<span className="text-[10px]">
{formatContextWindow(model.outputWindow)}
</span>
</span>
)}
</div>
</div>
{/* Edit/Delete Buttons */}
<div className="flex items-center gap-1">
<Button
variant="outline"
size="sm"
className="h-8 px-2"
onClick={() => onEditModel(index)}
title={t('settings.editModel')}
>
<Settings2 className="h-3.5 w-3.5" />
</Button>
<Button
variant="outline"
size="sm"
className="h-8 px-2 text-destructive hover:text-destructive hover:bg-destructive/10"
onClick={() => onDeleteModel(index)}
title={t('settings.deleteModel')}
>
<Trash2 className="h-3.5 w-3.5" />
</Button>
</div>
</div>
);
})}
</div>
</div>
{/* Reset Confirmation Dialog */}
<AlertDialog open={showResetDialog} onOpenChange={setShowResetDialog}>
<AlertDialogContent>
<AlertDialogHeader>
<AlertDialogTitle>{t('settings.resetToDefault')}</AlertDialogTitle>
<AlertDialogDescription>{t('settings.resetConfirmDescription')}</AlertDialogDescription>
</AlertDialogHeader>
<AlertDialogFooter>
<AlertDialogCancel>{t('settings.cancelEdit')}</AlertDialogCancel>
<AlertDialogAction
onClick={() => {
setShowResetDialog(false);
onResetToDefault?.();
}}
>
{t('settings.confirmReset')}
</AlertDialogAction>
</AlertDialogFooter>
</AlertDialogContent>
</AlertDialog>
</div>
);
}
|