52 lines
1.3 KiB
TypeScript
52 lines
1.3 KiB
TypeScript
import { createFischereiApi } from '@kit/fischerei/api';
|
|
import {
|
|
FischereiTabNavigation,
|
|
CompetitionsDataTable,
|
|
} from '@kit/fischerei/components';
|
|
import { getSupabaseServerClient } from '@kit/supabase/server-client';
|
|
|
|
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 CompetitionsPage({
|
|
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 result = await api.listCompetitions(acct.id, {
|
|
page,
|
|
pageSize: 25,
|
|
});
|
|
|
|
return (
|
|
<CmsPageShell account={account} title="Fischerei - Wettbewerbe">
|
|
<FischereiTabNavigation account={account} activeTab="competitions" />
|
|
<CompetitionsDataTable
|
|
data={result.data}
|
|
total={result.total}
|
|
page={page}
|
|
pageSize={25}
|
|
account={account}
|
|
/>
|
|
</CmsPageShell>
|
|
);
|
|
}
|