Commits all remaining uncommitted local work: - apps/web: fischerei, verband, modules, members-cms, documents, newsletter, meetings, site-builder, courses, bookings, events, finance pages and components - apps/web: marketing page updates, layout, paths config, next.config.mjs, styles/makerkit.css - apps/web/i18n: documents, fischerei, marketing, verband (de+en) - packages/features: finance, fischerei, member-management, module-builder, newsletter, sitzungsprotokolle, verbandsverwaltung server APIs and components - packages/ui: button.tsx updates - pnpm-lock.yaml
69 lines
1.7 KiB
TypeScript
69 lines
1.7 KiB
TypeScript
import { getTranslations } from 'next-intl/server';
|
|
|
|
import { getSupabaseServerClient } from '@kit/supabase/server-client';
|
|
import { createVerbandApi } from '@kit/verbandsverwaltung/api';
|
|
import {
|
|
VerbandTabNavigation,
|
|
HierarchyEvents,
|
|
} from '@kit/verbandsverwaltung/components';
|
|
|
|
import { AccountNotFound } from '~/components/account-not-found';
|
|
import { CmsPageShell } from '~/components/cms-page-shell';
|
|
|
|
interface PageProps {
|
|
params: Promise<{ account: string }>;
|
|
searchParams: Promise<{
|
|
status?: string;
|
|
sharedOnly?: string;
|
|
fromDate?: string;
|
|
page?: string;
|
|
}>;
|
|
}
|
|
|
|
export default async function HierarchyEventsPage({
|
|
params,
|
|
searchParams,
|
|
}: PageProps) {
|
|
const { account } = await params;
|
|
const sp = await searchParams;
|
|
const client = getSupabaseServerClient();
|
|
const t = await getTranslations('verband');
|
|
|
|
const { data: acct } = await client
|
|
.from('accounts')
|
|
.select('id')
|
|
.eq('slug', account)
|
|
.single();
|
|
|
|
if (!acct) return <AccountNotFound />;
|
|
|
|
const api = createVerbandApi(client);
|
|
const page = Math.max(1, Number(sp.page) || 1);
|
|
const pageSize = 25;
|
|
|
|
const result = await api.listHierarchyEvents(acct.id, {
|
|
status: sp.status,
|
|
sharedOnly: sp.sharedOnly === 'true',
|
|
fromDate: sp.fromDate,
|
|
page,
|
|
pageSize,
|
|
});
|
|
|
|
return (
|
|
<CmsPageShell
|
|
account={account}
|
|
title={t('pages.eventsTitle')}
|
|
description={t('pages.eventsDescription')}
|
|
>
|
|
<VerbandTabNavigation account={account} activeTab="events" />
|
|
<HierarchyEvents
|
|
account={account}
|
|
events={result.data}
|
|
total={result.total}
|
|
page={page}
|
|
pageSize={pageSize}
|
|
/>
|
|
</CmsPageShell>
|
|
);
|
|
}
|