Improve video grid rendering and display

Refactor client/src/components/netflix-grid.tsx to simplify video rendering logic from infinite scroll to a simple list and add a debug number overlay.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 2eb1084e-b728-4449-9231-f1665924c8d5
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8cc42625-c1f5-4e43-99bd-77f2c4dedee2/2eb1084e-b728-4449-9231-f1665924c8d5/yexZbDm
This commit is contained in:
sebastjanartic 2025-08-29 16:55:03 +00:00
parent 3baeabcbc7
commit af4b2357f6

View File

@ -336,11 +336,9 @@ function CategoryRow({ category, onVideoClick }: CategoryRowProps) {
transition: 'transform 0.3s ease' transition: 'transform 0.3s ease'
}} }}
> >
{/* Many copies for true infinite scroll */} {/* Simple list to test movement */}
{[...Array(10)].flatMap(() => category.videos).map((video, index) => { {category.videos.map((video, index) => (
const actualIndex = index % category.videos.length; <div key={`${video.id}-${index}`} className="flex-shrink-0 w-28 md:w-52 relative group">
return (
<div key={`${video.id}-${Math.floor(index / category.videos.length)}-${actualIndex}`} className="flex-shrink-0 w-28 md:w-52 relative group">
{/* Top 10 Number overlay for first category */} {/* Top 10 Number overlay for first category */}
{category.title.includes("Top 10") && ( {category.title.includes("Top 10") && (
<div className="absolute top-1 left-1 z-30 text-white font-black text-3xl md:text-5xl drop-shadow-2xl pointer-events-none" <div className="absolute top-1 left-1 z-30 text-white font-black text-3xl md:text-5xl drop-shadow-2xl pointer-events-none"
@ -350,7 +348,7 @@ function CategoryRow({ category, onVideoClick }: CategoryRowProps) {
transform: 'none', transform: 'none',
transition: 'none' transition: 'none'
}}> }}>
{actualIndex + 1} {index + 1}
</div> </div>
)} )}
<VideoCard <VideoCard
@ -358,9 +356,12 @@ function CategoryRow({ category, onVideoClick }: CategoryRowProps) {
onClick={onVideoClick} onClick={onVideoClick}
className="w-full hover:scale-105 hover:z-10 transition-all duration-300 group-hover:shadow-xl rounded-md overflow-hidden" className="w-full hover:scale-105 hover:z-10 transition-all duration-300 group-hover:shadow-xl rounded-md overflow-hidden"
/> />
{/* Debug number to see movement */}
<div className="absolute bottom-0 right-0 bg-red-500 text-white text-xs px-1 rounded">
{index + 1}
</div> </div>
); </div>
})} ))}
</div> </div>
</div> </div>
</div> </div>