Merged in fix/allow-single-rateCode (pull request #1438)

fix: allow rates that only have either of member or public to be selectable

* fix: allow rates that only have either of member or public to be selectable


Approved-by: Michael Zetterberg
This commit is contained in:
Simon.Emanuelsson
2025-03-03 08:28:55 +00:00
committed by Linus Flood
parent 3f01266a75
commit c3e3fa62ec
30 changed files with 487 additions and 573 deletions

View File

@@ -1,19 +1,23 @@
"use client"
import deepmerge from "deepmerge"
import { useEffect, useRef } from "react"
import { dt } from "@/lib/dt"
import { createDetailsStore } from "@/stores/enter-details"
import {
calcTotalPrice,
checkIsSameBedTypes,
checkIsSameBooking as checkIsSameBooking,
clearSessionStorage,
readFromSessionStorage,
writeToSessionStorage,
} from "@/stores/enter-details/helpers"
import { multiroomDetailsSchema } from "@/components/HotelReservation/EnterDetails/Details/Multiroom/schema"
import { guestDetailsSchema } from "@/components/HotelReservation/EnterDetails/Details/RoomOne/schema"
import { DetailsContext } from "@/contexts/Details"
import type { DetailsStore } from "@/types/contexts/enter-details"
import { StepEnum } from "@/types/enums/step"
import type { DetailsProviderProps } from "@/types/providers/enter-details"
import type { InitialState } from "@/types/stores/enter-details"
@@ -71,46 +75,80 @@ export default function EnterDetailsProvider({
return
}
const store = storeRef.current?.getState()
if (!store) {
return
}
const updatedRooms = storedValues.rooms.map((storedRoom, idx) => {
const currentRoom = booking.rooms[idx]
const room = rooms[idx]
// Need to create a deep new copy
// since store is readonly
const currentRoom = deepmerge({}, store.rooms[idx])
if (!storedRoom.room?.bedType) {
return storedRoom
}
const isSameBedTypes = checkIsSameBedTypes(
storedRoom.room.bedType.roomTypeCode,
currentRoom.roomTypeCode
)
if (isSameBedTypes) {
return storedRoom
}
if (room?.bedTypes?.length === 1 && room.bedTypes[0]) {
return {
...storedRoom,
bedType: {
roomTypeCode: room.bedTypes[0].value,
description: room.bedTypes[0].description,
},
if (!currentRoom.room.bedType && storedRoom.room.bedType) {
const sameBed = currentRoom.room.bedTypes.find(
(bedType) => bedType.value === storedRoom.room.bedType?.roomTypeCode
)
if (sameBed) {
currentRoom.room.bedType = {
description: sameBed.description,
roomTypeCode: sameBed.value,
}
currentRoom.steps[StepEnum.selectBed].isValid = true
}
}
// Remove bed type selection if bedtypes change
return {
...storedRoom,
bedType: undefined,
if (
currentRoom.steps[StepEnum.breakfast] &&
currentRoom.room.breakfast === undefined &&
(storedRoom.room.breakfast || storedRoom.room.breakfast === false)
) {
currentRoom.room.breakfast = storedRoom.room.breakfast
currentRoom.steps[StepEnum.breakfast].isValid = true
}
// User is already added for main room
if (!user || (user && idx > 0)) {
currentRoom.room.guest = deepmerge(
currentRoom.room.guest,
storedRoom.room.guest
)
}
const validGuest =
idx > 0
? multiroomDetailsSchema.safeParse(currentRoom.room.guest)
: guestDetailsSchema.safeParse(currentRoom.room.guest)
if (validGuest.success) {
currentRoom.steps[StepEnum.details].isValid = true
}
const invalidStep = Object.values(currentRoom.steps).find(
(step) => !step.isValid
)
currentRoom.isComplete = !invalidStep
currentRoom.currentStep = invalidStep ? invalidStep.step : null
return currentRoom
})
const canProceedToPayment = updatedRooms.every((room) => room.isComplete)
const nights = dt(booking.toDate).diff(booking.fromDate, "days")
const currency =
updatedRooms[0].room.roomRate.publicRate.localPrice.currency
const currency = (updatedRooms[0].room.roomRate.publicRate?.localPrice
.currency ||
updatedRooms[0].room.roomRate.memberRate?.localPrice.currency)!
const totalPrice = calcTotalPrice(updatedRooms, currency, !!user, nights)
const activeRoom = updatedRooms.findIndex((room) => !room.isComplete)
writeToSessionStorage({
activeRoom,
booking,
rooms: updatedRooms,
})
storeRef.current?.setState({
activeRoom: storedValues.activeRoom,
canProceedToPayment,