Fix/SW-2553 sidepeeks * fix(SW-2553): apply sidepeek display logic * chore: move convertToChildType and getPriceType utils * fix: apply PR requested changes * fix(SW-2553): fix roomNumber for multiroom * fix(SW-2553): fix sidepeek for my-stay page Approved-by: Michael Zetterberg Approved-by: Bianca Widstam Approved-by: Matilda Landström
94 lines
2.5 KiB
TypeScript
94 lines
2.5 KiB
TypeScript
"use client"
|
|
|
|
import { useRef } from "react"
|
|
import { useIntl } from "react-intl"
|
|
|
|
import { createBookingConfirmationStore } from "@/stores/booking-confirmation"
|
|
|
|
import { BookingConfirmationContext } from "@/contexts/BookingConfirmation"
|
|
import { formatPrice } from "@/utils/numberFormatting"
|
|
|
|
import type { BookingConfirmationStore } from "@/types/contexts/booking-confirmation"
|
|
import { CurrencyEnum } from "@/types/enums/currency"
|
|
import type { BookingConfirmationProviderProps } from "@/types/providers/booking-confirmation"
|
|
|
|
export default function BookingConfirmationProvider({
|
|
bookingCode,
|
|
children,
|
|
currencyCode,
|
|
fromDate,
|
|
toDate,
|
|
roomCategories,
|
|
rooms,
|
|
vat,
|
|
}: BookingConfirmationProviderProps) {
|
|
const intl = useIntl()
|
|
const storeRef = useRef<BookingConfirmationStore>()
|
|
|
|
if (!storeRef.current) {
|
|
const totalBookingPrice = rooms.reduce((acc, room) => {
|
|
const reservationTotalPrice = room?.totalPrice || 0
|
|
return acc + reservationTotalPrice
|
|
}, 0)
|
|
let formattedTotalCost = formatPrice(intl, totalBookingPrice, currencyCode)
|
|
const totalBookingPoints = rooms.reduce((acc, room) => {
|
|
return acc + (room?.roomPoints ?? 0)
|
|
}, 0)
|
|
const totalBookingCheques = rooms.reduce((acc, room) => {
|
|
return acc + (room?.cheques ?? 0)
|
|
}, 0)
|
|
const totalBookingVouchers = rooms.reduce((acc, room) => {
|
|
return acc + (room?.vouchers ?? 0)
|
|
}, 0)
|
|
|
|
let isVatCurrency = true
|
|
if (totalBookingPoints) {
|
|
isVatCurrency = false
|
|
formattedTotalCost = formatPrice(
|
|
intl,
|
|
totalBookingPoints,
|
|
CurrencyEnum.POINTS,
|
|
totalBookingPrice,
|
|
currencyCode
|
|
)
|
|
} else if (totalBookingCheques) {
|
|
isVatCurrency = false
|
|
formattedTotalCost = formatPrice(
|
|
intl,
|
|
totalBookingCheques,
|
|
CurrencyEnum.CC,
|
|
totalBookingPrice,
|
|
currencyCode
|
|
)
|
|
} else if (totalBookingVouchers) {
|
|
isVatCurrency = false
|
|
formattedTotalCost = formatPrice(
|
|
intl,
|
|
totalBookingVouchers,
|
|
CurrencyEnum.Voucher
|
|
)
|
|
}
|
|
const initialData = {
|
|
bookingCode,
|
|
currencyCode,
|
|
fromDate,
|
|
toDate,
|
|
rooms,
|
|
roomCategories,
|
|
vat,
|
|
isVatCurrency,
|
|
formattedTotalCost,
|
|
totalBookingPrice,
|
|
totalBookingCheques,
|
|
}
|
|
|
|
storeRef.current = createBookingConfirmationStore(initialData)
|
|
}
|
|
|
|
return (
|
|
<BookingConfirmationContext.Provider value={storeRef.current}>
|
|
{children}
|
|
</BookingConfirmationContext.Provider>
|
|
)
|
|
}
|