Feature/select rate vertical data flow * add fix from SW-2666 * use translations for room packages * move types to it's own file * Merge branch 'master' of bitbucket.org:scandic-swap/web into feature/select-rate-vertical-data-flow * merge * feature/select-rate: double rate for campaing rates * revert NODE_ENV check in Cookiebot script * revert testing values * fix(SW-3171): fix all filter selected in price details * fix(SW-3166): multiroom anchoring when changing filter * fix(SW-3172): check hotelType, show correct breakfast message * Merge branch 'feature/select-rate-vertical-data-flow' of bitbucket.org:scandic-swap/web into feature/select-rate-vertical-data-flow * fix: show special needs icons for subsequent roomTypes SW-3167 * fix: Display strike through text when logged in SW-3168 * fix: Reinstate the scrollToView behaviour when selecting a rate SW-3169 * merge * . * PR fixes * fix: don't return notFound() * . * always include defaults for room packages * merge * merge * merge * Remove floating h1 for new select-rate Approved-by: Anton Gunnarsson
63 lines
1.4 KiB
TypeScript
63 lines
1.4 KiB
TypeScript
"use client"
|
|
|
|
import { usePathname, useSearchParams } from "next/navigation"
|
|
import { useMemo } from "react"
|
|
import { useIntl } from "react-intl"
|
|
|
|
import { createRatesStore } from "@/stores/select-rate"
|
|
|
|
import { RatesContext } from "@/contexts/Rates"
|
|
|
|
import type { RatesProviderProps } from "@/types/providers/rates"
|
|
|
|
export default function RatesProvider({
|
|
booking,
|
|
children,
|
|
hotelType,
|
|
roomCategories,
|
|
roomsAvailability,
|
|
vat,
|
|
}: RatesProviderProps) {
|
|
const pathname = usePathname()
|
|
const searchParams = useSearchParams()
|
|
const intl = useIntl()
|
|
|
|
const modifyRateIndex = searchParams.has("activeRoomIndex")
|
|
? Number(searchParams.get("activeRoomIndex"))
|
|
: undefined
|
|
|
|
const store = useMemo(() => {
|
|
return createRatesStore({
|
|
booking,
|
|
hotelType,
|
|
labels: {
|
|
accessibilityRoom: intl.formatMessage({
|
|
defaultMessage: "Accessible room",
|
|
}),
|
|
allergyRoom: intl.formatMessage({
|
|
defaultMessage: "Allergy-friendly room",
|
|
}),
|
|
petRoom: intl.formatMessage({
|
|
defaultMessage: "Pet-friendly room",
|
|
}),
|
|
},
|
|
pathname,
|
|
roomCategories,
|
|
roomsAvailability,
|
|
vat,
|
|
initialActiveRoom: modifyRateIndex,
|
|
})
|
|
}, [
|
|
booking,
|
|
hotelType,
|
|
intl,
|
|
pathname,
|
|
roomCategories,
|
|
roomsAvailability,
|
|
modifyRateIndex,
|
|
vat,
|
|
])
|
|
|
|
return <RatesContext.Provider value={store}>{children}</RatesContext.Provider>
|
|
}
|