34 lines
957 B
TypeScript
34 lines
957 B
TypeScript
import { getTranslations } from 'next-intl/server';
|
|
|
|
import { CreateEventForm } from '@kit/event-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 NewEventPage({ params }: Props) {
|
|
const { account } = await params;
|
|
const client = getSupabaseServerClient();
|
|
const t = await getTranslations('cms.events');
|
|
const { data: acct } = await client
|
|
.from('accounts')
|
|
.select('id')
|
|
.eq('slug', account)
|
|
.single();
|
|
if (!acct) return <AccountNotFound />;
|
|
|
|
return (
|
|
<CmsPageShell
|
|
account={account}
|
|
title={t('newEvent')}
|
|
description={t('newEventDescription')}
|
|
>
|
|
<CreateEventForm accountId={acct.id} account={account} />
|
|
</CmsPageShell>
|
|
);
|
|
}
|