Major changes: - Docker Compose: full Supabase stack (11 services) equivalent to supabase CLI - Fischerei module: 16 DB tables, waters/species/stocking/catch books/competitions - Sitzungsprotokolle module: meeting protocols, agenda items, task tracking - Verbandsverwaltung module: federation management, member clubs, contacts, fees - Per-account module activation via Modules page toggle - Site Builder: live CMS data in Puck blocks (courses, events, membership registration) - Public registration APIs: course signup, event registration, membership application - Document generation: PDF member cards, Excel reports, HTML labels - Landing page: real Com.BISS content (no filler text) - UX audit fixes: AccountNotFound component, shared status badges, confirm dialog, pagination, duplicate heading removal, emoji→badge replacement, a11y fixes - QA: healthcheck fix, API auth fix, enum mismatch fix, password required attribute
104 lines
3.9 KiB
TypeScript
104 lines
3.9 KiB
TypeScript
import { Ticket, Plus } from 'lucide-react';
|
|
|
|
import { getTranslations } from 'next-intl/server';
|
|
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';
|
|
import { AccountNotFound } from '~/components/account-not-found';
|
|
|
|
interface PageProps {
|
|
params: Promise<{ account: string }>;
|
|
}
|
|
|
|
export default async function HolidayPassesPage({ params }: PageProps) {
|
|
const { account } = await params;
|
|
const client = getSupabaseServerClient();
|
|
const t = await getTranslations('cms.events');
|
|
|
|
const { data: acct } = await client
|
|
.from('accounts')
|
|
.select('id')
|
|
.eq('slug', account)
|
|
.single();
|
|
|
|
if (!acct) return <AccountNotFound />;
|
|
|
|
const api = createEventManagementApi(client);
|
|
const passes = await api.listHolidayPasses(acct.id);
|
|
|
|
return (
|
|
<CmsPageShell account={account} title={t('holidayPasses')}>
|
|
<div className="flex w-full flex-col gap-6">
|
|
<div className="flex items-center justify-between">
|
|
<div>
|
|
<h1 className="text-2xl font-bold">{t('holidayPasses')}</h1>
|
|
<p className="text-muted-foreground">{t('holidayPassesDescription')}</p>
|
|
</div>
|
|
<Button>
|
|
<Plus className="mr-2 h-4 w-4" />
|
|
{t('newHolidayPass')}
|
|
</Button>
|
|
</div>
|
|
|
|
{passes.length === 0 ? (
|
|
<EmptyState
|
|
icon={<Ticket className="h-8 w-8" />}
|
|
title={t('noHolidayPasses')}
|
|
description={t('noHolidayPassesDescription')}
|
|
actionLabel={t('newHolidayPass')}
|
|
/>
|
|
) : (
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle>{t('allHolidayPasses')} ({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">{t('name')}</th>
|
|
<th className="p-3 text-left font-medium">{t('year')}</th>
|
|
<th className="p-3 text-right font-medium">{t('price')}</th>
|
|
<th className="p-3 text-left font-medium">{t('validFrom')}</th>
|
|
<th className="p-3 text-left font-medium">{t('validUntil')}</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>
|
|
);
|
|
}
|