mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-02-02 08:33:36 +00:00
This update standardizes the loading indicators by replacing all instances of Loader2 with the new Spinner component. The Spinner component provides a consistent look and feel for loading states throughout the UI, enhancing the user experience. Changes include: - Updated loading indicators in various components such as popovers, modals, and views. - Ensured that the Spinner component is used with appropriate sizes for different contexts. No functional changes were made; this is purely a visual and structural improvement.
687 lines
27 KiB
TypeScript
687 lines
27 KiB
TypeScript
import { useState, useEffect, useCallback } from 'react';
|
|
import { Button } from '@/components/ui/button';
|
|
import { Input } from '@/components/ui/input';
|
|
import { Label } from '@/components/ui/label';
|
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card';
|
|
import {
|
|
Accordion,
|
|
AccordionContent,
|
|
AccordionItem,
|
|
AccordionTrigger,
|
|
} from '@/components/ui/accordion';
|
|
import { useSetupStore } from '@/store/setup-store';
|
|
import { useAppStore } from '@/store/app-store';
|
|
import { getElectronAPI } from '@/lib/electron';
|
|
import {
|
|
CheckCircle2,
|
|
Key,
|
|
ArrowRight,
|
|
ArrowLeft,
|
|
ExternalLink,
|
|
Copy,
|
|
RefreshCw,
|
|
Download,
|
|
Info,
|
|
ShieldCheck,
|
|
XCircle,
|
|
Trash2,
|
|
} from 'lucide-react';
|
|
import { Spinner } from '@/components/ui/spinner';
|
|
import { toast } from 'sonner';
|
|
import { StatusBadge, TerminalOutput } from '../components';
|
|
import { useCliStatus, useCliInstallation, useTokenSave } from '../hooks';
|
|
import { AnthropicIcon } from '@/components/ui/provider-icon';
|
|
|
|
interface ClaudeSetupStepProps {
|
|
onNext: () => void;
|
|
onBack: () => void;
|
|
onSkip: () => void;
|
|
}
|
|
|
|
interface ClaudeSetupContentProps {
|
|
/** Hide header and navigation for embedded use */
|
|
embedded?: boolean;
|
|
}
|
|
|
|
type VerificationStatus = 'idle' | 'verifying' | 'verified' | 'error';
|
|
|
|
// Claude Setup Step
|
|
// Users can either:
|
|
// 1. Have Claude CLI installed and authenticated (verified by running a test query)
|
|
// 2. Provide an Anthropic API key manually
|
|
export function ClaudeSetupStep({ onNext, onBack, onSkip }: ClaudeSetupStepProps) {
|
|
const {
|
|
claudeCliStatus,
|
|
claudeAuthStatus,
|
|
setClaudeCliStatus,
|
|
setClaudeAuthStatus,
|
|
setClaudeInstallProgress,
|
|
} = useSetupStore();
|
|
const { setApiKeys, apiKeys } = useAppStore();
|
|
|
|
const [apiKey, setApiKey] = useState('');
|
|
|
|
// CLI Verification state
|
|
const [cliVerificationStatus, setCliVerificationStatus] = useState<VerificationStatus>('idle');
|
|
const [cliVerificationError, setCliVerificationError] = useState<string | null>(null);
|
|
|
|
// API Key Verification state
|
|
const [apiKeyVerificationStatus, setApiKeyVerificationStatus] =
|
|
useState<VerificationStatus>('idle');
|
|
const [apiKeyVerificationError, setApiKeyVerificationError] = useState<string | null>(null);
|
|
|
|
// Delete API Key state
|
|
const [isDeletingApiKey, setIsDeletingApiKey] = useState(false);
|
|
|
|
// Memoize API functions to prevent infinite loops
|
|
const statusApi = useCallback(
|
|
() => getElectronAPI().setup?.getClaudeStatus() || Promise.reject(),
|
|
[]
|
|
);
|
|
|
|
const installApi = useCallback(
|
|
() => getElectronAPI().setup?.installClaude() || Promise.reject(),
|
|
[]
|
|
);
|
|
|
|
const getStoreState = useCallback(() => useSetupStore.getState().claudeCliStatus, []);
|
|
|
|
// Use custom hooks
|
|
const { isChecking, checkStatus } = useCliStatus({
|
|
cliType: 'claude',
|
|
statusApi,
|
|
setCliStatus: setClaudeCliStatus,
|
|
setAuthStatus: setClaudeAuthStatus,
|
|
});
|
|
|
|
const onInstallSuccess = useCallback(() => {
|
|
checkStatus();
|
|
}, [checkStatus]);
|
|
|
|
const { isInstalling, installProgress, install } = useCliInstallation({
|
|
cliType: 'claude',
|
|
installApi,
|
|
onProgressEvent: getElectronAPI().setup?.onInstallProgress,
|
|
onSuccess: onInstallSuccess,
|
|
getStoreState,
|
|
});
|
|
|
|
const { isSaving: isSavingApiKey, saveToken: saveApiKeyToken } = useTokenSave({
|
|
provider: 'anthropic',
|
|
onSuccess: () => {
|
|
setClaudeAuthStatus({
|
|
authenticated: true,
|
|
method: 'api_key',
|
|
hasCredentialsFile: false,
|
|
apiKeyValid: true,
|
|
});
|
|
setApiKeys({ ...apiKeys, anthropic: apiKey });
|
|
toast.success('API key saved successfully!');
|
|
},
|
|
});
|
|
|
|
// Verify CLI authentication by running a test query (uses CLI credentials only, not API key)
|
|
const verifyCliAuth = useCallback(async () => {
|
|
setCliVerificationStatus('verifying');
|
|
setCliVerificationError(null);
|
|
|
|
try {
|
|
const api = getElectronAPI();
|
|
if (!api.setup?.verifyClaudeAuth) {
|
|
setCliVerificationStatus('error');
|
|
setCliVerificationError('Verification API not available');
|
|
return;
|
|
}
|
|
|
|
// Pass "cli" to verify CLI authentication only (ignores any API key)
|
|
const result = await api.setup.verifyClaudeAuth('cli');
|
|
|
|
// Check for "Limit reached" error - treat as unverified
|
|
const hasLimitReachedError =
|
|
result.error?.toLowerCase().includes('limit reached') ||
|
|
result.error?.toLowerCase().includes('rate limit');
|
|
|
|
if (result.authenticated && !hasLimitReachedError) {
|
|
setCliVerificationStatus('verified');
|
|
setClaudeAuthStatus({
|
|
authenticated: true,
|
|
method: 'cli_authenticated',
|
|
hasCredentialsFile: claudeAuthStatus?.hasCredentialsFile || false,
|
|
});
|
|
toast.success('Claude CLI authentication verified!');
|
|
} else {
|
|
setCliVerificationStatus('error');
|
|
setCliVerificationError(
|
|
hasLimitReachedError
|
|
? 'Rate limit reached. Please try again later.'
|
|
: result.error || 'Authentication failed'
|
|
);
|
|
setClaudeAuthStatus({
|
|
authenticated: false,
|
|
method: 'none',
|
|
hasCredentialsFile: claudeAuthStatus?.hasCredentialsFile || false,
|
|
});
|
|
}
|
|
} catch (error) {
|
|
const errorMessage = error instanceof Error ? error.message : 'Verification failed';
|
|
// Also check for limit reached in caught errors
|
|
const isLimitError =
|
|
errorMessage.toLowerCase().includes('limit reached') ||
|
|
errorMessage.toLowerCase().includes('rate limit');
|
|
setCliVerificationStatus('error');
|
|
setCliVerificationError(
|
|
isLimitError ? 'Rate limit reached. Please try again later.' : errorMessage
|
|
);
|
|
}
|
|
}, [claudeAuthStatus, setClaudeAuthStatus]);
|
|
|
|
// Verify API Key authentication (uses API key only)
|
|
const verifyApiKeyAuth = useCallback(async () => {
|
|
setApiKeyVerificationStatus('verifying');
|
|
setApiKeyVerificationError(null);
|
|
|
|
try {
|
|
const api = getElectronAPI();
|
|
if (!api.setup?.verifyClaudeAuth) {
|
|
setApiKeyVerificationStatus('error');
|
|
setApiKeyVerificationError('Verification API not available');
|
|
return;
|
|
}
|
|
|
|
// Pass "api_key" to verify API key authentication only
|
|
const result = await api.setup.verifyClaudeAuth('api_key');
|
|
|
|
if (result.authenticated) {
|
|
setApiKeyVerificationStatus('verified');
|
|
setClaudeAuthStatus({
|
|
authenticated: true,
|
|
method: 'api_key',
|
|
hasCredentialsFile: false,
|
|
apiKeyValid: true,
|
|
});
|
|
toast.success('API key authentication verified!');
|
|
} else {
|
|
setApiKeyVerificationStatus('error');
|
|
setApiKeyVerificationError(result.error || 'Authentication failed');
|
|
}
|
|
} catch (error) {
|
|
const errorMessage = error instanceof Error ? error.message : 'Verification failed';
|
|
setApiKeyVerificationStatus('error');
|
|
setApiKeyVerificationError(errorMessage);
|
|
}
|
|
}, [setClaudeAuthStatus]);
|
|
|
|
// Delete API Key
|
|
const deleteApiKey = useCallback(async () => {
|
|
setIsDeletingApiKey(true);
|
|
try {
|
|
const api = getElectronAPI();
|
|
if (!api.setup?.deleteApiKey) {
|
|
toast.error('Delete API not available');
|
|
return;
|
|
}
|
|
|
|
const result = await api.setup.deleteApiKey('anthropic');
|
|
if (result.success) {
|
|
// Clear local state
|
|
setApiKey('');
|
|
setApiKeys({ ...apiKeys, anthropic: '' });
|
|
setApiKeyVerificationStatus('idle');
|
|
setApiKeyVerificationError(null);
|
|
setClaudeAuthStatus({
|
|
authenticated: false,
|
|
method: 'none',
|
|
hasCredentialsFile: claudeAuthStatus?.hasCredentialsFile || false,
|
|
});
|
|
toast.success('API key deleted successfully');
|
|
} else {
|
|
toast.error(result.error || 'Failed to delete API key');
|
|
}
|
|
} catch (error) {
|
|
const errorMessage = error instanceof Error ? error.message : 'Failed to delete API key';
|
|
toast.error(errorMessage);
|
|
} finally {
|
|
setIsDeletingApiKey(false);
|
|
}
|
|
}, [apiKeys, setApiKeys, claudeAuthStatus, setClaudeAuthStatus]);
|
|
|
|
// Sync install progress to store
|
|
useEffect(() => {
|
|
setClaudeInstallProgress({
|
|
isInstalling,
|
|
output: installProgress.output,
|
|
});
|
|
}, [isInstalling, installProgress, setClaudeInstallProgress]);
|
|
|
|
// Check status on mount
|
|
useEffect(() => {
|
|
checkStatus();
|
|
}, [checkStatus]);
|
|
|
|
const copyCommand = (command: string) => {
|
|
navigator.clipboard.writeText(command);
|
|
toast.success('Command copied to clipboard');
|
|
};
|
|
|
|
// User is ready if either method is verified
|
|
const hasApiKey =
|
|
!!apiKeys.anthropic ||
|
|
claudeAuthStatus?.method === 'api_key' ||
|
|
claudeAuthStatus?.method === 'api_key_env';
|
|
const isCliVerified = cliVerificationStatus === 'verified';
|
|
const isApiKeyVerified = apiKeyVerificationStatus === 'verified';
|
|
const isReady = isCliVerified || isApiKeyVerified;
|
|
|
|
const getAuthMethodLabel = () => {
|
|
if (isApiKeyVerified) return 'API Key';
|
|
if (isCliVerified) return 'Claude CLI';
|
|
return null;
|
|
};
|
|
|
|
// Helper to get status badge for CLI
|
|
const getCliStatusBadge = () => {
|
|
if (cliVerificationStatus === 'verified') {
|
|
return <StatusBadge status="authenticated" label="Verified" />;
|
|
}
|
|
if (cliVerificationStatus === 'error') {
|
|
return <StatusBadge status="error" label="Error" />;
|
|
}
|
|
if (isChecking) {
|
|
return <StatusBadge status="checking" label="Checking..." />;
|
|
}
|
|
if (claudeCliStatus?.installed) {
|
|
// Installed but not yet verified - show yellow unverified badge
|
|
return <StatusBadge status="unverified" label="Unverified" />;
|
|
}
|
|
return <StatusBadge status="not_installed" label="Not Installed" />;
|
|
};
|
|
|
|
// Helper to get status badge for API Key
|
|
const getApiKeyStatusBadge = () => {
|
|
if (apiKeyVerificationStatus === 'verified') {
|
|
return <StatusBadge status="authenticated" label="Verified" />;
|
|
}
|
|
if (apiKeyVerificationStatus === 'error') {
|
|
return <StatusBadge status="error" label="Error" />;
|
|
}
|
|
if (hasApiKey) {
|
|
// API key configured but not yet verified - show yellow unverified badge
|
|
return <StatusBadge status="unverified" label="Unverified" />;
|
|
}
|
|
return <StatusBadge status="not_authenticated" label="Not Set" />;
|
|
};
|
|
|
|
return (
|
|
<div className="space-y-6">
|
|
<div className="text-center mb-8">
|
|
<div className="w-16 h-16 rounded-xl bg-brand-500/10 flex items-center justify-center mx-auto mb-4">
|
|
<AnthropicIcon className="w-8 h-8 text-brand-500" />
|
|
</div>
|
|
<h2 className="text-2xl font-bold text-foreground mb-2">Claude Code Setup</h2>
|
|
<p className="text-muted-foreground">Configure for code generation</p>
|
|
</div>
|
|
|
|
{/* Requirements Info */}
|
|
<Card className="bg-card border-border">
|
|
<CardHeader>
|
|
<div className="flex items-center justify-between">
|
|
<CardTitle className="text-lg flex items-center gap-2">
|
|
<Info className="w-5 h-5" />
|
|
Authentication Methods
|
|
</CardTitle>
|
|
<Button variant="ghost" size="sm" onClick={checkStatus} disabled={isChecking}>
|
|
{isChecking ? <Spinner size="sm" /> : <RefreshCw className="w-4 h-4" />}
|
|
</Button>
|
|
</div>
|
|
<CardDescription>
|
|
Choose one of the following methods to authenticate with Claude:
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<Accordion type="single" collapsible className="w-full">
|
|
{/* Option 1: Claude CLI */}
|
|
<AccordionItem value="cli" className="border-border">
|
|
<AccordionTrigger className="hover:no-underline">
|
|
<div className="flex items-center justify-between w-full pr-4">
|
|
<div className="flex items-center gap-3">
|
|
<AnthropicIcon
|
|
className={`w-5 h-5 ${
|
|
cliVerificationStatus === 'verified'
|
|
? 'text-green-500'
|
|
: 'text-muted-foreground'
|
|
}`}
|
|
/>
|
|
<div className="text-left">
|
|
<p className="font-medium text-foreground">Claude CLI</p>
|
|
<p className="text-sm text-muted-foreground">Use Claude Code subscription</p>
|
|
</div>
|
|
</div>
|
|
{getCliStatusBadge()}
|
|
</div>
|
|
</AccordionTrigger>
|
|
<AccordionContent className="pt-4 space-y-4">
|
|
{/* CLI Install Section */}
|
|
{!claudeCliStatus?.installed && (
|
|
<div className="space-y-4 p-4 rounded-lg bg-muted/30 border border-border">
|
|
<div className="flex items-center gap-2">
|
|
<Download className="w-4 h-4 text-muted-foreground" />
|
|
<p className="font-medium text-foreground">Install Claude CLI</p>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label className="text-sm text-muted-foreground">macOS / Linux</Label>
|
|
<div className="flex items-center gap-2">
|
|
<code className="flex-1 bg-muted px-3 py-2 rounded text-sm font-mono text-foreground">
|
|
curl -fsSL https://claude.ai/install.sh | bash
|
|
</code>
|
|
<Button
|
|
variant="ghost"
|
|
size="icon"
|
|
onClick={() =>
|
|
copyCommand('curl -fsSL https://claude.ai/install.sh | bash')
|
|
}
|
|
>
|
|
<Copy className="w-4 h-4" />
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label className="text-sm text-muted-foreground">Windows</Label>
|
|
<div className="flex items-center gap-2">
|
|
<code className="flex-1 bg-muted px-3 py-2 rounded text-sm font-mono text-foreground">
|
|
irm https://claude.ai/install.ps1 | iex
|
|
</code>
|
|
<Button
|
|
variant="ghost"
|
|
size="icon"
|
|
onClick={() => copyCommand('irm https://claude.ai/install.ps1 | iex')}
|
|
>
|
|
<Copy className="w-4 h-4" />
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
|
|
{isInstalling && <TerminalOutput lines={installProgress.output} />}
|
|
|
|
<Button
|
|
onClick={install}
|
|
disabled={isInstalling}
|
|
className="w-full bg-brand-500 hover:bg-brand-600 text-white"
|
|
data-testid="install-claude-button"
|
|
>
|
|
{isInstalling ? (
|
|
<>
|
|
<Spinner size="sm" className="mr-2" />
|
|
Installing...
|
|
</>
|
|
) : (
|
|
<>
|
|
<Download className="w-4 h-4 mr-2" />
|
|
Auto Install
|
|
</>
|
|
)}
|
|
</Button>
|
|
</div>
|
|
)}
|
|
|
|
{/* CLI Version Info */}
|
|
{claudeCliStatus?.installed && claudeCliStatus?.version && (
|
|
<p className="text-sm text-muted-foreground">
|
|
Version: {claudeCliStatus.version}
|
|
</p>
|
|
)}
|
|
|
|
{/* CLI Verification Status */}
|
|
{cliVerificationStatus === 'verifying' && (
|
|
<div className="flex items-center gap-3 p-4 rounded-lg bg-blue-500/10 border border-blue-500/20">
|
|
<Spinner size="md" />
|
|
<div>
|
|
<p className="font-medium text-foreground">Verifying CLI authentication...</p>
|
|
<p className="text-sm text-muted-foreground">Running a test query</p>
|
|
</div>
|
|
</div>
|
|
)}
|
|
|
|
{cliVerificationStatus === 'verified' && (
|
|
<div className="flex items-center gap-3 p-4 rounded-lg bg-green-500/10 border border-green-500/20">
|
|
<CheckCircle2 className="w-5 h-5 text-green-500" />
|
|
<div>
|
|
<p className="font-medium text-foreground">CLI Authentication verified!</p>
|
|
<p className="text-sm text-muted-foreground">
|
|
Your Claude CLI is working correctly.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
)}
|
|
|
|
{cliVerificationStatus === 'error' && cliVerificationError && (
|
|
<div className="flex items-start gap-3 p-4 rounded-lg bg-red-500/10 border border-red-500/20">
|
|
<XCircle className="w-5 h-5 text-red-500 shrink-0" />
|
|
<div className="flex-1">
|
|
<p className="font-medium text-foreground">Verification failed</p>
|
|
<p className="text-sm text-red-400 mt-1">{cliVerificationError}</p>
|
|
{cliVerificationError.includes('login') && (
|
|
<div className="mt-3 p-3 rounded bg-muted/50">
|
|
<p className="text-sm text-muted-foreground mb-2">
|
|
Run this command in your terminal:
|
|
</p>
|
|
<div className="flex items-center gap-2">
|
|
<code className="flex-1 bg-muted px-3 py-2 rounded text-sm font-mono text-foreground">
|
|
claude login
|
|
</code>
|
|
<Button
|
|
variant="ghost"
|
|
size="icon"
|
|
onClick={() => copyCommand('claude login')}
|
|
>
|
|
<Copy className="w-4 h-4" />
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
)}
|
|
|
|
{/* CLI Verify Button - Hide if CLI is verified */}
|
|
{cliVerificationStatus !== 'verified' && (
|
|
<Button
|
|
onClick={verifyCliAuth}
|
|
disabled={cliVerificationStatus === 'verifying' || !claudeCliStatus?.installed}
|
|
className="w-full bg-brand-500 hover:bg-brand-600 text-white"
|
|
data-testid="verify-cli-button"
|
|
>
|
|
{cliVerificationStatus === 'verifying' ? (
|
|
<>
|
|
<Spinner size="sm" className="mr-2" />
|
|
Verifying...
|
|
</>
|
|
) : cliVerificationStatus === 'error' ? (
|
|
<>
|
|
<RefreshCw className="w-4 h-4 mr-2" />
|
|
Retry Verification
|
|
</>
|
|
) : (
|
|
<>
|
|
<ShieldCheck className="w-4 h-4 mr-2" />
|
|
Verify CLI Authentication
|
|
</>
|
|
)}
|
|
</Button>
|
|
)}
|
|
</AccordionContent>
|
|
</AccordionItem>
|
|
|
|
{/* Option 2: API Key */}
|
|
<AccordionItem value="api-key" className="border-border">
|
|
<AccordionTrigger className="hover:no-underline">
|
|
<div className="flex items-center justify-between w-full pr-4">
|
|
<div className="flex items-center gap-3">
|
|
<Key
|
|
className={`w-5 h-5 ${
|
|
apiKeyVerificationStatus === 'verified'
|
|
? 'text-green-500'
|
|
: 'text-muted-foreground'
|
|
}`}
|
|
/>
|
|
<div className="text-left">
|
|
<p className="font-medium text-foreground">Anthropic API Key</p>
|
|
<p className="text-sm text-muted-foreground">
|
|
Pay-per-use with your own API key
|
|
</p>
|
|
</div>
|
|
</div>
|
|
{getApiKeyStatusBadge()}
|
|
</div>
|
|
</AccordionTrigger>
|
|
<AccordionContent className="pt-4 space-y-4">
|
|
{/* API Key Input */}
|
|
<div className="space-y-4 p-4 rounded-lg bg-muted/30 border border-border">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="anthropic-key" className="text-foreground">
|
|
Anthropic API Key
|
|
</Label>
|
|
<Input
|
|
id="anthropic-key"
|
|
type="password"
|
|
placeholder="sk-ant-..."
|
|
value={apiKey}
|
|
onChange={(e) => setApiKey(e.target.value)}
|
|
className="bg-input border-border text-foreground"
|
|
data-testid="anthropic-api-key-input"
|
|
/>
|
|
<p className="text-xs text-muted-foreground">
|
|
Don't have an API key?{' '}
|
|
<a
|
|
href="https://console.anthropic.com/settings/keys"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="text-brand-500 hover:underline"
|
|
>
|
|
Get one from Anthropic Console
|
|
<ExternalLink className="w-3 h-3 inline ml-1" />
|
|
</a>
|
|
</p>
|
|
</div>
|
|
|
|
<div className="flex gap-2">
|
|
<Button
|
|
onClick={() => saveApiKeyToken(apiKey)}
|
|
disabled={isSavingApiKey || !apiKey.trim()}
|
|
className="flex-1 bg-brand-500 hover:bg-brand-600 text-white"
|
|
data-testid="save-anthropic-key-button"
|
|
>
|
|
{isSavingApiKey ? (
|
|
<>
|
|
<Spinner size="sm" className="mr-2" />
|
|
Saving...
|
|
</>
|
|
) : (
|
|
'Save API Key'
|
|
)}
|
|
</Button>
|
|
{hasApiKey && (
|
|
<Button
|
|
onClick={deleteApiKey}
|
|
disabled={isDeletingApiKey}
|
|
variant="outline"
|
|
className="border-red-500/50 text-red-500 hover:bg-red-500/10 hover:text-red-400"
|
|
data-testid="delete-anthropic-key-button"
|
|
>
|
|
{isDeletingApiKey ? <Spinner size="sm" /> : <Trash2 className="w-4 h-4" />}
|
|
</Button>
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
{/* API Key Verification Status */}
|
|
{apiKeyVerificationStatus === 'verifying' && (
|
|
<div className="flex items-center gap-3 p-4 rounded-lg bg-blue-500/10 border border-blue-500/20">
|
|
<Spinner size="md" />
|
|
<div>
|
|
<p className="font-medium text-foreground">Verifying API key...</p>
|
|
<p className="text-sm text-muted-foreground">Running a test query</p>
|
|
</div>
|
|
</div>
|
|
)}
|
|
|
|
{apiKeyVerificationStatus === 'verified' && (
|
|
<div className="flex items-center gap-3 p-4 rounded-lg bg-green-500/10 border border-green-500/20">
|
|
<CheckCircle2 className="w-5 h-5 text-green-500" />
|
|
<div>
|
|
<p className="font-medium text-foreground">API Key verified!</p>
|
|
<p className="text-sm text-muted-foreground">
|
|
Your API key is working correctly.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
)}
|
|
|
|
{apiKeyVerificationStatus === 'error' && apiKeyVerificationError && (
|
|
<div className="flex items-start gap-3 p-4 rounded-lg bg-red-500/10 border border-red-500/20">
|
|
<XCircle className="w-5 h-5 text-red-500 shrink-0" />
|
|
<div className="flex-1">
|
|
<p className="font-medium text-foreground">Verification failed</p>
|
|
<p className="text-sm text-red-400 mt-1">{apiKeyVerificationError}</p>
|
|
</div>
|
|
</div>
|
|
)}
|
|
|
|
{/* API Key Verify Button - Hide if API key is verified */}
|
|
{apiKeyVerificationStatus !== 'verified' && (
|
|
<Button
|
|
onClick={verifyApiKeyAuth}
|
|
disabled={apiKeyVerificationStatus === 'verifying' || !hasApiKey}
|
|
className="w-full bg-brand-500 hover:bg-brand-600 text-white"
|
|
data-testid="verify-api-key-button"
|
|
>
|
|
{apiKeyVerificationStatus === 'verifying' ? (
|
|
<>
|
|
<Spinner size="sm" className="mr-2" />
|
|
Verifying...
|
|
</>
|
|
) : apiKeyVerificationStatus === 'error' ? (
|
|
<>
|
|
<RefreshCw className="w-4 h-4 mr-2" />
|
|
Retry Verification
|
|
</>
|
|
) : (
|
|
<>
|
|
<ShieldCheck className="w-4 h-4 mr-2" />
|
|
Verify API Key
|
|
</>
|
|
)}
|
|
</Button>
|
|
)}
|
|
</AccordionContent>
|
|
</AccordionItem>
|
|
</Accordion>
|
|
</CardContent>
|
|
</Card>
|
|
|
|
{/* Navigation */}
|
|
<div className="flex justify-between pt-4">
|
|
<Button variant="ghost" onClick={onBack} className="text-muted-foreground">
|
|
<ArrowLeft className="w-4 h-4 mr-2" />
|
|
Back
|
|
</Button>
|
|
<div className="flex gap-2">
|
|
<Button variant="ghost" onClick={onSkip} className="text-muted-foreground">
|
|
Skip for now
|
|
</Button>
|
|
<Button
|
|
onClick={onNext}
|
|
disabled={!isReady}
|
|
className="bg-brand-500 hover:bg-brand-600 text-white disabled:opacity-50 disabled:cursor-not-allowed"
|
|
data-testid="claude-next-button"
|
|
>
|
|
Continue
|
|
<ArrowRight className="w-4 h-4 ml-2" />
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|