Merged in fix/missing-confirmation-page-room-titles (pull request #1424)
fix: add missing room titles * fix: add missing room titles Approved-by: Tobias Johansson
This commit is contained in:
@@ -7,29 +7,47 @@ import Room from "./Room"
|
||||
import styles from "./rooms.module.css"
|
||||
|
||||
import type { BookingConfirmationRoomsProps } from "@/types/components/hotelReservation/bookingConfirmation/rooms"
|
||||
import Subtitle from "@/components/TempDesignSystem/Text/Subtitle"
|
||||
import { getIntl } from "@/i18n"
|
||||
|
||||
export default function Rooms({
|
||||
export default async function Rooms({
|
||||
booking,
|
||||
mainRoom,
|
||||
linkedReservations,
|
||||
}: BookingConfirmationRoomsProps) {
|
||||
const intl = await getIntl()
|
||||
return (
|
||||
<section className={styles.rooms}>
|
||||
<Room
|
||||
booking={booking}
|
||||
img={mainRoom.images[0]}
|
||||
roomName={mainRoom.name}
|
||||
/>
|
||||
<div className={styles.room}>
|
||||
{linkedReservations.length ? (
|
||||
<Subtitle color="mainGrey60" type="two">
|
||||
{intl.formatMessage({ id: "Room {roomIndex}" }, { roomIndex: 1 })}
|
||||
</Subtitle>
|
||||
) : null}
|
||||
<Room
|
||||
booking={booking}
|
||||
img={mainRoom.images[0]}
|
||||
roomName={mainRoom.name}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{linkedReservations?.map((reservation) => (
|
||||
<Suspense
|
||||
key={reservation.confirmationNumber}
|
||||
fallback={<LinkedReservationCardSkeleton />}
|
||||
>
|
||||
<LinkedReservation
|
||||
confirmationNumber={reservation.confirmationNumber}
|
||||
/>
|
||||
</Suspense>
|
||||
{linkedReservations?.map((reservation, idx) => (
|
||||
<div className={styles.room}>
|
||||
<Subtitle color="mainGrey60" type="two">
|
||||
{intl.formatMessage(
|
||||
{ id: "Room {roomIndex}" },
|
||||
{ roomIndex: idx + 2 }
|
||||
)}
|
||||
</Subtitle>
|
||||
<Suspense
|
||||
key={reservation.confirmationNumber}
|
||||
fallback={<LinkedReservationCardSkeleton />}
|
||||
>
|
||||
<LinkedReservation
|
||||
confirmationNumber={reservation.confirmationNumber}
|
||||
/>
|
||||
</Suspense>
|
||||
</div>
|
||||
))}
|
||||
</section>
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user