feat: enhance API response handling and add new components for module management
This commit is contained in:
@@ -4,6 +4,7 @@ import {
|
||||
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';
|
||||
@@ -28,7 +29,18 @@ export default async function CatchBooksPage({ params, searchParams }: Props) {
|
||||
|
||||
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,
|
||||
@@ -38,6 +50,22 @@ export default async function CatchBooksPage({ params, searchParams }: Props) {
|
||||
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}
|
||||
|
||||
Reference in New Issue
Block a user