205 lines
5.9 KiB
TypeScript
205 lines
5.9 KiB
TypeScript
"use client"
|
|
import { zodResolver } from "@hookform/resolvers/zod"
|
|
import { useEffect, useRef, useState } from "react"
|
|
import { FormProvider, useForm } from "react-hook-form"
|
|
|
|
import { dt } from "@/lib/dt"
|
|
import { StickyElementNameEnum } from "@/stores/sticky-position"
|
|
|
|
import Form, {
|
|
BookingWidgetFormSkeleton,
|
|
} from "@/components/Forms/BookingWidget"
|
|
import { bookingWidgetSchema } from "@/components/Forms/BookingWidget/schema"
|
|
import { CloseLargeIcon } from "@/components/Icons"
|
|
import useStickyPosition from "@/hooks/useStickyPosition"
|
|
import { debounce } from "@/utils/debounce"
|
|
import { getFormattedUrlQueryParams } from "@/utils/url"
|
|
|
|
import MobileToggleButton, {
|
|
MobileToggleButtonSkeleton,
|
|
} from "./MobileToggleButton"
|
|
|
|
import styles from "./bookingWidget.module.css"
|
|
|
|
import type {
|
|
BookingWidgetClientProps,
|
|
BookingWidgetSchema,
|
|
BookingWidgetSearchParams,
|
|
} from "@/types/components/bookingWidget"
|
|
import type { Location } from "@/types/trpc/routers/hotel/locations"
|
|
|
|
export default function BookingWidgetClient({
|
|
locations,
|
|
type,
|
|
searchParams,
|
|
}: BookingWidgetClientProps) {
|
|
const [isOpen, setIsOpen] = useState(false)
|
|
const bookingWidgetRef = useRef(null)
|
|
useStickyPosition({
|
|
ref: bookingWidgetRef,
|
|
name: StickyElementNameEnum.BOOKING_WIDGET,
|
|
})
|
|
|
|
const bookingWidgetSearchData: BookingWidgetSearchParams | undefined =
|
|
searchParams
|
|
? getFormattedUrlQueryParams(new URLSearchParams(searchParams), {
|
|
adults: "number",
|
|
age: "number",
|
|
bed: "number",
|
|
})
|
|
: undefined
|
|
|
|
const getLocationObj = (destination: string): Location | undefined => {
|
|
if (destination) {
|
|
const location: Location | undefined = locations.find((location) => {
|
|
return (
|
|
location.name.toLowerCase() === destination.toLowerCase() ||
|
|
//@ts-ignore (due to operaId not property error)
|
|
(location.operaId && location.operaId == destination)
|
|
)
|
|
})
|
|
return location
|
|
}
|
|
return undefined
|
|
}
|
|
|
|
const reqFromDate = bookingWidgetSearchData?.fromDate?.toString()
|
|
const reqToDate = bookingWidgetSearchData?.toDate?.toString()
|
|
|
|
const parsedFromDate = reqFromDate ? dt(reqFromDate) : undefined
|
|
const parsedToDate = reqToDate ? dt(reqToDate) : undefined
|
|
|
|
const now = dt()
|
|
|
|
const isDateParamValid =
|
|
parsedFromDate &&
|
|
parsedToDate &&
|
|
parsedFromDate.isSameOrAfter(now, "day") &&
|
|
parsedToDate.isAfter(parsedFromDate)
|
|
|
|
const selectedLocation = bookingWidgetSearchData
|
|
? getLocationObj(
|
|
(bookingWidgetSearchData.city ??
|
|
bookingWidgetSearchData.hotel) as string
|
|
)
|
|
: undefined
|
|
|
|
const defaultRoomsData = bookingWidgetSearchData?.room?.map((room) => ({
|
|
adults: room.adults,
|
|
child: room.child ?? [],
|
|
})) ?? [
|
|
{
|
|
adults: 1,
|
|
child: [],
|
|
},
|
|
]
|
|
|
|
const methods = useForm<BookingWidgetSchema>({
|
|
defaultValues: {
|
|
search: selectedLocation?.name ?? "",
|
|
location: selectedLocation ? JSON.stringify(selectedLocation) : undefined,
|
|
date: {
|
|
// UTC is required to handle requests from far away timezones https://scandichotels.atlassian.net/browse/SWAP-6375 & PET-507
|
|
// This is specifically to handle timezones falling in different dates.
|
|
fromDate: isDateParamValid
|
|
? parsedFromDate.format("YYYY-MM-DD")
|
|
: now.utc().format("YYYY-MM-DD"),
|
|
toDate: isDateParamValid
|
|
? parsedToDate.format("YYYY-MM-DD")
|
|
: now.utc().add(1, "day").format("YYYY-MM-DD"),
|
|
},
|
|
bookingCode: "",
|
|
redemption: false,
|
|
voucher: false,
|
|
rooms: defaultRoomsData,
|
|
},
|
|
shouldFocusError: false,
|
|
mode: "onSubmit",
|
|
resolver: zodResolver(bookingWidgetSchema),
|
|
reValidateMode: "onSubmit",
|
|
})
|
|
|
|
function closeMobileSearch() {
|
|
setIsOpen(false)
|
|
document.body.style.overflowY = "visible"
|
|
}
|
|
|
|
function openMobileSearch() {
|
|
setIsOpen(true)
|
|
document.body.style.overflowY = "hidden"
|
|
}
|
|
|
|
useEffect(() => {
|
|
const debouncedResizeHandler = debounce(function ([
|
|
entry,
|
|
]: ResizeObserverEntry[]) {
|
|
if (entry.contentRect.width > 1366) {
|
|
closeMobileSearch()
|
|
}
|
|
})
|
|
const observer = new ResizeObserver(debouncedResizeHandler)
|
|
|
|
observer.observe(document.body)
|
|
|
|
return () => {
|
|
if (observer) {
|
|
observer.unobserve(document.body)
|
|
}
|
|
}
|
|
}, [])
|
|
|
|
useEffect(() => {
|
|
const sessionStorageSearchData =
|
|
typeof window !== "undefined"
|
|
? sessionStorage.getItem("searchData")
|
|
: undefined
|
|
const initialSelectedLocation: Location | undefined =
|
|
sessionStorageSearchData
|
|
? JSON.parse(sessionStorageSearchData)
|
|
: undefined
|
|
|
|
!selectedLocation?.name &&
|
|
initialSelectedLocation?.name &&
|
|
methods.setValue("search", initialSelectedLocation.name)
|
|
!selectedLocation &&
|
|
sessionStorageSearchData &&
|
|
methods.setValue("location", encodeURIComponent(sessionStorageSearchData))
|
|
}, [methods, selectedLocation])
|
|
|
|
return (
|
|
<FormProvider {...methods}>
|
|
<section
|
|
ref={bookingWidgetRef}
|
|
className={styles.wrapper}
|
|
data-open={isOpen}
|
|
>
|
|
<MobileToggleButton openMobileSearch={openMobileSearch} />
|
|
<div className={styles.formContainer}>
|
|
<button
|
|
className={styles.close}
|
|
onClick={closeMobileSearch}
|
|
type="button"
|
|
>
|
|
<CloseLargeIcon />
|
|
</button>
|
|
<Form locations={locations} type={type} onClose={closeMobileSearch} />
|
|
</div>
|
|
</section>
|
|
<div className={styles.backdrop} onClick={closeMobileSearch} />
|
|
</FormProvider>
|
|
)
|
|
}
|
|
|
|
export function BookingWidgetSkeleton() {
|
|
return (
|
|
<>
|
|
<section className={styles.wrapper} style={{ top: 0 }}>
|
|
<MobileToggleButtonSkeleton />
|
|
<div className={styles.formContainer}>
|
|
<BookingWidgetFormSkeleton />
|
|
</div>
|
|
</section>
|
|
</>
|
|
)
|
|
}
|