Files
myeasycms-v2/apps/web/app/[locale]/home/[account]/fischerei/catch-books/page.tsx
T. Zehetbauer 7b078f298b
Some checks failed
Workflow / ʦ TypeScript (push) Failing after 4m50s
Workflow / ⚫️ Test (push) Has been skipped
feat: enhance API response handling and add new components for module management
2026-04-01 15:18:24 +02:00

79 lines
2.2 KiB
TypeScript

import { createFischereiApi } from '@kit/fischerei/api';
import {
FischereiTabNavigation,
CatchBooksDataTable,
} from '@kit/fischerei/components';
import { getSupabaseServerClient } from '@kit/supabase/server-client';
import { ListToolbar } from '@kit/ui/list-toolbar';
import { AccountNotFound } from '~/components/account-not-found';
import { CmsPageShell } from '~/components/cms-page-shell';
interface Props {
params: Promise<{ account: string }>;
searchParams: Promise<Record<string, string | string[] | undefined>>;
}
export default async function CatchBooksPage({ params, searchParams }: Props) {
const { account } = await params;
const search = await searchParams;
const client = getSupabaseServerClient();
const { data: acct } = await client
.from('accounts')
.select('id')
.eq('slug', account)
.single();
if (!acct) return <AccountNotFound />;
const api = createFischereiApi(client);
const page = Number(search.page) || 1;
const currentYear = new Date().getFullYear();
const yearOptions = [
{ value: '', label: 'Alle Jahre' },
...Array.from({ length: 4 }, (_, i) => ({
value: String(currentYear - i),
label: String(currentYear - i),
})),
];
const result = await api.listCatchBooks(acct.id, {
search: search.q as string,
year: search.year ? Number(search.year) : undefined,
status: search.status as string,
page,
pageSize: 25,
});
return (
<CmsPageShell account={account} title="Fischerei - Fangbücher">
<FischereiTabNavigation account={account} activeTab="catch-books" />
<ListToolbar
searchPlaceholder="Mitglied suchen..."
filters={[
{ param: 'year', label: 'Jahr', options: yearOptions },
{
param: 'status',
label: 'Status',
options: [
{ value: '', label: 'Alle' },
{ value: 'open', label: 'Offen' },
{ value: 'submitted', label: 'Eingereicht' },
{ value: 'checked', label: 'Geprüft' },
],
},
]}
/>
<CatchBooksDataTable
data={result.data}
total={result.total}
page={page}
pageSize={25}
account={account}
/>
</CmsPageShell>
);
}