Files
myeasycms-v2/apps/web/app/[locale]/home/[account]/bookings/new/page.tsx
T. Zehetbauer 5c5aaabae5
Some checks failed
Workflow / ʦ TypeScript (pull_request) Failing after 5m57s
Workflow / ⚫️ Test (pull_request) Has been skipped
refactor: remove obsolete member management API module
2026-04-03 14:08:31 +02:00

53 lines
1.5 KiB
TypeScript

import { getTranslations } from 'next-intl/server';
import { createBookingManagementApi } from '@kit/booking-management/api';
import { CreateBookingForm } from '@kit/booking-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 NewBookingPage({ params }: Props) {
const { account } = await params;
const t = await getTranslations('bookings');
const client = getSupabaseServerClient();
const { data: acct } = await client
.from('accounts')
.select('id')
.eq('slug', account)
.single();
if (!acct) {
return (
<CmsPageShell account={account} title={t('nav.newBooking')}>
<AccountNotFound />
</CmsPageShell>
);
}
const api = createBookingManagementApi(client);
const rooms = await api.rooms.list(acct.id);
return (
<CmsPageShell
account={account}
title={t('newBooking.title')}
description={t('newBooking.description')}
>
<CreateBookingForm
accountId={acct.id}
account={account}
rooms={(rooms ?? []).map((r: Record<string, unknown>) => ({
id: String(r.id),
roomNumber: String(r.room_number),
name: String(r.name ?? ''),
pricePerNight: Number(r.price_per_night ?? 0),
}))}
/>
</CmsPageShell>
);
}