63 lines
2.9 KiB
TypeScript
63 lines
2.9 KiB
TypeScript
import Link from "next/link";
|
|
import Image from "next/image";
|
|
import { Music } from "lucide-react";
|
|
import { Podcast } from "../types";
|
|
import { api } from "@/lib/api";
|
|
|
|
interface LibraryPodcastsGridProps {
|
|
podcasts: Podcast[];
|
|
}
|
|
|
|
// Always proxy images through the backend for caching and mobile compatibility
|
|
const getProxiedImageUrl = (imageUrl: string | undefined): string | null => {
|
|
if (!imageUrl) return null;
|
|
return api.getCoverArtUrl(imageUrl, 300);
|
|
};
|
|
|
|
export function LibraryPodcastsGrid({ podcasts }: LibraryPodcastsGridProps) {
|
|
return (
|
|
<div className="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 xl:grid-cols-6 2xl:grid-cols-8 3xl:grid-cols-10 gap-4" data-tv-section="search-results-podcasts">
|
|
{podcasts.slice(0, 6).map((podcast, index) => {
|
|
const imageUrl = getProxiedImageUrl(podcast.imageUrl);
|
|
return (
|
|
<Link
|
|
key={podcast.id}
|
|
href={`/podcasts/${podcast.id}`}
|
|
data-tv-card
|
|
data-tv-card-index={index}
|
|
tabIndex={0}
|
|
>
|
|
<div className="bg-[#121212] hover:bg-[#181818] transition-all p-4 rounded-lg group cursor-pointer">
|
|
<div className="aspect-square bg-[#181818] rounded-md mb-4 flex items-center justify-center overflow-hidden relative">
|
|
{imageUrl ? (
|
|
<Image
|
|
src={imageUrl}
|
|
alt={podcast.title}
|
|
fill
|
|
sizes="(max-width: 640px) 50vw, (max-width: 768px) 33vw, (max-width: 1024px) 25vw, 16vw"
|
|
className="object-cover group-hover:scale-110 transition-all"
|
|
unoptimized
|
|
/>
|
|
) : (
|
|
<Music className="w-12 h-12 text-gray-600" />
|
|
)}
|
|
</div>
|
|
<h3 className="text-base font-bold text-white line-clamp-1 mb-1">
|
|
{podcast.title}
|
|
</h3>
|
|
<p className="text-sm text-[#b3b3b3] line-clamp-1">
|
|
{podcast.author || "Podcast"}
|
|
</p>
|
|
{podcast.episodeCount && podcast.episodeCount > 0 && (
|
|
<p className="text-xs text-gray-500 mt-1">
|
|
{podcast.episodeCount} episodes
|
|
</p>
|
|
)}
|
|
</div>
|
|
</Link>
|
|
);
|
|
})}
|
|
</div>
|
|
);
|
|
}
|