Spaces:
Running
Running
File size: 7,101 Bytes
a2c7711 9b37b82 a2c7711 f27679f f42b4a1 ac7030c f42b4a1 80ea539 f42b4a1 e4d3d8a f42b4a1 761239a 1f122c3 8f2b05f 1f122c3 8f2b05f f27679f f8ca042 9b37b82 1f122c3 ac7030c 1f122c3 8f2b05f ac7030c f8ca042 9b37b82 1f122c3 f27679f 8f2b05f 54fce02 8f2b05f 761239a 8f2b05f 4c34e70 f27679f 8f2b05f f27679f 1f122c3 761239a a2c7711 761239a 9b37b82 8f2b05f 0619325 9b37b82 3d4392e 1f122c3 ac7030c df83860 4c34e70 38d787b df83860 1f122c3 4c34e70 df83860 4c34e70 38d787b df83860 9b37b82 38d787b 9b37b82 8f2b05f d708a3a ca494c0 d708a3a 38d787b d708a3a 54fce02 8f2b05f 54fce02 38d787b 8f2b05f 54fce02 9b37b82 4c34e70 9b37b82 8f2b05f 9b37b82 54fce02 8f2b05f 54fce02 8f2b05f 54fce02 f27679f df83860 9b37b82 df83860 f27679f df83860 f27679f df83860 ac7030c df83860 f27679f 4c34e70 df83860 4c34e70 38d787b d160b97 df83860 a2c7711 df83860 761239a df83860 a2c7711 8f2b05f e4d3d8a 4c34e70 38d787b 8f2b05f df83860 4c34e70 38d787b df83860 8f2b05f df83860 4c34e70 df83860 4c34e70 38d787b df83860 139ef57 df83860 8f2b05f df83860 f27679f 1f122c3 df83860 1f122c3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 |
"use client"
import { useEffect, useRef, useState } from "react"
import Link from "next/link"
import { RiCheckboxCircleFill } from "react-icons/ri"
import { cn } from "@/lib/utils/cn"
import { MediaDisplayLayout, MediaInfo } from "@/types/general"
import { formatDuration } from "@/lib/formatters/formatDuration"
import { formatTimeAgo } from "@/lib/formatters/formatTimeAgo"
import { isCertifiedUser } from "@/app/certification"
import { transparentImage } from "@/lib/utils/transparentImage"
import { DefaultAvatar } from "../default-avatar"
import { formatLargeNumber } from "@/lib/formatters/formatLargeNumber"
export function VideoCard({
media,
className = "",
layout = "grid",
onSelect,
selected,
index
}: {
media: MediaInfo
className?: string
layout?: MediaDisplayLayout
onSelect?: (media: MediaInfo) => void
selected?: boolean
index: number
}) {
const ref = useRef<HTMLVideoElement>(null)
const [duration, setDuration] = useState(0)
const [channelThumbnail, setChannelThumbnail] = useState(media.channel.thumbnail)
const [mediaThumbnail, setMediaThumbnail] = useState(
`https://huggingface.co/datasets/jbilcke-hf/ai-tube-index/resolve/main/videos/${media.id}.webp`
)
const [mediaThumbnailReady, setMediaThumbnailReady] = useState(false)
const [shouldLoadMedia, setShouldLoadMedia] = useState(false)
const isCompact = layout === "vertical"
const handlePointerEnter = () => {
// ref.current?.load()
ref.current?.play()
}
const handlePointerLeave = () => {
ref.current?.pause()
// ref.current?.load()
}
const handleLoad = () => {
if (ref.current?.readyState) {
setDuration(ref.current.duration)
}
}
const handleClick = () => {
onSelect?.(media)
}
const handleBadChannelThumbnail = () => {
try {
if (channelThumbnail) {
setChannelThumbnail("")
}
} catch (err) {
}
}
useEffect(() => {
setTimeout(() => {
setShouldLoadMedia(true)
}, index * 1500)
}, [index])
// uncomment this as a temporary hack when developping, to avoid making too many fetches and downloads
return null;
return (
<Link href={`${process.env.NEXT_PUBLIC_DOMAIN}/watch?v=${media.id}`}>
<div
className={cn(
`w-full flex`,
isCompact
? `space-x-2`
: `flex-col space-y-3`,
`bg-line-900`,
`cursor-pointer`,
className,
)}
onPointerEnter={handlePointerEnter}
onPointerLeave={handlePointerLeave}
// onClick={handleClick}
>
{/* VIDEO BLOCK */}
<div
className={cn(
`flex flex-col items-center justify-center`,
isCompact ? `` : ``
)}
>
<div className={cn(
`relative w-full`,
`aspect-video`,
// `aspect-video rounded-xl overflow-hidden`,
isCompact ? `w-42 h-24` : ``
)}>
{mediaThumbnailReady && shouldLoadMedia
? <video
// mute the video
muted
// prevent iOS from attempting to open the video in full screen, which is annoying
playsInline
ref={ref}
src={media.assetUrl}
className={cn(
`w-full h-full`,
`object-cover`,
`rounded-xl overflow-hidden aspect-video`,
duration > 0 ? `opacity-100`: 'opacity-0',
`transition-all duration-500`,
)}
onLoadedMetadata={handleLoad}
/> : null}
<img
src={mediaThumbnail}
className={cn(
`absolute`,
`object-cover`,
`rounded-xl overflow-hidden aspect-video`,
mediaThumbnailReady ? `opacity-100`: 'opacity-0',
`hover:opacity-0 w-full h-full top-0 z-30`,
//`pointer-events-none`,
`transition-all duration-500 hover:delay-300 ease-in-out`,
)}
onMouseEnter={() => {
setShouldLoadMedia(true)
}}
onLoad={() => {
setMediaThumbnailReady(true)
}}
onError={() => {
setMediaThumbnail(transparentImage)
setMediaThumbnailReady(false)
}}
/>
</div>
<div className={cn(
// `aspect-video`,
`z-40`,
`w-full flex flex-row items-end justify-end`
)}>
<div className={cn(
`-mt-8`,
`mr-0`,
)}
>
<div className={cn(
`mb-[5px]`,
`mr-[5px]`,
`flex flex-col items-center justify-center text-center`,
`bg-neutral-900 rounded`,
`text-2xs font-semibold px-[3px] py-[1px]`,
isFinite(duration) && !isNaN(duration) && duration > 0 ? 'opacity-100' : 'opacity-0'
)}
>{formatDuration(duration)}</div>
</div>
</div>
</div>
{/* TEXT BLOCK */}
<div className={cn(
`flex flex-row`,
`flex-none`,
isCompact ? `w-40 lg:w-44 xl:w-51` : `space-x-4`,
)}>
{
isCompact ? null
: channelThumbnail ? <div className="flex flex-col">
<div className="flex w-9 rounded-full overflow-hidden">
<img
src={channelThumbnail}
onError={handleBadChannelThumbnail}
/>
</div>
</div>
: <DefaultAvatar
username={media.channel.datasetUser}
bgColor="#fde047"
textColor="#1c1917"
width={36}
roundShape
/>}
<div className={cn(
`flex flex-col`,
isCompact ? `` : `flex-grow`
)}>
<h3 className={cn(
`text-zinc-100 font-medium mb-0 line-clamp-2`,
isCompact ? `text-sm mb-1.5` : `text-base`
)}>{media.label}</h3>
<div className={cn(
`flex flex-row items-center`,
`text-neutral-400 font-normal space-x-1`,
isCompact ? `text-xs` : `text-sm`
)}>
<div>{media.channel.label}</div>
{isCertifiedUser(media.channel.datasetUser) ? <div><RiCheckboxCircleFill className="" /></div> : null}
</div>
<div className={cn(
`flex flex-row`,
`text-neutral-400 font-normal`,
isCompact ? `text-xs` : `text-sm`,
`space-x-1`
)}>
<div>{formatLargeNumber(media.numberOfViews)} views</div>
<div className="font-semibold scale-125">·</div>
<div>{formatTimeAgo(media.updatedAt)}</div>
</div>
</div>
</div>
</div>
</Link>
)
} |