Feat/SW-1281 ancillaries add flow * feat(SW-1546): update design * feat(SW-1546): show points only if logged in * feat(SW-1546): always show points * feat(SW-1281): ancillary add flow initial * feat(SW-1546): add api call * feat(SW-1281): refactor naming and break out components * feat(SW-1281): handle back button * feat(SW-1281): make mobile cards clickable * feat(SW-1281): refactor spread ancillaries * feat(SW-1281): add deliverytimes * feat(SW-1281): rebase master * feat(SW-1281): add design for logged in or not * feat(SW-1281): add design * feat(SW-1281): add mobile design * feat(SW-1281): fix carousel * feat(SW-1281): show deliverytime only if ancillary has not been added * feat(SW-1281): add design * feat(SW-1281): add translations * feat(SW-1281): add translations * feat(SW-1281): add translations * feat(SW-1281): base dates on check in date only * feat(SW-1281): fix show correct toast when no valid data * feat(SW-1281): hande logic if deliverytime is not required * feat(SW-1281): fix max width for mobile * feat(SW-1281): refactor after pr comment Approved-by: Niclas Edenvin Approved-by: Linus Flood
87 lines
2.8 KiB
TypeScript
87 lines
2.8 KiB
TypeScript
import { notFound } from "next/navigation"
|
|
|
|
import { homeHrefs } from "@/constants/homeHrefs"
|
|
import { env } from "@/env/server"
|
|
import { dt } from "@/lib/dt"
|
|
import {
|
|
getAncillaryPackages,
|
|
getBookingConfirmation,
|
|
getProfileSafely,
|
|
} from "@/lib/trpc/memoizedRequests"
|
|
|
|
import Image from "@/components/Image"
|
|
import { getIntl } from "@/i18n"
|
|
import { getLang } from "@/i18n/serverContext"
|
|
|
|
import { Ancillaries } from "./Ancillaries"
|
|
import BookingSummary from "./BookingSummary"
|
|
import { Header } from "./Header"
|
|
import Promo from "./Promo"
|
|
import { ReferenceCard } from "./ReferenceCard"
|
|
import { Room } from "./Room"
|
|
|
|
import styles from "./myStay.module.css"
|
|
|
|
export async function MyStay({ reservationId }: { reservationId: string }) {
|
|
const bookingConfirmation = await getBookingConfirmation(reservationId)
|
|
if (!bookingConfirmation) {
|
|
return notFound()
|
|
}
|
|
|
|
const { booking, hotel, room } = bookingConfirmation
|
|
|
|
const userResponse = await getProfileSafely()
|
|
const user = userResponse && !("error" in userResponse) ? userResponse : null
|
|
const intl = await getIntl()
|
|
const lang = getLang()
|
|
const homeUrl = homeHrefs[env.NODE_ENV][lang]
|
|
const fromDate = dt(booking.checkInDate).format("YYYY-MM-DD")
|
|
const toDate = dt(booking.checkOutDate).format("YYYY-MM-DD")
|
|
const hotelId = hotel.operaId
|
|
const ancillaryInput = { fromDate, hotelId, toDate }
|
|
void getAncillaryPackages(ancillaryInput)
|
|
const ancillaryPackages = await getAncillaryPackages(ancillaryInput)
|
|
|
|
return (
|
|
<main className={styles.main}>
|
|
<div className={styles.imageContainer}>
|
|
<div className={styles.blurOverlay} />
|
|
|
|
<Image
|
|
className={styles.image}
|
|
src={
|
|
hotel.gallery?.heroImages[0]?.imageSizes.large ??
|
|
room?.images[0]?.imageSizes.large ??
|
|
""
|
|
}
|
|
alt={hotel.name}
|
|
fill
|
|
/>
|
|
</div>
|
|
<div className={styles.content}>
|
|
<div className={styles.headerContainer}>
|
|
<Header hotel={hotel} />
|
|
<ReferenceCard booking={booking} hotel={hotel} />
|
|
</div>
|
|
{booking.showAncillaries && (
|
|
<Ancillaries
|
|
ancillaries={ancillaryPackages}
|
|
booking={booking}
|
|
user={user}
|
|
/>
|
|
)}
|
|
<Room booking={booking} room={room} hotel={hotel} user={user} />
|
|
<BookingSummary booking={booking} hotel={hotel} />
|
|
<Promo
|
|
buttonText={intl.formatMessage({ id: "Book another stay" })}
|
|
href={`${homeUrl}?hotel=${hotel.operaId}`}
|
|
text={intl.formatMessage({
|
|
id: "Get inspired and start dreaming beyond your next trip. Explore more Scandic destinations.",
|
|
})}
|
|
title={intl.formatMessage({ id: "Book your next stay" })}
|
|
/>
|
|
</div>
|
|
</main>
|
|
)
|
|
}
|