57 lines
1.5 KiB
TypeScript
57 lines
1.5 KiB
TypeScript
import { alternativeHotels } from "@/constants/routes/hotelReservation"
|
|
|
|
import Alert from "@/components/TempDesignSystem/Alert"
|
|
import { getIntl } from "@/i18n"
|
|
import { getLang } from "@/i18n/serverContext"
|
|
|
|
import type { NoAvailabilityAlertProp } from "@/types/components/hotelReservation/selectHotel/noAvailabilityAlert"
|
|
import { AlertTypeEnum } from "@/types/enums/alert"
|
|
|
|
export default async function NoAvailabilityAlert({
|
|
hotelsLength,
|
|
isAllUnavailable,
|
|
isAlternative,
|
|
operaId,
|
|
}: NoAvailabilityAlertProp) {
|
|
const intl = await getIntl()
|
|
const lang = getLang()
|
|
|
|
if (!isAllUnavailable) {
|
|
return null
|
|
}
|
|
|
|
if (hotelsLength === 1 && !isAlternative && operaId) {
|
|
return (
|
|
<Alert
|
|
type={AlertTypeEnum.Info}
|
|
heading={intl.formatMessage({
|
|
defaultMessage: "No availability",
|
|
})}
|
|
text={intl.formatMessage({
|
|
defaultMessage:
|
|
"Please try and change your search for this destination or see alternative hotels.",
|
|
})}
|
|
link={{
|
|
title: intl.formatMessage({
|
|
defaultMessage: "See alternative hotels",
|
|
}),
|
|
url: `${alternativeHotels(lang)}?hotel=${operaId}`,
|
|
keepSearchParams: true,
|
|
}}
|
|
/>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<Alert
|
|
type={AlertTypeEnum.Info}
|
|
heading={intl.formatMessage({
|
|
defaultMessage: "No availability",
|
|
})}
|
|
text={intl.formatMessage({
|
|
defaultMessage: "There are no rooms available that match your request.",
|
|
})}
|
|
/>
|
|
)
|
|
}
|