Files
web/apps/scandic-web/components/HotelReservation/MyStay/BookingSummary/index.tsx
Hrishikesh Vaipurkar 44fce176e9 Merged in chore/SW-3246-move-alert-to-design-system (pull request #2698)
chore(SW-3246): Moved Alert component into design system

* chore(SW-3246): Moved Alert component into design system

* chore(SW-3246): Optimsed code and imports

* chore(SW-3246): Moved type AlertTypeEnum and other to common package


Approved-by: Anton Gunnarsson
2025-08-26 11:22:38 +00:00

117 lines
3.4 KiB
TypeScript

"use client"
import { useIntl } from "react-intl"
import { Alert } from "@scandic-hotels/design-system/Alert"
import { MaterialIcon } from "@scandic-hotels/design-system/Icons/MaterialIcon"
import { Typography } from "@scandic-hotels/design-system/Typography"
import { trackMyStayPageLink } from "@/utils/tracking"
import SummaryCard from "./SummaryCard"
import styles from "./bookingSummary.module.css"
import type { Hotel } from "@scandic-hotels/trpc/types/hotel"
interface BookingSummaryProps {
hotel: Hotel
}
export default function BookingSummary({ hotel }: BookingSummaryProps) {
const intl = useIntl()
const directionsUrl = `https://www.google.com/maps/dir/?api=1&destination=${encodeURIComponent(
`${hotel.name}, ${hotel.address.streetAddress}, ${hotel.address.zipCode} ${hotel.address.city}`
)}`
return (
<div className={styles.bookingSummary}>
<Typography variant="Title/sm">
<h2 className={styles.title}>
{intl.formatMessage({
defaultMessage: "Practical information",
})}
</h2>
</Typography>
<div className={styles.bookingSummaryContent}>
<SummaryCard
title={
<Typography variant="Body/Paragraph/mdBold">
<p>{hotel.name}</p>
</Typography>
}
image={{
src: "/_static/img/scandic-service.svg",
alt: "Scandic service",
}}
texts={[
hotel.address.streetAddress,
`${hotel.address.zipCode} ${hotel.address.city}`,
]}
supportingText={intl.formatMessage(
{
defaultMessage: "Long {long} ∙ Lat {lat}",
},
{
lat: hotel.location.latitude,
long: hotel.location.longitude,
}
)}
links={[
{
href: directionsUrl,
text: intl.formatMessage({
defaultMessage: "Directions",
}),
icon: (
<MaterialIcon
icon="directions"
size={20}
color="Icon/Interactive/Default"
/>
),
onClick: () => trackMyStayPageLink("see on map"),
},
{
href: `mailto:${hotel.contactInformation.email}`,
text: intl.formatMessage({
defaultMessage: "Email",
}),
icon: (
<MaterialIcon
icon="mail"
size={20}
color="Icon/Interactive/Default"
/>
),
onClick: () => trackMyStayPageLink("email us"),
},
{
href: hotel.contactInformation.websiteUrl,
text: intl.formatMessage({
defaultMessage: "Homepage",
}),
icon: (
<MaterialIcon
icon="link"
size={20}
color="Icon/Interactive/Default"
/>
),
onClick: () => trackMyStayPageLink("hotel homepage"),
},
]}
/>
</div>
{hotel.specialAlerts.map((alert) => (
<Alert
key={alert.id}
type={alert.type}
heading={alert.heading}
text={alert.text}
/>
))}
</div>
)
}