Files
web/packages/booking-flow/lib/components/SignupPromo/Desktop.tsx
Bianca Widstam d9ec1b1f2d Merged in chore/BOOK-739-replace-caption (pull request #3428)
chore(BOOK-739): replace caption with typography

* chore(BOOK-739): replace caption with typography

* chore(BOOK-739): refactor div

* chore(BOOK-739): refactor badge

* chore(BOOK-739): remove span

* chore(BOOK-739): skeleton update

* chore(BOOK-739): update

* chore(BOOK-739): update reward

* chore(BOOK-739): update voucher currency


Approved-by: Erik Tiekstra
2026-01-14 09:33:27 +00:00

118 lines
2.8 KiB
TypeScript

"use client"
import { useIntl } from "react-intl"
import { formatPrice } from "@scandic-hotels/common/utils/numberFormatting"
import Footnote from "@scandic-hotels/design-system/Footnote"
import { Typography } from "@scandic-hotels/design-system/Typography"
import { useBookingFlowConfig } from "../../bookingFlowConfig/bookingFlowConfigContext"
import styles from "./signupPromo.module.css"
type SignupPromoProps = {
memberPrice: {
amount: number
currency: string
}
badgeContent?: string
isEnterDetailsPage?: boolean
}
export default function SignupPromoDesktop({
memberPrice,
badgeContent,
isEnterDetailsPage = false,
}: SignupPromoProps) {
const intl = useIntl()
if (!memberPrice) {
return null
}
const { amount, currency } = memberPrice
const price = formatPrice(intl, amount, currency)
return memberPrice ? (
<div
className={styles.memberDiscountBannerDesktop}
data-testid="signup-promo-desktop"
>
{badgeContent && <span className={styles.badge}>{badgeContent}</span>}
<Footnote color="burgundy">
<Message price={price} isEnterDetailsPage={isEnterDetailsPage} />
</Footnote>
</div>
) : null
}
function Message({
price,
isEnterDetailsPage,
}: {
price: string
isEnterDetailsPage: boolean
}) {
const intl = useIntl()
const config = useBookingFlowConfig()
if (config.variant === "partner-sas") {
return intl.formatMessage(
{
id: "signup.toGetTheScandicMemberPriceWithValue",
defaultMessage:
"To get the Scandic member price <span>{price}</span>, enter your ID or join while booking.",
},
{
span: (str) => (
<Typography
variant="Body/Supporting text (caption)/smBold"
className={styles.red}
>
<span>{str}</span>
</Typography>
),
price,
}
)
}
if (isEnterDetailsPage) {
return intl.formatMessage(
{
id: "signup.toGetTheMemberRoomPrice",
defaultMessage:
"To get the member room price <span>{price}</span>, log in or join when completing the booking.",
},
{
span: (str) => (
<Typography
variant="Body/Supporting text (caption)/smBold"
className={styles.red}
>
<span>{str}</span>
</Typography>
),
price,
}
)
}
return intl.formatMessage(
{
id: "signup.toGetTheMemberPrice",
defaultMessage:
"To get the member price <span>{price}</span>, log in or join when completing the booking.",
},
{
span: (str) => (
<Typography
variant="Body/Supporting text (caption)/smBold"
className={styles.red}
>
<span>{str}</span>
</Typography>
),
price,
}
)
}