feat(SW-2863): Move contentstack router to trpc package * Add exports to packages and lint rule to prevent relative imports * Add env to trpc package * Add eslint to trpc package * Apply lint rules * Use direct imports from trpc package * Add lint-staged config to trpc * Move lang enum to common * Restructure trpc package folder structure * WIP first step * update internal imports in trpc * Fix most errors in scandic-web Just 100 left... * Move Props type out of trpc * Fix CategorizedFilters types * Move more schemas in hotel router * Fix deps * fix getNonContentstackUrls * Fix import error * Fix entry error handling * Fix generateMetadata metrics * Fix alertType enum * Fix duplicated types * lint:fix * Merge branch 'master' into feat/sw-2863-move-contentstack-router-to-trpc-package * Fix broken imports * Merge branch 'master' into feat/sw-2863-move-contentstack-router-to-trpc-package Approved-by: Linus Flood
108 lines
2.6 KiB
TypeScript
108 lines
2.6 KiB
TypeScript
"use client"
|
|
|
|
import { notFound, useSearchParams } from "next/navigation"
|
|
import { useIntl } from "react-intl"
|
|
|
|
import { selectRateRoomsAvailabilityInputSchema } from "@scandic-hotels/trpc/routers/hotels/input"
|
|
import { AlertTypeEnum } from "@scandic-hotels/trpc/types/alertType"
|
|
|
|
import { trpc } from "@/lib/trpc/client"
|
|
|
|
import Alert from "@/components/TempDesignSystem/Alert"
|
|
import useLang from "@/hooks/useLang"
|
|
import RatesProvider from "@/providers/RatesProvider"
|
|
import { parseSelectRateSearchParams, searchParamsToRecord } from "@/utils/url"
|
|
|
|
import RateSummary from "./RateSummary"
|
|
import Rooms from "./Rooms"
|
|
import { RoomsContainerSkeleton } from "./RoomsContainerSkeleton"
|
|
|
|
import styles from "./index.module.css"
|
|
|
|
import type { RoomsContainerProps } from "@/types/components/hotelReservation/selectRate/roomsContainer"
|
|
|
|
export function RoomsContainer({
|
|
hotelType,
|
|
roomCategories,
|
|
vat,
|
|
}: RoomsContainerProps) {
|
|
const lang = useLang()
|
|
const intl = useIntl()
|
|
const searchParams = useSearchParams()
|
|
|
|
const booking = parseSelectRateSearchParams(
|
|
searchParamsToRecord(searchParams)
|
|
)
|
|
|
|
if (!booking) return notFound()
|
|
|
|
const bookingInput = selectRateRoomsAvailabilityInputSchema.safeParse({
|
|
booking,
|
|
lang,
|
|
})
|
|
|
|
const { data, isFetching, isError, error } =
|
|
trpc.hotel.availability.selectRate.rooms.useQuery(bookingInput.data!, {
|
|
retry(failureCount, error) {
|
|
if (error.data?.code === "BAD_REQUEST") {
|
|
return false
|
|
}
|
|
|
|
return failureCount <= 3
|
|
},
|
|
enabled: bookingInput.success,
|
|
})
|
|
|
|
if (isFetching) {
|
|
return <RoomsContainerSkeleton />
|
|
}
|
|
|
|
if (isError || !bookingInput.success) {
|
|
const errorMessage = getErrorMessage(
|
|
error?.data?.zodError?.formErrors,
|
|
intl
|
|
)
|
|
|
|
return (
|
|
<div className={styles.errorContainer}>
|
|
<Alert type={AlertTypeEnum.Alarm} heading={errorMessage} />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<RatesProvider
|
|
booking={booking}
|
|
hotelType={hotelType}
|
|
roomCategories={roomCategories}
|
|
roomsAvailability={data}
|
|
vat={vat}
|
|
>
|
|
<Rooms />
|
|
<RateSummary />
|
|
</RatesProvider>
|
|
)
|
|
}
|
|
|
|
function getErrorMessage(
|
|
formErrors: string[] | undefined,
|
|
intl: ReturnType<typeof useIntl>
|
|
) {
|
|
const firstError = formErrors?.at(0)
|
|
|
|
switch (firstError) {
|
|
case "FROMDATE_INVALID":
|
|
case "TODATE_INVALID":
|
|
case "TODATE_MUST_BE_AFTER_FROMDATE":
|
|
case "FROMDATE_CANNOT_BE_IN_THE_PAST": {
|
|
return intl.formatMessage({
|
|
defaultMessage: "Invalid dates",
|
|
})
|
|
}
|
|
default:
|
|
return intl.formatMessage({
|
|
defaultMessage: "Something went wrong",
|
|
})
|
|
}
|
|
}
|