68 lines
1.9 KiB
TypeScript
68 lines
1.9 KiB
TypeScript
import { serverClient } from "@/lib/trpc/server"
|
|
import tempHotelData from "@/server/routers/hotels/tempHotelData.json"
|
|
|
|
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 { 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)
|
|
|
|
// TODO: Use real endpoint.
|
|
const tempSearchTerm = "Stockholm"
|
|
const hotel = tempHotelData.data.attributes
|
|
const hotels = [hotel]
|
|
|
|
const hotelFilters = await serverClient().hotel.filters.get({
|
|
hotelId: "879",
|
|
})
|
|
|
|
const availability = await serverClient().hotel.availability({
|
|
cityId: "8ec4bba3-1c38-4606-82d1-bbe3f6738e54",
|
|
roomStayStartDate: "2024-11-01",
|
|
roomStayEndDate: "2024-11-02",
|
|
adults: 1,
|
|
})
|
|
|
|
const filterAvailability = availability?.availability.data.filter(
|
|
(hotels) => hotels.attributes.status === "Available"
|
|
)
|
|
|
|
console.log(filterAvailability)
|
|
|
|
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}>
|
|
{hotels.map((hotel) => (
|
|
<HotelCard key={hotel.name} hotel={hotel} />
|
|
))}
|
|
</section>
|
|
</main>
|
|
)
|
|
}
|