73 lines
2.1 KiB
TypeScript
73 lines
2.1 KiB
TypeScript
import { serverClient } from "@/lib/trpc/server"
|
|
|
|
import HotelCard from "@/components/HotelReservation/HotelCard"
|
|
import HotelFilter from "@/components/HotelReservation/SelectHotel/HotelFilter"
|
|
import { ChevronRightIcon } from "@/components/Icons"
|
|
import StaticMap from "@/components/Maps/StaticMap"
|
|
import Link from "@/components/TempDesignSystem/Link"
|
|
import Title from "@/components/TempDesignSystem/Text/Title"
|
|
import { getIntl } from "@/i18n"
|
|
import { setLang } from "@/i18n/serverContext"
|
|
|
|
import styles from "./page.module.css"
|
|
|
|
import { LangParams, PageArgs } from "@/types/params"
|
|
|
|
export default async function SelectHotelPage({
|
|
params,
|
|
}: PageArgs<LangParams>) {
|
|
const intl = await getIntl()
|
|
setLang(params.lang)
|
|
|
|
const tempSearchTerm = "Stockholm"
|
|
const hotelFilters = await serverClient().hotel.filters.get({
|
|
hotelId: "879",
|
|
})
|
|
|
|
const availableHotels = await serverClient().hotel.availability.get({
|
|
cityId: "8ec4bba3-1c38-4606-82d1-bbe3f6738e54",
|
|
roomStayStartDate: "2024-11-02",
|
|
roomStayEndDate: "2024-11-03",
|
|
adults: 1,
|
|
})
|
|
|
|
if (!availableHotels) return null
|
|
|
|
console.log(availableHotels)
|
|
|
|
return (
|
|
<main className={styles.main}>
|
|
<section>
|
|
<StaticMap
|
|
city={tempSearchTerm}
|
|
width={340}
|
|
height={180}
|
|
zoomLevel={11}
|
|
mapType="roadmap"
|
|
/>
|
|
<Link className={styles.link} color="burgundy" href="#">
|
|
{intl.formatMessage({ id: "Show map" })}
|
|
<ChevronRightIcon color="burgundy" />
|
|
</Link>
|
|
<HotelFilter filters={hotelFilters} />
|
|
</section>
|
|
<section className={styles.hotelCards}>
|
|
{availableHotels.availability.length ? (
|
|
availableHotels.availability.map((hotel) => (
|
|
<HotelCard
|
|
key={hotel.hotelId}
|
|
checkInDate={hotel.checkInDate}
|
|
checkOutDate={hotel.checkOutDate}
|
|
hotelId={hotel.hotelId}
|
|
price={hotel.bestPricePerNight}
|
|
/>
|
|
))
|
|
) : (
|
|
// TODO: handle no hotels found
|
|
<Title>No hotels found</Title>
|
|
)}
|
|
</section>
|
|
</main>
|
|
)
|
|
}
|