101 lines
3.7 KiB
TypeScript
101 lines
3.7 KiB
TypeScript
import { Ticket, Plus } from 'lucide-react';
|
|
|
|
import { getSupabaseServerClient } from '@kit/supabase/server-client';
|
|
import { Button } from '@kit/ui/button';
|
|
import { Card, CardContent, CardHeader, CardTitle } from '@kit/ui/card';
|
|
|
|
import { createEventManagementApi } from '@kit/event-management/api';
|
|
|
|
import { CmsPageShell } from '~/components/cms-page-shell';
|
|
import { EmptyState } from '~/components/empty-state';
|
|
|
|
interface PageProps {
|
|
params: Promise<{ account: string }>;
|
|
}
|
|
|
|
export default async function HolidayPassesPage({ 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 = createEventManagementApi(client);
|
|
const passes = await api.listHolidayPasses(acct.id);
|
|
|
|
return (
|
|
<CmsPageShell account={account} title="Ferienpässe">
|
|
<div className="flex w-full flex-col gap-6">
|
|
<div className="flex items-center justify-between">
|
|
<div>
|
|
<h1 className="text-2xl font-bold">Ferienpässe</h1>
|
|
<p className="text-muted-foreground">Ferienpässe und Ferienprogramme verwalten</p>
|
|
</div>
|
|
<Button>
|
|
<Plus className="mr-2 h-4 w-4" />
|
|
Neuer Ferienpass
|
|
</Button>
|
|
</div>
|
|
|
|
{passes.length === 0 ? (
|
|
<EmptyState
|
|
icon={<Ticket className="h-8 w-8" />}
|
|
title="Keine Ferienpässe vorhanden"
|
|
description="Erstellen Sie Ihren ersten Ferienpass."
|
|
actionLabel="Neuer Ferienpass"
|
|
/>
|
|
) : (
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle>Alle Ferienpässe ({passes.length})</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">Name</th>
|
|
<th className="p-3 text-left font-medium">Jahr</th>
|
|
<th className="p-3 text-right font-medium">Preis</th>
|
|
<th className="p-3 text-left font-medium">Gültig von</th>
|
|
<th className="p-3 text-left font-medium">Gültig bis</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{passes.map((pass: Record<string, unknown>) => (
|
|
<tr key={String(pass.id)} className="border-b hover:bg-muted/30">
|
|
<td className="p-3 font-medium">{String(pass.name)}</td>
|
|
<td className="p-3">{String(pass.year ?? '—')}</td>
|
|
<td className="p-3 text-right">
|
|
{pass.price != null
|
|
? `${Number(pass.price).toFixed(2)} €`
|
|
: '—'}
|
|
</td>
|
|
<td className="p-3">
|
|
{pass.valid_from
|
|
? new Date(String(pass.valid_from)).toLocaleDateString('de-DE')
|
|
: '—'}
|
|
</td>
|
|
<td className="p-3">
|
|
{pass.valid_until
|
|
? new Date(String(pass.valid_until)).toLocaleDateString('de-DE')
|
|
: '—'}
|
|
</td>
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
)}
|
|
</div>
|
|
</CmsPageShell>
|
|
);
|
|
}
|