"use client"; import { useEffect, useState } from 'react'; import { ScrollArea } from '@/components/ui/scroll-area'; import { Badge } from '@/components/ui/badge'; import { Button } from '@/components/ui/button'; import { Trash2, RefreshCw, FileText } from 'lucide-react'; import { Card, CardContent } from '@/components/ui/card'; interface LogEntry { id: string; timestamp: string; method: string; url: string; status: number; duration: number; } export function ApiLogs() { const [logs, setLogs] = useState([]); const [loading, setLoading] = useState(true); const fetchLogs = async () => { try { setLoading(true); const response = await fetch('/api/vultr/logs'); if (!response.ok) { throw new Error('Failed to fetch logs'); } const data = await response.json(); setLogs(data.logs || []); } catch (error) { console.error('Error fetching logs:', error); } finally { setLoading(false); } }; const clearLogs = async () => { try { const response = await fetch('/api/vultr/logs', { method: 'DELETE', }); if (!response.ok) { throw new Error('Failed to clear logs'); } setLogs([]); } catch (error) { console.error('Error clearing logs:', error); } }; useEffect(() => { fetchLogs(); }, []); const getMethodColor = (method: string) => { const colors: Record = { GET: 'bg-blue-500/10 text-blue-500 dark:bg-blue-500/20', POST: 'bg-green-500/10 text-green-500 dark:bg-green-500/20', PUT: 'bg-amber-500/10 text-amber-500 dark:bg-amber-500/20', DELETE: 'bg-red-500/10 text-red-500 dark:bg-red-500/20', }; return colors[method] || 'bg-gray-500/10 text-gray-500 dark:bg-gray-500/20'; }; const getStatusColor = (status: number) => { if (status >= 200 && status < 300) { return 'bg-green-500/10 text-green-500 dark:bg-green-500/20'; } else if (status >= 300 && status < 400) { return 'bg-blue-500/10 text-blue-500 dark:bg-blue-500/20'; } else if (status >= 400 && status < 500) { return 'bg-amber-500/10 text-amber-500 dark:bg-amber-500/20'; } else { return 'bg-red-500/10 text-red-500 dark:bg-red-500/20'; } }; return (

API Request Logs

{logs.length === 0 ? (

No API Logs

There are no API request logs to display. Logs will appear here as you interact with the Vultr API.

) : (
{logs.map((log) => (
{log.method} {log.status}
{new Date(log.timestamp).toLocaleString()}
{log.url}
Duration: {log.duration}ms
))}
)}
); }