Files
myeasycms-v2/apps/web/app/[locale]/home/[account]/verband/settings/page.tsx

45 lines
1.2 KiB
TypeScript

import { getSupabaseServerClient } from '@kit/supabase/server-client';
import { createVerbandApi } from '@kit/verbandsverwaltung/api';
import { VerbandTabNavigation } from '@kit/verbandsverwaltung/components';
import { AccountNotFound } from '~/components/account-not-found';
import { CmsPageShell } from '~/components/cms-page-shell';
import SettingsContent from './_components/settings-content';
interface Props {
params: Promise<{ account: string }>;
}
export default async function SettingsPage({ 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 = createVerbandApi(client);
const [roles, types, feeTypes] = await Promise.all([
api.listRoles(acct.id),
api.listTypes(acct.id),
api.listFeeTypes(acct.id),
]);
return (
<CmsPageShell account={account} title="Verbandsverwaltung - Einstellungen">
<VerbandTabNavigation account={account} activeTab="settings" />
<SettingsContent
accountId={acct.id}
roles={roles}
types={types}
feeTypes={feeTypes}
/>
</CmsPageShell>
);
}