homelab-dashboard/app/components/dashboard-client.tsx
Bilal Teke b2d2b8b2f3 v3.1
2026-04-15 21:54:46 +02:00

105 lines
No EOL
3.5 KiB
TypeScript

'use client';
import { useState, useEffect } from 'react';
import { ServiceCheckResult } from '@/src/types/service';
import { services } from '@/src/data/services';
import { ServiceCard } from './ServiceCard';
export function DashboardClient() {
const [results, setResults] = useState<ServiceCheckResult[]>([]);
const [loading, setLoading] = useState(true);
const [error, setError] = useState<string | null>(null);
const fetchStatus = async () => {
try {
setError(null);
const response = await fetch('/api/status');
if (!response.ok) {
throw new Error('Failed to fetch status');
}
const data: ServiceCheckResult[] = await response.json();
setResults(data);
} catch (err) {
setError(err instanceof Error ? err.message : 'Unknown error');
} finally {
setLoading(false);
}
};
useEffect(() => {
fetchStatus();
// Auto-refresh every 30 seconds
const interval = setInterval(fetchStatus, 30000);
return () => clearInterval(interval);
}, []);
const getResultForService = (serviceId: string): ServiceCheckResult | undefined => {
return results.find(result => result.id === serviceId);
};
return (
<div className="min-h-screen bg-slate-50 dark:bg-slate-900">
{/* Header */}
<header className="bg-gradient-to-r from-slate-900 to-slate-800 border-b border-slate-700 shadow-lg">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-6">
<div className="flex flex-col gap-2">
<div className="flex items-center justify-between">
<h1 className="text-3xl sm:text-4xl font-bold text-white tracking-tight">
Homelab Dashboard
</h1>
<div className="text-sm text-slate-400">
{loading ? (
'Lade Status...'
) : (
'Automatische Aktualisierung: 30s'
)}
</div>
</div>
<p className="text-slate-400 text-sm">
Live-Status aller verwalteten Dienste
</p>
</div>
</div>
</header>
{/* Main Content */}
<main className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
{error && (
<div className="mb-8 p-4 bg-red-50 dark:bg-red-950 border border-red-200 dark:border-red-800 rounded-lg">
<div className="flex items-center gap-2">
<svg
className="w-5 h-5 text-red-600 dark:text-red-400"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
>
<path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={2}
d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-2.5L13.732 4c-.77-.833-1.964-.833-2.732 0L3.732 16.5c-.77.833.192 2.5 1.732 2.5z"
/>
</svg>
<span className="text-red-800 dark:text-red-200">
Fehler beim Laden der Status-Daten: {error}
</span>
</div>
</div>
)}
{/* Services Grid */}
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-6">
{services.map((service) => (
<ServiceCard
key={service.id}
service={service}
result={getResultForService(service.id)}
/>
))}
</div>
</main>
</div>
);
}