"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 (

{/* eslint-disable-next-line formatjs/no-literal-string-in-jsx */} {`${intl.formatMessage({ id: "enterDetails.joinScandicFriendsCard.title", defaultMessage: "Get the member room price", })}: `} {formatPrice( intl, room.roomRate.member.localPrice.pricePerStay ?? 0, room.roomRate.member.localPrice.currency ?? CurrencyEnum.Unknown )}

{intl.formatMessage({ id: "enterDetails.joinScandicFriendsCard.joinCheckboxLabel", defaultMessage: "Join Scandic Friends now", })}
{intl.formatMessage( { id: "enterDetails.joinScandicFriendsCard.terms", defaultMessage: "By joining you accept the Terms and Conditions. The Scandic Friends Membership is valid until further notice, but can at any time be terminated by contacting Scandic Customer Service.", }, { termsAndConditionsLink: (str) => ( {str} ), } )}
) }