feat(SW-588): Added saved card to payment step * feat(SW-588): Added saved card to payment step * feat(SW-588): Add proper label for saved card * feat(SW-588): fix from PR feedback * feat(SW-588): Add preloading of data * feat(SW-588): remove onChange logic for PaymentOption * feat(SW-588): moved payment files to correct folder * feat(SW-588): moved preload to layout * fix: remove unused prop Approved-by: Simon.Emanuelsson
80 lines
2.4 KiB
TypeScript
80 lines
2.4 KiB
TypeScript
import { notFound } from "next/navigation"
|
|
|
|
import {
|
|
getCreditCardsSafely,
|
|
getHotelData,
|
|
getProfileSafely,
|
|
} from "@/lib/trpc/memoizedRequests"
|
|
|
|
import BedType from "@/components/HotelReservation/EnterDetails/BedType"
|
|
import Breakfast from "@/components/HotelReservation/EnterDetails/Breakfast"
|
|
import Details from "@/components/HotelReservation/EnterDetails/Details"
|
|
import HistoryStateManager from "@/components/HotelReservation/EnterDetails/HistoryStateManager"
|
|
import Payment from "@/components/HotelReservation/EnterDetails/Payment"
|
|
import SectionAccordion from "@/components/HotelReservation/EnterDetails/SectionAccordion"
|
|
import { getIntl } from "@/i18n"
|
|
|
|
import { StepEnum } from "@/types/components/enterDetails/step"
|
|
import type { LangParams, PageArgs } from "@/types/params"
|
|
|
|
function isValidStep(step: string): step is StepEnum {
|
|
return Object.values(StepEnum).includes(step as StepEnum)
|
|
}
|
|
|
|
export default async function StepPage({
|
|
params,
|
|
}: PageArgs<LangParams & { step: StepEnum }>) {
|
|
const { step, lang } = params
|
|
|
|
const intl = await getIntl()
|
|
|
|
const hotel = await getHotelData("811", lang)
|
|
const user = await getProfileSafely()
|
|
const savedCreditCards = await getCreditCardsSafely()
|
|
|
|
if (!isValidStep(step) || !hotel) {
|
|
return notFound()
|
|
}
|
|
|
|
return (
|
|
<section>
|
|
<HistoryStateManager />
|
|
<SectionAccordion
|
|
header="Select bed"
|
|
step={StepEnum.selectBed}
|
|
label={intl.formatMessage({ id: "Request bedtype" })}
|
|
>
|
|
<BedType />
|
|
</SectionAccordion>
|
|
<SectionAccordion
|
|
header="Food options"
|
|
step={StepEnum.breakfast}
|
|
label={intl.formatMessage({ id: "Select breakfast options" })}
|
|
>
|
|
<Breakfast />
|
|
</SectionAccordion>
|
|
<SectionAccordion
|
|
header="Details"
|
|
step={StepEnum.details}
|
|
label={intl.formatMessage({ id: "Enter your details" })}
|
|
>
|
|
<Details user={user} />
|
|
</SectionAccordion>
|
|
<SectionAccordion
|
|
header="Payment"
|
|
step={StepEnum.payment}
|
|
label={intl.formatMessage({ id: "Select payment method" })}
|
|
>
|
|
<Payment
|
|
hotelId={hotel.data.attributes.operaId}
|
|
otherPaymentOptions={
|
|
hotel.data.attributes.merchantInformationData
|
|
.alternatePaymentOptions
|
|
}
|
|
savedCreditCards={savedCreditCards}
|
|
/>
|
|
</SectionAccordion>
|
|
</section>
|
|
)
|
|
}
|