fix: fix logic for showing ancillaries and add/remove ancillaries * fix: fix logic for showing ancillaries and add/remove ancillaries * fix: move canModifyAncillary check Approved-by: Niclas Edenvin
226 lines
8.1 KiB
TypeScript
226 lines
8.1 KiB
TypeScript
import { useRouter } from "next/navigation"
|
|
import { useIntl } from "react-intl"
|
|
|
|
import { MaterialIcon } from "@scandic-hotels/design-system/Icons"
|
|
|
|
import Accordion from "@/components/TempDesignSystem/Accordion"
|
|
import AccordionItem from "@/components/TempDesignSystem/Accordion/AccordionItem"
|
|
import Divider from "@/components/TempDesignSystem/Divider"
|
|
import Body from "@/components/TempDesignSystem/Text/Body"
|
|
import Subtitle from "@/components/TempDesignSystem/Text/Subtitle"
|
|
import { trackRemoveAncillary } from "@/utils/tracking/myStay"
|
|
|
|
import { getBreakfastPackagesFromAncillaryFlow } from "../../utils/hasBreakfastPackage"
|
|
import RemoveButton from "./RemoveButton"
|
|
|
|
import styles from "./addedAncillaries.module.css"
|
|
|
|
import type { AddedAncillariesProps } from "@/types/components/myPages/myStay/ancillaries"
|
|
import { BreakfastPackageEnum } from "@/types/enums/breakfast"
|
|
import type {
|
|
BookingConfirmation,
|
|
PackageSchema,
|
|
} from "@/types/trpc/routers/booking/confirmation"
|
|
|
|
export function AddedAncillaries({
|
|
ancillaries,
|
|
booking,
|
|
}: AddedAncillariesProps) {
|
|
const intl = useIntl()
|
|
const router = useRouter()
|
|
|
|
const addedBreakfastPackages = getBreakfastPackagesFromAncillaryFlow(
|
|
booking.packages
|
|
)
|
|
|
|
const addedAncillaries = getAddedAncillaries(booking, addedBreakfastPackages)
|
|
|
|
if (addedAncillaries.length === 0) {
|
|
return null
|
|
}
|
|
|
|
return (
|
|
<div className={styles.container}>
|
|
<div className={styles.header}>
|
|
<Subtitle>{intl.formatMessage({ id: "My Add-on's" })}</Subtitle>
|
|
|
|
{booking.ancillary?.deliveryTime && (
|
|
<div className={styles.deliveryTime}>
|
|
<Body color="baseTextHighContrast" textTransform="bold">
|
|
{intl.formatMessage({ id: "Delivered at:" })}
|
|
</Body>
|
|
<Body color="baseTextHighContrast" textTransform="bold">
|
|
{booking.ancillary?.deliveryTime}
|
|
</Body>
|
|
</div>
|
|
)}
|
|
</div>
|
|
|
|
{addedAncillaries.map((ancillary) => {
|
|
const ancillaryTitle =
|
|
ancillary.code === BreakfastPackageEnum.ANCILLARY_REGULAR_BREAKFAST
|
|
? intl.formatMessage({ id: "Breakfast" })
|
|
: (ancillaries?.find(
|
|
(a) =>
|
|
a.id === ancillary.code || a.loyaltyCode === ancillary.code
|
|
)?.title ?? "")
|
|
|
|
return (
|
|
<>
|
|
<Accordion className={styles.ancillaryMobile}>
|
|
<AccordionItem
|
|
title={ancillaryTitle}
|
|
icon={
|
|
<MaterialIcon
|
|
icon="check_circle"
|
|
color="Icon/Feedback/Success"
|
|
/>
|
|
}
|
|
>
|
|
<div>
|
|
{ancillary.comment && (
|
|
<>
|
|
<div className={styles.commentMobile}>
|
|
<Body textTransform="bold">
|
|
{intl.formatMessage({ id: "Other requests" })}:
|
|
</Body>
|
|
<Body color="uiTextMediumContrast">
|
|
{ancillary.comment}
|
|
</Body>
|
|
</div>
|
|
</>
|
|
)}
|
|
<div className={styles.paymentMobileWrapper}>
|
|
<div className={styles.paymentMobile}>
|
|
<Body>{intl.formatMessage({ id: "Total" })}</Body>
|
|
<Body textTransform="bold">
|
|
{ancillary.currency.toLowerCase() === "points"
|
|
? `${ancillary.totalPrice} ${intl.formatMessage({ id: "Points" })}`
|
|
: `${ancillary.totalPrice} ${ancillary.currency}`}
|
|
</Body>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div className={styles.footerMobile}>
|
|
{booking.confirmationNumber && ancillary.code ? (
|
|
<div className={styles.actions}>
|
|
<RemoveButton
|
|
confirmationNumber={booking.confirmationNumber}
|
|
codes={
|
|
ancillary.code ===
|
|
BreakfastPackageEnum.ANCILLARY_REGULAR_BREAKFAST
|
|
? addedBreakfastPackages!.map((p) => p.code)
|
|
: [ancillary.code]
|
|
}
|
|
title={ancillaryTitle}
|
|
onSuccess={router.refresh}
|
|
/>
|
|
</div>
|
|
) : null}
|
|
</div>
|
|
</AccordionItem>
|
|
</Accordion>
|
|
<div className={styles.ancillaryDesktop}>
|
|
<div className={styles.specification}>
|
|
<div className={styles.name}>
|
|
<MaterialIcon
|
|
icon="check_circle"
|
|
color="Icon/Feedback/Success"
|
|
/>
|
|
<Body textTransform="bold">{ancillaryTitle}</Body>
|
|
<Body textTransform="bold">{`X${ancillary.totalUnit}`}</Body>
|
|
</div>
|
|
<div className={styles.payment}>
|
|
<Body>{intl.formatMessage({ id: "Total" })}</Body>
|
|
<Body textTransform="bold">
|
|
{ancillary.currency.toLowerCase() === "points"
|
|
? `${ancillary.totalPrice} ${intl.formatMessage({ id: "Points" })}`
|
|
: `${ancillary.totalPrice} ${ancillary.currency}`}
|
|
</Body>
|
|
</div>
|
|
</div>
|
|
|
|
<Divider color="baseSurfaceSubtleHover" />
|
|
|
|
<div className={styles.footer}>
|
|
<div className={styles.comment}>
|
|
{ancillary.comment && (
|
|
<>
|
|
<Body textTransform="bold">
|
|
{intl.formatMessage({ id: "Other requests" })}:
|
|
</Body>
|
|
<Body>{ancillary.comment}</Body>
|
|
</>
|
|
)}
|
|
</div>
|
|
{booking.confirmationNumber &&
|
|
ancillary.code &&
|
|
booking.canModifyAncillaries ? (
|
|
<div className={styles.actions}>
|
|
<RemoveButton
|
|
confirmationNumber={booking.confirmationNumber}
|
|
codes={
|
|
ancillary.code ===
|
|
BreakfastPackageEnum.ANCILLARY_REGULAR_BREAKFAST
|
|
? addedBreakfastPackages!.map((p) => p.code)
|
|
: [ancillary.code]
|
|
}
|
|
title={ancillaryTitle}
|
|
onSuccess={() => {
|
|
trackRemoveAncillary(
|
|
ancillary,
|
|
booking.hotelId,
|
|
booking.ancillary?.deliveryTime
|
|
)
|
|
router.refresh()
|
|
}}
|
|
/>
|
|
</div>
|
|
) : null}
|
|
</div>
|
|
</div>
|
|
</>
|
|
)
|
|
})}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
/**
|
|
* All ancillaries that are added to the booking
|
|
*
|
|
* Adding a special ancillary for breakfast, calculated from
|
|
* all breakfast packages that has been added as ancillaries,
|
|
* not in the booking flow.
|
|
*/
|
|
function getAddedAncillaries(
|
|
booking: BookingConfirmation["booking"],
|
|
addedBreakfastPackages: PackageSchema[] | undefined
|
|
) {
|
|
if (!addedBreakfastPackages?.length) {
|
|
return booking.ancillaries
|
|
}
|
|
|
|
const combinedBreakfastPackageAsAncillary: PackageSchema = {
|
|
code: BreakfastPackageEnum.ANCILLARY_REGULAR_BREAKFAST,
|
|
unitPrice: 0,
|
|
points: 0,
|
|
currency: addedBreakfastPackages[0].currency,
|
|
type: addedBreakfastPackages[0].type,
|
|
description: addedBreakfastPackages[0].description,
|
|
comment: addedBreakfastPackages[0].comment,
|
|
totalPrice: addedBreakfastPackages.reduce(
|
|
(acc, curr) => acc + curr.totalPrice,
|
|
0
|
|
),
|
|
unit: addedBreakfastPackages.reduce((acc, curr) => acc + curr.unit, 0),
|
|
totalUnit: addedBreakfastPackages.reduce(
|
|
(acc, curr) => acc + curr.totalUnit,
|
|
0
|
|
),
|
|
}
|
|
|
|
return [combinedBreakfastPackageAsAncillary, ...booking.ancillaries]
|
|
}
|