Feat/BOOK-61 refactor hotel page css variables * feat(BOOK-61): Breadcrumbs * feat(BOOK-61): intro section * feat(BOOK-61): show more button * feat(BOOK-61): rooms section * feat(BOOK-61): sidepeeks * feat(BOOK-61): deprecated old Link component * feat(BOOK-61): added new TextLink component to the design-system * feat(BOOK-61): replaced deprecated links with new TextLink component * feat(BOOK-61): miscellaneous changes Approved-by: Bianca Widstam Approved-by: Christel Westerberg
121 lines
4.1 KiB
TypeScript
121 lines
4.1 KiB
TypeScript
"use client"
|
|
import { useIntl } from "react-intl"
|
|
|
|
import { CurrencyEnum } from "@scandic-hotels/common/constants/currency"
|
|
import { useLazyPathname } from "@scandic-hotels/common/hooks/useLazyPathname"
|
|
import { formatPrice } from "@scandic-hotels/common/utils/numberFormatting"
|
|
import Footnote from "@scandic-hotels/design-system/Footnote"
|
|
import Checkbox from "@scandic-hotels/design-system/Form/Checkbox"
|
|
import { LoginButton } from "@scandic-hotels/design-system/LoginButton"
|
|
import { OldDSButton as Button } from "@scandic-hotels/design-system/OldDSButton"
|
|
import Link from "@scandic-hotels/design-system/OldDSLink"
|
|
import { Typography } from "@scandic-hotels/design-system/Typography"
|
|
import { trackLoginClick } from "@scandic-hotels/tracking/navigation"
|
|
|
|
import { useBookingFlowConfig } from "../../../../../bookingFlowConfig/bookingFlowConfigContext"
|
|
import { useRoomContext } from "../../../../../contexts/EnterDetails/RoomContext"
|
|
import useLang from "../../../../../hooks/useLang"
|
|
|
|
import styles from "./joinScandicFriendsCard.module.css"
|
|
|
|
type Props = {
|
|
name?: string
|
|
}
|
|
export function JoinScandicFriendsCard({ name = "join" }: Props) {
|
|
const lang = useLang()
|
|
const intl = useIntl()
|
|
const { routes } = useBookingFlowConfig()
|
|
const loginPathname = useLazyPathname({ includeSearchParams: true })
|
|
const {
|
|
room,
|
|
actions: { updateJoin },
|
|
} = useRoomContext()
|
|
|
|
function onChange(event: { target: { value: boolean } }) {
|
|
updateJoin(event.target.value)
|
|
}
|
|
|
|
if (!("member" in room.roomRate) || !room.roomRate.member) {
|
|
return null
|
|
}
|
|
|
|
return (
|
|
<div className={styles.cardContainer}>
|
|
<Typography variant="Title/Subtitle/md">
|
|
<h2 className={styles.priceContainer}>
|
|
<span>
|
|
{/* eslint-disable-next-line formatjs/no-literal-string-in-jsx */}
|
|
{`${intl.formatMessage({
|
|
id: "enterDetails.joinScandicFriendsCard.title",
|
|
defaultMessage: "Get the member room price",
|
|
})}: `}
|
|
</span>
|
|
<span className={styles.price}>
|
|
{formatPrice(
|
|
intl,
|
|
room.roomRate.member.localPrice.pricePerStay ?? 0,
|
|
room.roomRate.member.localPrice.currency ?? CurrencyEnum.Unknown
|
|
)}
|
|
</span>
|
|
</h2>
|
|
</Typography>
|
|
<Checkbox
|
|
name={name}
|
|
className={styles.checkBox}
|
|
registerOptions={{ onChange }}
|
|
>
|
|
<Typography variant="Body/Paragraph/mdRegular">
|
|
<div>
|
|
{intl.formatMessage({
|
|
id: "enterDetails.joinScandicFriendsCard.joinCheckboxLabel",
|
|
defaultMessage: "Join Scandic Friends now",
|
|
})}
|
|
</div>
|
|
</Typography>
|
|
</Checkbox>
|
|
|
|
<Button size="small" color="Primary" asChild>
|
|
<LoginButton
|
|
lang={lang}
|
|
className={styles.login}
|
|
color="white"
|
|
trackingId="join-scandic-friends-enter-details"
|
|
onClick={() => {
|
|
trackLoginClick("enter details")
|
|
}}
|
|
redirectTo={loginPathname}
|
|
>
|
|
{intl.formatMessage({
|
|
id: "enterDetails.joinScandicFriendsCard.loginButtonText",
|
|
defaultMessage: "Log in",
|
|
})}
|
|
</LoginButton>
|
|
</Button>
|
|
|
|
<div className={styles.terms}>
|
|
<Footnote color="uiTextPlaceholder">
|
|
{intl.formatMessage(
|
|
{
|
|
id: "enterDetails.joinScandicFriendsCard.terms",
|
|
defaultMessage:
|
|
"By joining you accept the <termsAndConditionsLink>Terms and Conditions</termsAndConditionsLink>. The Scandic Friends Membership is valid until further notice, but can at any time be terminated by contacting Scandic Customer Service.",
|
|
},
|
|
{
|
|
termsAndConditionsLink: (str) => (
|
|
<Link
|
|
textDecoration="underline"
|
|
size="tiny"
|
|
target="_blank"
|
|
href={routes.membershipTermsAndConditions[lang]}
|
|
>
|
|
{str}
|
|
</Link>
|
|
),
|
|
}
|
|
)}
|
|
</Footnote>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|