329 lines
11 KiB
TypeScript
329 lines
11 KiB
TypeScript
import { useIntl } from "react-intl"
|
|
|
|
import { Typography } from "@scandic-hotels/design-system/Typography"
|
|
|
|
import { dt } from "@/lib/dt"
|
|
import { useMyStayRoomDetailsStore } from "@/stores/my-stay/myStayRoomDetailsStore"
|
|
|
|
import GuestDetails from "@/components/HotelReservation/MyStay/GuestDetails"
|
|
import Price from "@/components/HotelReservation/MyStay/Price"
|
|
import { hasBreakfastPackage } from "@/components/HotelReservation/MyStay/utils/hasBreakfastPackage"
|
|
import {
|
|
BedDoubleIcon,
|
|
BookingCodeIcon,
|
|
CoffeeIcon,
|
|
ContractIcon,
|
|
DoorOpenIcon,
|
|
PersonIcon,
|
|
} from "@/components/Icons"
|
|
import CrossCircleIcon from "@/components/Icons/CrossCircle"
|
|
import Refresh from "@/components/Icons/Refresh"
|
|
import ImageGallery from "@/components/ImageGallery"
|
|
import Accordion from "@/components/TempDesignSystem/Accordion"
|
|
import AccordionItem from "@/components/TempDesignSystem/Accordion/AccordionItem"
|
|
import IconChip from "@/components/TempDesignSystem/IconChip"
|
|
import SidePeek from "@/components/TempDesignSystem/SidePeek"
|
|
import useLang from "@/hooks/useLang"
|
|
import { mapApiImagesToGalleryImages } from "@/utils/imageGallery"
|
|
|
|
import RoomDetails from "./RoomDetails"
|
|
|
|
import styles from "./bookedRoomSidePeek.module.css"
|
|
|
|
import { RoomPackageCodeEnum } from "@/types/components/hotelReservation/selectRate/roomFilter"
|
|
import { SidePeekEnum } from "@/types/components/hotelReservation/sidePeek"
|
|
import type { BookedRoomSidePeekProps } from "@/types/components/sidePeeks/bookedRoomSidePeek"
|
|
|
|
export default function BookedRoomSidePeek({
|
|
room,
|
|
activeSidePeek,
|
|
user,
|
|
confirmationNumber,
|
|
close,
|
|
}: BookedRoomSidePeekProps) {
|
|
const intl = useIntl()
|
|
const lang = useLang()
|
|
const bookedRoom = useMyStayRoomDetailsStore((state) => state.bookedRoom)
|
|
const linkedReservationRooms = useMyStayRoomDetailsStore(
|
|
(state) => state.linkedReservationRooms
|
|
)
|
|
const updateBookedRoom = useMyStayRoomDetailsStore(
|
|
(state) => state.actions.updateBookedRoom
|
|
)
|
|
const updateLinkedReservationRoom = useMyStayRoomDetailsStore(
|
|
(state) => state.actions.updateLinkedReservationRoom
|
|
)
|
|
|
|
const allRooms = [bookedRoom, ...linkedReservationRooms]
|
|
|
|
const matchingRoomBooking = allRooms.find(
|
|
(r) => r.confirmationNumber === confirmationNumber
|
|
)
|
|
|
|
if (!matchingRoomBooking) {
|
|
return null
|
|
}
|
|
|
|
const {
|
|
roomNumber,
|
|
cancellationNumber,
|
|
adults,
|
|
childrenInRoom,
|
|
terms,
|
|
packages,
|
|
bedType,
|
|
checkInDate,
|
|
bookingCode,
|
|
roomPrice,
|
|
isCancelled,
|
|
} = matchingRoomBooking
|
|
|
|
const fromDate = dt(checkInDate).locale(lang)
|
|
|
|
const roomDescription = room.descriptions.medium
|
|
const galleryImages = mapApiImagesToGalleryImages(room.images)
|
|
|
|
const adultsMsg = intl.formatMessage(
|
|
{ id: "{adults, plural, one {# adult} other {# adults}}" },
|
|
{
|
|
adults: adults,
|
|
}
|
|
)
|
|
|
|
const childrenMsg = intl.formatMessage(
|
|
{
|
|
id: "{children, plural, one {# child} other {# children}}",
|
|
},
|
|
{
|
|
children: childrenInRoom.length,
|
|
}
|
|
)
|
|
|
|
const adultsOnlyMsg = adultsMsg
|
|
const adultsAndChildrenMsg = [adultsMsg, childrenMsg].join(", ")
|
|
|
|
return (
|
|
<SidePeek
|
|
title={room.name}
|
|
isOpen={activeSidePeek === SidePeekEnum.bookedRoomDetails}
|
|
handleClose={close}
|
|
>
|
|
<div className={styles.wrapper}>
|
|
<div className={styles.roomHeader}>
|
|
{isCancelled ? (
|
|
<IconChip
|
|
color={"red"}
|
|
icon={<CrossCircleIcon width={20} height={20} color="red" />}
|
|
>
|
|
<Typography variant="Body/Supporting text (caption)/smBold">
|
|
<span>{intl.formatMessage({ id: "Cancelled" })}</span>
|
|
</Typography>
|
|
</IconChip>
|
|
) : (
|
|
<div className={styles.chip}>
|
|
<Typography variant="Tag/sm">
|
|
<span>
|
|
{intl.formatMessage(
|
|
{ id: "Room {roomIndex}" },
|
|
{ roomIndex: roomNumber }
|
|
)}
|
|
</span>
|
|
</Typography>
|
|
</div>
|
|
)}
|
|
<div className={styles.reference}>
|
|
<Typography variant="Body/Supporting text (caption)/smBold">
|
|
{isCancelled ? (
|
|
<span>{intl.formatMessage({ id: "Cancellation no" })}:</span>
|
|
) : (
|
|
<span>{intl.formatMessage({ id: "Reference" })}:</span>
|
|
)}
|
|
</Typography>
|
|
<Typography variant="Body/Supporting text (caption)/smRegular">
|
|
{isCancelled ? (
|
|
<span className={styles.cancellationNumber}>
|
|
{cancellationNumber}
|
|
</span>
|
|
) : (
|
|
<span>{confirmationNumber}</span>
|
|
)}
|
|
</Typography>
|
|
</div>
|
|
</div>
|
|
<div className={styles.mainContent}>
|
|
<div className={styles.imageContainer}>
|
|
<ImageGallery
|
|
images={galleryImages}
|
|
title={room.name}
|
|
height={280}
|
|
/>
|
|
</div>
|
|
<div className={styles.roomDetails}>
|
|
<div className={styles.row}>
|
|
<span className={styles.rowTitle}>
|
|
<PersonIcon color="grey80" width={20} height={20} />
|
|
<Typography variant="Body/Paragraph/mdBold">
|
|
<p>{intl.formatMessage({ id: "Guests" })}</p>
|
|
</Typography>
|
|
</span>
|
|
<div className={styles.rowContent}>
|
|
<Typography variant="Body/Paragraph/mdRegular">
|
|
<p color="uiTextHighContrast">
|
|
{childrenInRoom.length > 0
|
|
? adultsAndChildrenMsg
|
|
: adultsOnlyMsg}
|
|
</p>
|
|
</Typography>
|
|
</div>
|
|
</div>
|
|
<div className={styles.row}>
|
|
<span className={styles.rowTitle}>
|
|
<ContractIcon color="grey80" width={20} height={20} />
|
|
<Typography variant="Body/Paragraph/mdBold">
|
|
<p>{intl.formatMessage({ id: "Terms" })}</p>
|
|
</Typography>
|
|
</span>
|
|
<div className={styles.rowContent}>
|
|
<Typography variant="Body/Paragraph/mdRegular">
|
|
<p color="uiTextHighContrast">{terms}</p>
|
|
</Typography>
|
|
</div>
|
|
</div>
|
|
<div className={styles.row}>
|
|
<span className={styles.rowTitle}>
|
|
<Refresh color="grey80" width={20} height={20} />
|
|
<Typography variant="Body/Paragraph/mdBold">
|
|
<p>{intl.formatMessage({ id: "Modify By" })}</p>
|
|
</Typography>
|
|
</span>
|
|
<div className={styles.rowContent}>
|
|
<Typography variant="Body/Paragraph/mdRegular">
|
|
<p color="uiTextHighContrast">
|
|
{intl.formatMessage(
|
|
{ id: "Until {time}, {date}" },
|
|
{ time: "18:00", date: fromDate.format("dddd D MMM") }
|
|
)}
|
|
</p>
|
|
</Typography>
|
|
</div>
|
|
</div>
|
|
<div className={styles.row}>
|
|
<span className={styles.rowTitle}>
|
|
<CoffeeIcon color="grey80" width={20} height={20} />
|
|
<Typography variant="Body/Paragraph/mdBold">
|
|
<p>{intl.formatMessage({ id: "Breakfast" })}</p>
|
|
</Typography>
|
|
</span>
|
|
<div className={styles.rowContent}>
|
|
<Typography variant="Body/Paragraph/mdRegular">
|
|
<p color="uiTextHighContrast">
|
|
{packages &&
|
|
hasBreakfastPackage(
|
|
packages.map((pkg) => ({
|
|
code: pkg.code,
|
|
}))
|
|
)
|
|
? intl.formatMessage({ id: "Included" })
|
|
: intl.formatMessage({ id: "Not included" })}
|
|
</p>
|
|
</Typography>
|
|
</div>
|
|
</div>
|
|
{packages?.some((item) =>
|
|
Object.values(RoomPackageCodeEnum).includes(
|
|
item.code as RoomPackageCodeEnum
|
|
)
|
|
) && (
|
|
<div className={styles.row}>
|
|
<span className={styles.rowTitle}>
|
|
<DoorOpenIcon color="grey80" width={20} height={20} />
|
|
<Typography variant="Body/Paragraph/mdBold">
|
|
<p>{intl.formatMessage({ id: "Room classification" })}</p>
|
|
</Typography>
|
|
</span>
|
|
<div className={styles.rowContent}>
|
|
<Typography variant="Body/Paragraph/mdRegular">
|
|
<p color="uiTextHighContrast">
|
|
{packages
|
|
?.filter((item) =>
|
|
Object.values(RoomPackageCodeEnum).includes(
|
|
item.code as RoomPackageCodeEnum
|
|
)
|
|
)
|
|
.map((item) => item.description)
|
|
.join(", ")}
|
|
</p>
|
|
</Typography>
|
|
</div>
|
|
</div>
|
|
)}
|
|
|
|
<div className={styles.row}>
|
|
<span className={styles.rowTitle}>
|
|
<BedDoubleIcon color="grey80" width={20} height={20} />
|
|
<Typography variant="Body/Paragraph/mdBold">
|
|
<p>{intl.formatMessage({ id: "Bed preference" })}</p>
|
|
</Typography>
|
|
</span>
|
|
<div className={styles.rowContent}>
|
|
<Typography variant="Body/Paragraph/mdRegular">
|
|
<p color="uiTextHighContrast">{bedType?.description}</p>
|
|
</Typography>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className={styles.bookingInformation}>
|
|
<div className={styles.priceDetails}>
|
|
<div className={styles.price}>
|
|
<Typography variant="Body/Lead text">
|
|
<p color="uiTextHighContrast">
|
|
{intl.formatMessage({ id: "Room total" })}
|
|
</p>
|
|
</Typography>
|
|
|
|
<Price
|
|
price={roomPrice.perStay.local.price}
|
|
variant="Title/Subtitle/md"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{bookingCode && (
|
|
<IconChip color={"blue"} icon={<BookingCodeIcon color="blue" />}>
|
|
<Typography variant="Body/Supporting text (caption)/smBold">
|
|
<p className={styles.bookingCode}>
|
|
<strong>{intl.formatMessage({ id: "Booking code" })}</strong>
|
|
{bookingCode}
|
|
</p>
|
|
</Typography>
|
|
</IconChip>
|
|
)}
|
|
|
|
<GuestDetails
|
|
user={user ?? null}
|
|
booking={matchingRoomBooking}
|
|
updateRoom={
|
|
bookedRoom.confirmationNumber ===
|
|
matchingRoomBooking.confirmationNumber
|
|
? updateBookedRoom
|
|
: updateLinkedReservationRoom
|
|
}
|
|
/>
|
|
</div>
|
|
<Accordion>
|
|
<AccordionItem
|
|
title={intl.formatMessage({ id: "Room details" })}
|
|
variant="sidepeek"
|
|
>
|
|
<RoomDetails
|
|
roomDescription={roomDescription}
|
|
roomFacilities={room.roomFacilities}
|
|
roomTypes={room.roomTypes}
|
|
/>
|
|
</AccordionItem>
|
|
</Accordion>
|
|
</div>
|
|
</SidePeek>
|
|
)
|
|
}
|