chore: Cleanup booking-flow after migration * Remove unused types * Clean up exports, types, unused files etc in booking-flow Approved-by: Joakim Jäderberg
107 lines
3.3 KiB
TypeScript
107 lines
3.3 KiB
TypeScript
"use client"
|
|
|
|
import { useIntl } from "react-intl"
|
|
|
|
import { CurrencyEnum } from "@scandic-hotels/common/constants/currency"
|
|
import { membershipTermsAndConditions } from "@scandic-hotels/common/constants/routes/membershipTermsAndConditions"
|
|
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 Link from "@scandic-hotels/design-system/Link"
|
|
import { Typography } from "@scandic-hotels/design-system/Typography"
|
|
|
|
import { useRoomContext } from "../../../../../contexts/EnterDetails/RoomContext"
|
|
import useLang from "../../../../../hooks/useLang"
|
|
|
|
import styles from "./joinScandicFriendsCard.module.css"
|
|
|
|
type JoinScandicFriendsCardProps = {
|
|
name?: string
|
|
}
|
|
export default function JoinScandicFriendsCard({
|
|
name = "join",
|
|
}: JoinScandicFriendsCardProps) {
|
|
const lang = useLang()
|
|
const intl = useIntl()
|
|
const {
|
|
room,
|
|
roomNr,
|
|
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({
|
|
defaultMessage: "Get the member room price",
|
|
})}: `}
|
|
</span>
|
|
<span className={styles.price}>
|
|
{intl.formatMessage(
|
|
{
|
|
defaultMessage: "{amount} for room {roomNr}",
|
|
},
|
|
{
|
|
amount: formatPrice(
|
|
intl,
|
|
room.roomRate.member.localPrice.pricePerStay ?? 0,
|
|
room.roomRate.member.localPrice.currency ??
|
|
CurrencyEnum.Unknown
|
|
),
|
|
roomNr,
|
|
}
|
|
)}
|
|
</span>
|
|
</h2>
|
|
</Typography>
|
|
<Checkbox
|
|
name={name}
|
|
className={styles.checkBox}
|
|
registerOptions={{ onChange, value: room.guest.join }}
|
|
>
|
|
<Typography variant="Body/Paragraph/mdRegular">
|
|
<div>
|
|
{intl.formatMessage({
|
|
defaultMessage: "Join Scandic Friends before check-in",
|
|
})}
|
|
</div>
|
|
</Typography>
|
|
</Checkbox>
|
|
|
|
<div className={styles.terms}>
|
|
<Footnote color="uiTextPlaceholder">
|
|
{intl.formatMessage(
|
|
{
|
|
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={membershipTermsAndConditions[lang]}
|
|
>
|
|
{str}
|
|
</Link>
|
|
),
|
|
}
|
|
)}
|
|
</Footnote>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|