45 lines
1.3 KiB
TypeScript
45 lines
1.3 KiB
TypeScript
import { createMemberManagementApi } from '@kit/member-management/api';
|
|
import { CreateMemberForm } from '@kit/member-management/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 }>;
|
|
}
|
|
|
|
export default async function NewMemberPage({ params }: Props) {
|
|
const { account } = await params;
|
|
const client = getSupabaseServerClient();
|
|
const { data: acct } = await client
|
|
.from('accounts')
|
|
.select('id')
|
|
.eq('slug', account)
|
|
.single();
|
|
if (!acct) return <AccountNotFound />;
|
|
|
|
const api = createMemberManagementApi(client);
|
|
const duesCategories = await api.listDuesCategories(acct.id);
|
|
|
|
return (
|
|
<CmsPageShell
|
|
account={account}
|
|
title="Neues Mitglied"
|
|
description="Mitglied manuell anlegen"
|
|
>
|
|
<CreateMemberForm
|
|
accountId={acct.id}
|
|
account={account}
|
|
duesCategories={(duesCategories ?? []).map(
|
|
(c: Record<string, unknown>) => ({
|
|
id: String(c.id),
|
|
name: String(c.name),
|
|
amount: Number(c.amount ?? 0),
|
|
}),
|
|
)}
|
|
/>
|
|
</CmsPageShell>
|
|
);
|
|
}
|