jbilcke-hf's picture
jbilcke-hf HF staff
add a delay to not load all videos at once
9b37b82
raw
history blame
No virus
1.15 kB
import { cn } from "@/lib/utils"
import { VideoInfo } from "@/types"
import { VideoCard } from "../video-card"
export function VideoList({
videos,
layout = "grid",
className = "",
onSelect,
}: {
videos: VideoInfo[]
/**
* Layout mode
*
* This isn't necessarily based on screen size, it can also be:
* - based on the device type (eg. a smart TV)
* - a design choice for a particular page
*/
layout?: "grid" | "horizontal" | "vertical"
className?: string
onSelect?: (video: VideoInfo) => void
}) {
return (
<div
className={cn(
layout === "grid"
? `grid grid-cols-1 gap-4 sm:grid-cols-2 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4`
: layout === "vertical"
? `grid grid-cols-1 gap-2`
: `flex flex-col md:flex-row space-y-4 md:space-y-0 md:space-x-4`,
className,
)}
>
{videos.map((video, i) => (
<VideoCard
key={video.id}
video={video}
className="w-full"
layout={layout === "vertical" ? "compact" : "normal"}
onSelect={onSelect}
index={i}
/>
))}
</div>
)
}