fix(BOOK-293): changed variants and props on IconButton component * fix(BOOK-293): changed variants and props on IconButton component * fix(BOOK-293): inherit color for icon Approved-by: Bianca Widstam Approved-by: Christel Westerberg
263 lines
8.8 KiB
TypeScript
263 lines
8.8 KiB
TypeScript
"use client"
|
|
|
|
import { useState } from "react"
|
|
import { useIntl } from "react-intl"
|
|
|
|
import { selectRate } from "@scandic-hotels/common/constants/routes/hotelReservation"
|
|
import Caption from "@scandic-hotels/design-system/Caption"
|
|
import { FacilityToIcon } from "@scandic-hotels/design-system/FacilityToIcon"
|
|
import { HotelCardDialogImage } from "@scandic-hotels/design-system/HotelCard/HotelCardDialogImage"
|
|
import { HotelPointsRow } from "@scandic-hotels/design-system/HotelCard/HotelPointsRow"
|
|
import { NoPriceAvailableCard } from "@scandic-hotels/design-system/HotelCard/NoPriceAvailableCard"
|
|
import { IconButton } from "@scandic-hotels/design-system/IconButton"
|
|
import { OldDSButton as Button } from "@scandic-hotels/design-system/OldDSButton"
|
|
import Link from "@scandic-hotels/design-system/OldDSLink"
|
|
import Subtitle from "@scandic-hotels/design-system/Subtitle"
|
|
import { Typography } from "@scandic-hotels/design-system/Typography"
|
|
|
|
import { useGetPointsCurrency } from "../../bookingFlowConfig/bookingFlowConfigContext"
|
|
import { useIsLoggedIn } from "../../hooks/useIsLoggedIn"
|
|
import useLang from "../../hooks/useLang"
|
|
|
|
import styles from "./listingHotelCardDialog.module.css"
|
|
|
|
import type { HotelPin } from "../HotelCardDialogListing/utils"
|
|
|
|
interface ListingHotelCardProps {
|
|
data: HotelPin
|
|
handleClose: () => void
|
|
}
|
|
|
|
export default function ListingHotelCardDialog({
|
|
data,
|
|
handleClose,
|
|
}: ListingHotelCardProps) {
|
|
const intl = useIntl()
|
|
const lang = useLang()
|
|
const pointsCurrency = useGetPointsCurrency()
|
|
|
|
const [imageError, setImageError] = useState(false)
|
|
|
|
const isUserLoggedIn = useIsLoggedIn()
|
|
const {
|
|
bookingCode,
|
|
name,
|
|
publicPrice,
|
|
memberPrice,
|
|
currency,
|
|
amenities,
|
|
images,
|
|
ratings,
|
|
operaId,
|
|
redemptionPrice,
|
|
chequePrice,
|
|
voucherPrice,
|
|
hasEnoughPoints,
|
|
} = data
|
|
const imageSrc = images[0]?.src
|
|
const altText = images[0]?.altText || images[0]?.altText_En
|
|
|
|
const notEnoughPointsLabel = intl.formatMessage({
|
|
id: "booking.notEnoughPoints",
|
|
defaultMessage: "Not enough points",
|
|
})
|
|
const shouldShowNotEnoughPoints = redemptionPrice && !hasEnoughPoints
|
|
|
|
return (
|
|
<div className={styles.container}>
|
|
<IconButton
|
|
variant="Muted"
|
|
emphasis
|
|
className={styles.closeButton}
|
|
onPress={handleClose}
|
|
aria-label={intl.formatMessage({
|
|
id: "common.close",
|
|
defaultMessage: "Close",
|
|
})}
|
|
iconName="close"
|
|
/>
|
|
<div className={styles.content}>
|
|
<div className={styles.header}>
|
|
<HotelCardDialogImage
|
|
imageSrc={imageSrc}
|
|
altText={altText}
|
|
rating={{ tripAdvisor: ratings }}
|
|
imageError={imageError}
|
|
setImageError={setImageError}
|
|
position="top"
|
|
/>
|
|
<div>
|
|
<div className={styles.name}>
|
|
<Subtitle type="two">{name}</Subtitle>
|
|
</div>
|
|
<div className={styles.facilities}>
|
|
{amenities.map((facility) => (
|
|
<div key={facility.id}>
|
|
<FacilityToIcon
|
|
id={facility.id}
|
|
size={20}
|
|
color="Icon/Default"
|
|
/>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{publicPrice ||
|
|
memberPrice ||
|
|
redemptionPrice ||
|
|
voucherPrice ||
|
|
chequePrice ? (
|
|
<div className={styles.bottomContainer}>
|
|
<div className={styles.pricesContainer}>
|
|
{redemptionPrice ? (
|
|
<Caption color="uiTextHighContrast">
|
|
{intl.formatMessage({
|
|
id: "hotelCard.availableRates",
|
|
defaultMessage: "Available rates",
|
|
})}
|
|
</Caption>
|
|
) : (
|
|
<Caption color="uiTextHighContrast">
|
|
{intl.formatMessage({
|
|
id: "listingHotelCardDialog.perNightFrom",
|
|
defaultMessage: "Per night from",
|
|
})}
|
|
</Caption>
|
|
)}
|
|
<div className={styles.listingPrices}>
|
|
{publicPrice && !isUserLoggedIn && memberPrice ? (
|
|
<>
|
|
<Subtitle type="two">
|
|
{publicPrice} {currency}
|
|
</Subtitle>
|
|
{/* eslint-disable-next-line formatjs/no-literal-string-in-jsx */}
|
|
{memberPrice && <Caption>/</Caption>}
|
|
</>
|
|
) : (
|
|
bookingCode &&
|
|
publicPrice && (
|
|
<Subtitle type="two" color="red">
|
|
{publicPrice} {currency}
|
|
</Subtitle>
|
|
)
|
|
)}
|
|
{memberPrice && (
|
|
<Subtitle type="two" color="red">
|
|
{intl.formatMessage(
|
|
{
|
|
id: "common.priceCurrency",
|
|
defaultMessage: "{price} {currency}",
|
|
},
|
|
{
|
|
price: memberPrice,
|
|
currency,
|
|
}
|
|
)}
|
|
</Subtitle>
|
|
)}
|
|
{redemptionPrice && (
|
|
<HotelPointsRow
|
|
pointsPerStay={redemptionPrice}
|
|
pointsCurrency={pointsCurrency}
|
|
/>
|
|
)}
|
|
{chequePrice && (
|
|
<Subtitle type="two">
|
|
{intl.formatMessage(
|
|
{
|
|
id: "common.priceCurrency",
|
|
defaultMessage: "{price} {currency}",
|
|
},
|
|
{
|
|
price: chequePrice.numberOfCheques,
|
|
currency: "CC",
|
|
}
|
|
)}
|
|
{chequePrice.additionalPricePerStay > 0
|
|
? // eslint-disable-next-line formatjs/no-literal-string-in-jsx
|
|
" + " +
|
|
intl.formatMessage(
|
|
{
|
|
id: "common.priceCurrency",
|
|
defaultMessage: "{price} {currency}",
|
|
},
|
|
{
|
|
price: chequePrice.additionalPricePerStay,
|
|
currency: chequePrice.currency,
|
|
}
|
|
)
|
|
: null}
|
|
<Typography variant="Body/Paragraph/mdRegular">
|
|
{/* eslint-disable-next-line formatjs/no-literal-string-in-jsx */}
|
|
<span>
|
|
/
|
|
{intl.formatMessage({
|
|
id: "common.night",
|
|
defaultMessage: "night",
|
|
})}
|
|
</span>
|
|
</Typography>
|
|
</Subtitle>
|
|
)}
|
|
{voucherPrice && (
|
|
<Subtitle type="two">
|
|
{intl.formatMessage(
|
|
{
|
|
id: "common.priceCurrency",
|
|
defaultMessage: "{price} {currency}",
|
|
},
|
|
{
|
|
price: voucherPrice,
|
|
currency,
|
|
}
|
|
)}
|
|
<Typography variant="Body/Paragraph/mdRegular">
|
|
{/* eslint-disable-next-line formatjs/no-literal-string-in-jsx */}
|
|
<span>
|
|
/
|
|
{intl.formatMessage({
|
|
id: "common.night",
|
|
defaultMessage: "night",
|
|
})}
|
|
</span>
|
|
</Typography>
|
|
</Subtitle>
|
|
)}
|
|
</div>
|
|
</div>
|
|
{shouldShowNotEnoughPoints ? (
|
|
<div className={styles.notEnoughPointsButton}>
|
|
<Typography variant="Body/Paragraph/mdBold">
|
|
<span>{notEnoughPointsLabel}</span>
|
|
</Typography>
|
|
</div>
|
|
) : (
|
|
<Button
|
|
asChild
|
|
theme="base"
|
|
size="small"
|
|
className={styles.button}
|
|
>
|
|
<Link
|
|
href={`${selectRate(lang)}?hotel=${operaId}`}
|
|
color="none"
|
|
keepSearchParams
|
|
>
|
|
{intl.formatMessage({
|
|
id: "common.seeRooms",
|
|
defaultMessage: "See rooms",
|
|
})}
|
|
</Link>
|
|
</Button>
|
|
)}
|
|
</div>
|
|
) : (
|
|
<NoPriceAvailableCard />
|
|
)}
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|