feat: enhance API response handling and add new components for module management
This commit is contained in:
@@ -4,6 +4,7 @@ import {
|
||||
CompetitionsDataTable,
|
||||
} 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';
|
||||
@@ -31,7 +32,19 @@ export default async function CompetitionsPage({
|
||||
|
||||
const api = createFischereiApi(client);
|
||||
const page = Number(search.page) || 1;
|
||||
const yearParam = search.year ? Number(search.year) : undefined;
|
||||
|
||||
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.listCompetitions(acct.id, {
|
||||
year: yearParam,
|
||||
page,
|
||||
pageSize: 25,
|
||||
});
|
||||
@@ -39,6 +52,10 @@ export default async function CompetitionsPage({
|
||||
return (
|
||||
<CmsPageShell account={account} title="Fischerei - Wettbewerbe">
|
||||
<FischereiTabNavigation account={account} activeTab="competitions" />
|
||||
<ListToolbar
|
||||
showSearch={false}
|
||||
filters={[{ param: 'year', label: 'Jahr', options: yearOptions }]}
|
||||
/>
|
||||
<CompetitionsDataTable
|
||||
data={result.data}
|
||||
total={result.total}
|
||||
|
||||
Reference in New Issue
Block a user