34 lines
830 B
TypeScript
34 lines
830 B
TypeScript
"use client"
|
|
import { useIntl } from "react-intl"
|
|
|
|
import { formatPrice } from "@scandic-hotels/common/utils/numberFormatting"
|
|
|
|
import { getRoomFeatureDescription } from "../../../../../utils/getRoomFeatureDescription"
|
|
import RegularRow from "../Regular"
|
|
|
|
import type { Packages as PackagesType } from "@scandic-hotels/trpc/types/packages"
|
|
|
|
interface PackagesProps {
|
|
packages: PackagesType | null
|
|
}
|
|
|
|
export default function PackagesRow({ packages }: PackagesProps) {
|
|
const intl = useIntl()
|
|
|
|
if (!packages || !packages.length) {
|
|
return null
|
|
}
|
|
|
|
return packages?.map((pkg) => (
|
|
<RegularRow
|
|
key={pkg.code}
|
|
label={getRoomFeatureDescription(pkg.code, pkg.description, intl)}
|
|
value={formatPrice(
|
|
intl,
|
|
+pkg.localPrice.totalPrice,
|
|
pkg.localPrice.currency
|
|
)}
|
|
/>
|
|
))
|
|
}
|