refacto(images): component cover dans refacto services and routes

This commit is contained in:
Julien Froidefond
2025-02-17 09:14:57 +01:00
parent 5c1138f287
commit 7ee99ac31a
13 changed files with 270 additions and 511 deletions

View File

@@ -1,32 +1,33 @@
"use client";
import { KomgaSeries } from "@/types/komga";
import { Book, ImageOff, Loader2 } from "lucide-react";
import Image from "next/image";
import { useState } from "react";
import { useRouter } from "next/navigation";
import { ImageLoader } from "@/components/ui/image-loader";
import { cn } from "@/lib/utils";
import { Cover } from "@/components/ui/cover";
interface SeriesGridProps {
series: KomgaSeries[];
}
// Fonction utilitaire pour obtenir les informations de lecture d'une série
// Fonction utilitaire pour obtenir les informations de statut de lecture
const getReadingStatusInfo = (series: KomgaSeries) => {
const { booksCount, booksReadCount, booksUnreadCount } = series;
const booksInProgressCount = booksCount - (booksReadCount + booksUnreadCount);
if (series.booksCount === 0) {
return {
label: "Pas de tomes",
className: "bg-yellow-500/10 text-yellow-500",
};
}
if (booksReadCount === booksCount) {
if (series.booksCount === series.booksReadCount) {
return {
label: "Lu",
className: "bg-green-500/10 text-green-500",
};
}
if (booksInProgressCount > 0 || (booksReadCount > 0 && booksReadCount < booksCount)) {
if (series.booksReadCount > 0) {
return {
label: `${booksReadCount}/${booksCount}`,
label: `${series.booksReadCount}/${series.booksCount}`,
className: "bg-blue-500/10 text-blue-500",
};
}
@@ -51,74 +52,37 @@ export function SeriesGrid({ series }: SeriesGridProps) {
return (
<div className="grid grid-cols-2 gap-4 sm:grid-cols-3 lg:grid-cols-5">
{series.map((series) => (
<SeriesCard
<button
key={series.id}
series={series}
onClick={() => router.push(`/series/${series.id}`)}
/>
className={cn(
"group relative aspect-[2/3] overflow-hidden rounded-lg bg-muted",
series.booksCount === series.booksReadCount && "opacity-50"
)}
>
<Cover
type="series"
id={series.id}
alt={`Couverture de ${series.metadata.title}`}
isCompleted={series.booksCount === series.booksReadCount}
/>
<div className="absolute inset-x-0 bottom-0 bg-gradient-to-t from-black/60 to-transparent p-4 space-y-2 translate-y-full group-hover:translate-y-0 transition-transform duration-200">
<h3 className="font-medium text-sm text-white line-clamp-2">{series.metadata.title}</h3>
<div className="flex items-center gap-2">
<span
className={`px-2 py-0.5 rounded-full text-xs ${
getReadingStatusInfo(series).className
}`}
>
{getReadingStatusInfo(series).label}
</span>
<span className="text-xs text-white/80">
{series.booksCount} tome{series.booksCount > 1 ? "s" : ""}
</span>
</div>
</div>
</button>
))}
</div>
);
}
interface SeriesCardProps {
series: KomgaSeries;
onClick?: () => void;
}
function SeriesCard({ series, onClick }: SeriesCardProps) {
const [imageError, setImageError] = useState(false);
const [isLoading, setIsLoading] = useState(true);
const statusInfo = getReadingStatusInfo(series);
const isCompleted = series.booksCount === series.booksReadCount;
return (
<button
onClick={onClick}
className={cn(
"group relative aspect-[2/3] overflow-hidden rounded-lg bg-muted",
isCompleted && "opacity-50"
)}
>
{!imageError ? (
<>
<ImageLoader isLoading={isLoading} />
<Image
src={`/api/komga/images/series/${series.id}/first-page`}
alt={`Couverture de ${series.metadata.title}`}
fill
className={cn(
"object-cover transition-opacity duration-300",
isLoading ? "opacity-0" : "opacity-100"
)}
sizes="(max-width: 640px) 33vw, (max-width: 1024px) 20vw, 20vw"
onError={() => setImageError(true)}
onLoad={() => setIsLoading(false)}
loading="lazy"
quality={80}
unoptimized
priority={false}
fetchPriority="low"
/>
</>
) : (
<div className="w-full h-full flex items-center justify-center">
<ImageOff className="w-12 h-12 text-muted-foreground" />
</div>
)}
{/* Overlay avec les informations au survol */}
<div className="absolute inset-x-0 bottom-0 bg-gradient-to-t from-black/60 to-transparent p-4 space-y-2 translate-y-full group-hover:translate-y-0 transition-transform duration-200">
<h3 className="font-medium text-sm text-white line-clamp-2">{series.metadata.title}</h3>
<div className="flex items-center gap-2">
<span className={`px-2 py-0.5 rounded-full text-xs ${statusInfo.className}`}>
{statusInfo.label}
</span>
<span className="text-xs text-white/80">
{series.booksCount} tome{series.booksCount > 1 ? "s" : ""}
</span>
</div>
</div>
</button>
);
}