SW-2591 test confirmation page incorrect side peek is displayed upon tapping the view room details link * fix(SW-2591): remove redundant div Approved-by: Simon.Emanuelsson
67 lines
1.8 KiB
TypeScript
67 lines
1.8 KiB
TypeScript
import { Typography } from "@scandic-hotels/design-system/Typography"
|
|
|
|
import { getIntl } from "@/i18n"
|
|
|
|
import { LinkedReservation } from "./LinkedReservation"
|
|
import Room from "./Room"
|
|
|
|
import styles from "./rooms.module.css"
|
|
|
|
import type { BookingConfirmationRoomsProps } from "@/types/components/hotelReservation/bookingConfirmation/rooms"
|
|
|
|
export default async function Rooms({
|
|
booking,
|
|
checkInTime,
|
|
checkOutTime,
|
|
mainRoom,
|
|
}: BookingConfirmationRoomsProps) {
|
|
const intl = await getIntl()
|
|
|
|
return (
|
|
<section className={styles.rooms}>
|
|
<div className={styles.room}>
|
|
{booking.linkedReservations.length ? (
|
|
<Typography variant="Title/Subtitle/md">
|
|
<h2 className={styles.roomTitle}>
|
|
{intl.formatMessage(
|
|
{
|
|
defaultMessage: "Room {roomIndex}",
|
|
},
|
|
{ roomIndex: 1 }
|
|
)}
|
|
</h2>
|
|
</Typography>
|
|
) : null}
|
|
<Room
|
|
booking={booking}
|
|
checkInTime={checkInTime}
|
|
checkOutTime={checkOutTime}
|
|
img={mainRoom.images[0]}
|
|
roomName={mainRoom.name}
|
|
/>
|
|
</div>
|
|
|
|
{booking.linkedReservations.map((reservation, idx) => (
|
|
<div className={styles.room} key={reservation.confirmationNumber}>
|
|
<Typography variant="Title/Subtitle/md">
|
|
<h2 className={styles.roomTitle}>
|
|
{intl.formatMessage(
|
|
{
|
|
defaultMessage: "Room {roomIndex}",
|
|
},
|
|
{ roomIndex: idx + 2 }
|
|
)}
|
|
</h2>
|
|
</Typography>
|
|
<LinkedReservation
|
|
checkInTime={checkInTime}
|
|
checkOutTime={checkOutTime}
|
|
refId={reservation.refId}
|
|
roomIndex={idx + 1}
|
|
/>
|
|
</div>
|
|
))}
|
|
</section>
|
|
)
|
|
}
|