fix: SW-1879 Updated breakfast price to 0 and removed paymentSectionOpen tracking * fix: SW-1879 Updated breakfast price to 0 and removed paymentSectionOpen tracking Approved-by: Michael Zetterberg
206 lines
6.0 KiB
TypeScript
206 lines
6.0 KiB
TypeScript
"use client"
|
|
import { zodResolver } from "@hookform/resolvers/zod"
|
|
import { useEffect, useMemo } from "react"
|
|
import { FormProvider, useForm } from "react-hook-form"
|
|
import { useIntl } from "react-intl"
|
|
|
|
import { Button } from "@scandic-hotels/design-system/Button"
|
|
|
|
import { useEnterDetailsStore } from "@/stores/enter-details"
|
|
|
|
import SpecialRequests from "@/components/HotelReservation/EnterDetails/Details/SpecialRequests"
|
|
import CountrySelect from "@/components/TempDesignSystem/Form/Country"
|
|
import Input from "@/components/TempDesignSystem/Form/Input"
|
|
import Phone from "@/components/TempDesignSystem/Form/Phone"
|
|
import Footnote from "@/components/TempDesignSystem/Text/Footnote"
|
|
import { useRoomContext } from "@/contexts/Details/Room"
|
|
|
|
import JoinScandicFriendsCard from "./JoinScandicFriendsCard"
|
|
import { getMultiroomDetailsSchema } from "./schema"
|
|
|
|
import styles from "./details.module.css"
|
|
|
|
import type { MultiroomDetailsSchema } from "@/types/components/hotelReservation/enterDetails/details"
|
|
|
|
const formID = "enter-details"
|
|
export default function Details() {
|
|
const intl = useIntl()
|
|
|
|
const { canProceedToPayment, lastRoom, rooms } = useEnterDetailsStore(
|
|
(state) => ({
|
|
canProceedToPayment: state.canProceedToPayment,
|
|
lastRoom: state.lastRoom,
|
|
rooms: state.rooms,
|
|
})
|
|
)
|
|
|
|
const {
|
|
actions: { updateDetails },
|
|
idx,
|
|
room,
|
|
roomNr,
|
|
} = useRoomContext()
|
|
const initialData = room.guest
|
|
|
|
/**
|
|
* The data that each room needs from each other to do validations
|
|
* across the rooms
|
|
*/
|
|
const crossValidationData = useMemo(
|
|
() =>
|
|
rooms
|
|
.filter((_, i) => i !== idx)
|
|
.map((room) => ({
|
|
firstName: room.room.guest.firstName,
|
|
lastName: room.room.guest.lastName,
|
|
membershipNo: room.room.guest.membershipNo,
|
|
})),
|
|
[idx, rooms]
|
|
)
|
|
|
|
const isPaymentNext = idx === lastRoom
|
|
const methods = useForm<MultiroomDetailsSchema>({
|
|
criteriaMode: "all",
|
|
mode: "all",
|
|
resolver: zodResolver(getMultiroomDetailsSchema(crossValidationData)),
|
|
reValidateMode: "onChange",
|
|
values: {
|
|
countryCode: initialData.countryCode,
|
|
email: initialData.email,
|
|
firstName: initialData.firstName,
|
|
join: initialData.join,
|
|
lastName: initialData.lastName,
|
|
membershipNo: initialData.membershipNo,
|
|
phoneNumber: initialData.phoneNumber,
|
|
specialRequest: {
|
|
comment: room.specialRequest.comment,
|
|
},
|
|
},
|
|
})
|
|
|
|
// Trigger validation of the room manually when another room changes its data.
|
|
// Only do it if the field has a value, to avoid error states before the user
|
|
// has filled anything in.
|
|
useEffect(() => {
|
|
const { firstName, lastName, membershipNo } = methods.getValues()
|
|
if (firstName) {
|
|
methods.trigger("firstName")
|
|
}
|
|
if (lastName) {
|
|
methods.trigger("lastName")
|
|
}
|
|
if (membershipNo) {
|
|
methods.trigger("membershipNo")
|
|
}
|
|
}, [crossValidationData, methods])
|
|
|
|
const guestIsGoingToJoin = methods.watch("join")
|
|
const guestIsMember = methods.watch("membershipNo")
|
|
|
|
return (
|
|
<FormProvider {...methods}>
|
|
<form
|
|
className={styles.form}
|
|
id={`${formID}-room-${roomNr}`}
|
|
onSubmit={methods.handleSubmit(updateDetails)}
|
|
>
|
|
{guestIsMember ? null : <JoinScandicFriendsCard />}
|
|
<div className={styles.container}>
|
|
<Footnote
|
|
color="uiTextHighContrast"
|
|
textTransform="uppercase"
|
|
type="label"
|
|
className={styles.fullWidth}
|
|
>
|
|
{intl.formatMessage({
|
|
defaultMessage: "Guest information",
|
|
})}
|
|
</Footnote>
|
|
<Input
|
|
label={intl.formatMessage({
|
|
defaultMessage: "First name",
|
|
})}
|
|
maxLength={30}
|
|
name="firstName"
|
|
registerOptions={{
|
|
required: true,
|
|
deps: "lastName",
|
|
}}
|
|
/>
|
|
<Input
|
|
label={intl.formatMessage({
|
|
defaultMessage: "Last name",
|
|
})}
|
|
maxLength={30}
|
|
name="lastName"
|
|
registerOptions={{
|
|
required: true,
|
|
deps: "firstName",
|
|
}}
|
|
/>
|
|
<CountrySelect
|
|
className={styles.fullWidth}
|
|
label={intl.formatMessage({
|
|
defaultMessage: "Country",
|
|
})}
|
|
name="countryCode"
|
|
registerOptions={{ required: true }}
|
|
/>
|
|
<Input
|
|
className={styles.fullWidth}
|
|
label={intl.formatMessage({
|
|
defaultMessage: "Email address",
|
|
})}
|
|
name="email"
|
|
registerOptions={{ required: true }}
|
|
/>
|
|
<Phone
|
|
className={styles.fullWidth}
|
|
label={intl.formatMessage({
|
|
defaultMessage: "Phone number",
|
|
})}
|
|
name="phoneNumber"
|
|
registerOptions={{ required: true }}
|
|
/>
|
|
{guestIsGoingToJoin ? null : (
|
|
<Input
|
|
className={styles.fullWidth}
|
|
label={intl.formatMessage({
|
|
defaultMessage: "Membership no",
|
|
})}
|
|
name="membershipNo"
|
|
type="tel"
|
|
/>
|
|
)}
|
|
<SpecialRequests />
|
|
</div>
|
|
<footer className={styles.footer}>
|
|
<Button
|
|
isDisabled={
|
|
!(
|
|
methods.formState.isValid ||
|
|
(isPaymentNext && canProceedToPayment)
|
|
)
|
|
}
|
|
variant="Tertiary"
|
|
typography="Body/Paragraph/mdBold"
|
|
size="Medium"
|
|
type="submit"
|
|
>
|
|
{isPaymentNext
|
|
? intl.formatMessage({
|
|
defaultMessage: "Continue",
|
|
})
|
|
: intl.formatMessage(
|
|
{
|
|
defaultMessage: "Continue to room {nextRoomNumber}",
|
|
},
|
|
{ nextRoomNumber: roomNr + 1 }
|
|
)}
|
|
</Button>
|
|
</footer>
|
|
</form>
|
|
</FormProvider>
|
|
)
|
|
}
|