Files
myeasycms-v2/apps/web/app/[locale]/home/[account]/courses/page.tsx
2026-03-29 19:44:57 +02:00

181 lines
6.2 KiB
TypeScript

import Link from 'next/link';
import { GraduationCap, Plus, Users, Calendar, Euro } from 'lucide-react';
import { getSupabaseServerClient } from '@kit/supabase/server-client';
import { Badge } from '@kit/ui/badge';
import { Button } from '@kit/ui/button';
import { Card, CardContent, CardHeader, CardTitle } from '@kit/ui/card';
import { createCourseManagementApi } from '@kit/course-management/api';
import { CmsPageShell } from '~/components/cms-page-shell';
import { EmptyState } from '~/components/empty-state';
import { StatsCard } from '~/components/stats-card';
interface PageProps {
params: Promise<{ account: string }>;
}
const STATUS_BADGE_VARIANT: Record<
string,
'secondary' | 'default' | 'info' | 'outline' | 'destructive'
> = {
planned: 'secondary',
open: 'default',
running: 'info',
completed: 'outline',
cancelled: 'destructive',
};
const STATUS_LABEL: Record<string, string> = {
planned: 'Geplant',
open: 'Offen',
running: 'Laufend',
completed: 'Abgeschlossen',
cancelled: 'Abgesagt',
};
export default async function CoursesPage({ params }: PageProps) {
const { account } = await params;
const client = getSupabaseServerClient();
const { data: acct } = await client
.from('accounts')
.select('id')
.eq('slug', account)
.single();
if (!acct) return <div>Konto nicht gefunden</div>;
const api = createCourseManagementApi(client);
const [courses, stats] = await Promise.all([
api.listCourses(acct.id, { page: 1 }),
api.getStatistics(acct.id),
]);
return (
<CmsPageShell account={account} title="Kurse">
<div className="flex w-full flex-col gap-6">
{/* Header */}
<div className="flex items-center justify-between">
<div>
<h1 className="text-2xl font-bold">Kurse</h1>
<p className="text-muted-foreground">
Kursangebot verwalten
</p>
</div>
<Link href={`/home/${account}/courses/new`}>
<Button>
<Plus className="mr-2 h-4 w-4" />
Neuer Kurs
</Button>
</Link>
</div>
{/* Stats */}
<div className="grid grid-cols-1 gap-4 sm:grid-cols-2 lg:grid-cols-4">
<StatsCard
title="Gesamt"
value={stats.totalCourses}
icon={<GraduationCap className="h-5 w-5" />}
/>
<StatsCard
title="Aktiv"
value={stats.openCourses}
icon={<Calendar className="h-5 w-5" />}
/>
<StatsCard
title="Abgeschlossen"
value={stats.completedCourses}
icon={<GraduationCap className="h-5 w-5" />}
/>
<StatsCard
title="Teilnehmer"
value={stats.totalParticipants}
icon={<Users className="h-5 w-5" />}
/>
</div>
{/* Table or Empty State */}
{courses.data.length === 0 ? (
<EmptyState
icon={<GraduationCap className="h-8 w-8" />}
title="Keine Kurse vorhanden"
description="Erstellen Sie Ihren ersten Kurs, um loszulegen."
actionLabel="Neuer Kurs"
actionHref={`/home/${account}/courses/new`}
/>
) : (
<Card>
<CardHeader>
<CardTitle>Alle Kurse ({courses.total})</CardTitle>
</CardHeader>
<CardContent>
<div className="rounded-md border">
<table className="w-full text-sm">
<thead>
<tr className="border-b bg-muted/50">
<th className="p-3 text-left font-medium">Kursnr.</th>
<th className="p-3 text-left font-medium">Name</th>
<th className="p-3 text-left font-medium">Beginn</th>
<th className="p-3 text-left font-medium">Ende</th>
<th className="p-3 text-left font-medium">Status</th>
<th className="p-3 text-right font-medium">Teilnehmer</th>
<th className="p-3 text-right font-medium">Gebühr</th>
</tr>
</thead>
<tbody>
{courses.data.map((course: Record<string, unknown>) => (
<tr key={String(course.id)} className="border-b hover:bg-muted/30">
<td className="p-3 font-mono text-xs">
{String(course.course_number ?? '—')}
</td>
<td className="p-3 font-medium">
<Link
href={`/home/${account}/courses/${String(course.id)}`}
className="hover:underline"
>
{String(course.name)}
</Link>
</td>
<td className="p-3">
{course.start_date
? new Date(String(course.start_date)).toLocaleDateString('de-DE')
: '—'}
</td>
<td className="p-3">
{course.end_date
? new Date(String(course.end_date)).toLocaleDateString('de-DE')
: '—'}
</td>
<td className="p-3">
<Badge
variant={STATUS_BADGE_VARIANT[String(course.status)] ?? 'secondary'}
>
{STATUS_LABEL[String(course.status)] ?? String(course.status)}
</Badge>
</td>
<td className="p-3 text-right">
{String(course.capacity ?? '—')}
</td>
<td className="p-3 text-right">
{course.fee != null
? `${Number(course.fee).toFixed(2)}`
: '—'}
</td>
</tr>
))}
</tbody>
</table>
</div>
</CardContent>
</Card>
)}
</div>
</CmsPageShell>
);
}