import { MainLayout } from "@components/layouts/main.tsx"; import { Movie } from "@lib/resource/movies.ts"; import { ResourceCard } from "@components/Card.tsx"; import { Grid } from "@components/Grid.tsx"; import { IconArrowLeft } from "@components/icons.tsx"; import { KMenu } from "@islands/KMenu.tsx"; import { RedirectSearchHandler } from "@islands/Search.tsx"; import { GenericResource } from "@lib/types.ts"; import { PageProps } from "$fresh/server.ts"; import { fetchResource } from "@lib/resources.ts"; import { parseResourceUrl, searchResource } from "@lib/search.ts"; export default async function Greet( props: PageProps< { movies: Movie[] | null; searchResults: GenericResource[] } >, ) { const { content: allMovies } = await fetchResource("movies"); const searchParams = parseResourceUrl(props.url); const searchResults = searchParams && await searchResource({ ...searchParams, types: ["movie"] }); const movies = allMovies.sort((a, b) => a?.content?.reviewRating?.ratingValue > b?.content?.reviewRating?.ratingValue ? -1 : 1 ); return (
Back

🍿 Movies

{movies?.map((doc) => { return ; })}
); }