feat(SW-718): parse room from searchParams

This commit is contained in:
Pontus Dreij
2025-01-21 08:50:42 +01:00
parent cffde6f9c3
commit 7d716dcf4a
3 changed files with 92 additions and 19 deletions

View File

@@ -4,11 +4,12 @@ import { useSearchParams } from "next/navigation"
import { useCallback, useEffect, useMemo, useState } from "react"
import { useIntl } from "react-intl"
import Subtitle from "@/components/TempDesignSystem/Text/Subtitle"
import { trackLowestRoomPrice } from "@/utils/tracking"
import RoomFilter from "../RoomFilter"
import RoomSelection from "../RoomSelection"
import { filterDuplicateRoomTypesByLowestPrice } from "./utils"
import { filterDuplicateRoomTypesByLowestPrice, parseRoomParams } from "./utils"
import styles from "./rooms.module.css"
@@ -37,6 +38,11 @@ export default function Rooms({
const arrivalDate = searchParams.get("fromDate")
const departureDate = searchParams.get("toDate")
const searchedRoomsAndGuests = useMemo(
() => parseRoomParams(searchParams),
[searchParams]
)
const intl = useIntl()
const visibleRooms: RoomConfiguration[] = useMemo(() => {
@@ -213,22 +219,32 @@ export default function Rooms({
}, [arrivalDate, departureDate, hotelId, rooms.roomConfigurations])
return (
<div className={styles.content}>
<RoomFilter
numberOfRooms={rooms.roomConfigurations.length}
onFilter={handleFilter}
filterOptions={defaultPackages}
/>
<RoomSelection
roomsAvailability={rooms}
roomCategories={roomCategories}
availablePackages={availablePackages}
selectedPackages={selectedPackages}
setRateCode={setSelectedRate}
rateSummary={rateSummary}
hotelType={hotelType}
isUserLoggedIn={isUserLoggedIn}
/>
</div>
<>
{searchedRoomsAndGuests.map((room, index) => (
<div key={index} className={styles.content}>
<Subtitle>
{`Room ${index + 1}, ${room.adults} adults`}
{room.children &&
room.children.length > 0 &&
`, ${room.children.length} children`}
</Subtitle>
<RoomFilter
numberOfRooms={rooms.roomConfigurations.length}
onFilter={handleFilter}
filterOptions={defaultPackages}
/>
<RoomSelection
roomsAvailability={rooms}
roomCategories={roomCategories}
availablePackages={availablePackages}
selectedPackages={selectedPackages}
setRateCode={setSelectedRate}
rateSummary={rateSummary}
hotelType={hotelType}
isUserLoggedIn={isUserLoggedIn}
/>
</div>
))}
</>
)
}

View File

@@ -1,3 +1,4 @@
import type { RoomParam } from "@/types/components/hotelReservation/selectRate/section"
import type { RoomConfiguration } from "@/server/routers/hotels/output"
/**
@@ -103,3 +104,54 @@ export function filterDuplicateRoomTypesByLowestPrice(
return Array.from(roomMap.values())
}
/**
* Parse the room params from the search params.
*/
export function parseRoomParams(searchParams: URLSearchParams): RoomParam[] {
const rooms: RoomParam[] = []
// Collect all param keys and sort them to ensure correct order
const paramKeys = Array.from(searchParams.keys()).sort()
for (const key of paramKeys) {
const roomRegex = /^room\[(\d+)\]\.(.+)/
const roomMatch = roomRegex.exec(key)
if (!roomMatch) continue
const [, roomIndex, param] = roomMatch
const value = searchParams.get(key)
if (!value) continue
// Initialize room if it doesn't exist
if (!rooms[Number(roomIndex)]) rooms[Number(roomIndex)] = { adults: 1 }
// Handle adults
if (param === "adults") {
rooms[Number(roomIndex)].adults = Number(value)
continue
}
// Handle children
const childRegex = /child\[(\d+)\]\.(.+)/
const childMatch = childRegex.exec(param)
if (childMatch) {
const [, childIndex, childParam] = childMatch
const room = rooms[Number(roomIndex)]
if (!room.children) room.children = []
// Set child properties
if (childParam === "age" && room.children) {
room.children[Number(childIndex)] = {
age: Number(value),
bed: Number(value),
}
} else if (childParam === "bed" && room.children?.[Number(childIndex)])
room.children[Number(childIndex)].bed = Number(value)
}
}
return rooms
}

View File

@@ -41,10 +41,15 @@ export interface PaymentClientProps
savedCreditCards: CreditCard[] | null
}
export interface RoomParam {
adults: number
children?: { age: number; bed: number }[]
}
export interface SectionPageProps {
breakfast?: string
bed?: string
fromDate: string
toDate: string
room: { adults: number; child: { age: number; bed: number }[] }[]
room: RoomParam[]
}