Feat/lokalise rebuild * chore(lokalise): update translation ids * chore(lokalise): easier to switch between projects * chore(lokalise): update translation ids * . * . * . * . * . * . * chore(lokalise): update translation ids * chore(lokalise): update translation ids * . * . * . * chore(lokalise): update translation ids * chore(lokalise): update translation ids * . * . * chore(lokalise): update translation ids * chore(lokalise): update translation ids * chore(lokalise): new translations * merge * switch to errors for missing id's * merge * sync translations Approved-by: Linus Flood
85 lines
2.2 KiB
TypeScript
85 lines
2.2 KiB
TypeScript
"use client"
|
|
import { useIntl } from "react-intl"
|
|
|
|
import { formatPrice } from "@scandic-hotels/common/utils/numberFormatting"
|
|
|
|
import { useGetPointsCurrency } from "../../../../../bookingFlowConfig/bookingFlowConfigContext"
|
|
import BoldRow from "../Bold"
|
|
import RegularRow from "../Regular"
|
|
import BedTypeRow from "./BedType"
|
|
import PackagesRow from "./Packages"
|
|
|
|
import type { CurrencyEnum } from "@scandic-hotels/common/constants/currency"
|
|
|
|
import type { SharedPriceRowProps } from "./price"
|
|
|
|
export interface RedemptionPriceType {
|
|
redemption?: {
|
|
additionalPricePerStay?: number
|
|
currency?: CurrencyEnum
|
|
pointsPerNight: number
|
|
pointsPerStay: number
|
|
}
|
|
}
|
|
|
|
interface RedemptionPriceProps extends SharedPriceRowProps {
|
|
currency: string
|
|
nights: number
|
|
price: RedemptionPriceType["redemption"]
|
|
}
|
|
|
|
export default function RedemptionPrice({
|
|
bedType,
|
|
currency,
|
|
nights,
|
|
packages,
|
|
price,
|
|
}: RedemptionPriceProps) {
|
|
const intl = useIntl()
|
|
const pointsCurrency = useGetPointsCurrency()
|
|
|
|
if (!price) {
|
|
return null
|
|
}
|
|
|
|
const averagePriceTitle = intl.formatMessage({
|
|
id: "priceDetails.averagePricePerNight",
|
|
defaultMessage: "Average price per night",
|
|
})
|
|
|
|
const additionalPricePerStay = price.additionalPricePerStay
|
|
|
|
const averageAdditionalPricePerNight = additionalPricePerStay
|
|
? Math.ceil(additionalPricePerStay / nights)
|
|
: null
|
|
|
|
const additionalCurrency = price.currency ?? currency
|
|
let averagePricePerNight = `${price.pointsPerNight} ${pointsCurrency}`
|
|
if (averageAdditionalPricePerNight) {
|
|
averagePricePerNight = `${averagePricePerNight} + ${averageAdditionalPricePerNight} ${additionalCurrency}`
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<BoldRow
|
|
label={intl.formatMessage({
|
|
id: "priceDetails.roomCharge",
|
|
defaultMessage: "Room charge",
|
|
})}
|
|
value={formatPrice(
|
|
intl,
|
|
price.pointsPerStay,
|
|
pointsCurrency,
|
|
additionalPricePerStay,
|
|
additionalCurrency
|
|
)}
|
|
/>
|
|
{nights > 1 ? (
|
|
<RegularRow label={averagePriceTitle} value={averagePricePerNight} />
|
|
) : null}
|
|
<BedTypeRow bedType={bedType} currency={currency} />
|
|
<PackagesRow packages={packages} />
|
|
</>
|
|
)
|
|
}
|