fix: align guarantee info button and text to the right regardless of breakpoint * fix: align guarantee info button and text to the right regardless of breakpoint Approved-by: Erik Tiekstra
51 lines
1.5 KiB
TypeScript
51 lines
1.5 KiB
TypeScript
"use client"
|
|
import { useIntl } from "react-intl"
|
|
|
|
import { MaterialIcon } from "@scandic-hotels/design-system/Icons/MaterialIcon"
|
|
import { Typography } from "@scandic-hotels/design-system/Typography"
|
|
|
|
import { useMyStayStore } from "@/stores/my-stay"
|
|
|
|
import { GuaranteeInfoModal } from "./GuaranteeInfoModal"
|
|
|
|
import styles from "./guaranteeInfo.module.css"
|
|
|
|
export default function GuaranteeInfo() {
|
|
const intl = useIntl()
|
|
const { isGuaranteeable, guaranteeInfo, allRoomsAreCancelled } =
|
|
useMyStayStore((state) => ({
|
|
isGuaranteeable: state.bookedRoom.isGuaranteeable,
|
|
guaranteeInfo: state.bookedRoom.guaranteeInfo,
|
|
allRoomsAreCancelled: state.allRoomsAreCancelled,
|
|
}))
|
|
|
|
if ((isGuaranteeable && !guaranteeInfo) || allRoomsAreCancelled) {
|
|
return null
|
|
}
|
|
|
|
return (
|
|
<div className={styles.row}>
|
|
<div className={styles.label}>
|
|
<MaterialIcon icon="check_circle" />
|
|
<Typography variant="Body/Paragraph/mdRegular">
|
|
<p className={styles.textDefault}>
|
|
{intl.formatMessage({
|
|
id: "myStay.bookingGuaranteed",
|
|
defaultMessage: "Booking guaranteed",
|
|
})}
|
|
</p>
|
|
</Typography>
|
|
</div>
|
|
<Typography variant="Body/Paragraph/mdRegular">
|
|
<span className={styles.guaranteeInfo}>
|
|
<GuaranteeInfoModal />
|
|
{intl.formatMessage({
|
|
id: "myStay.roomHeldAfter18",
|
|
defaultMessage: "Room held after 18:00",
|
|
})}
|
|
</span>
|
|
</Typography>
|
|
</div>
|
|
)
|
|
}
|