refacto: book page server side

This commit is contained in:
Julien Froidefond
2025-02-14 13:08:05 +01:00
parent b7f12b8bf6
commit e22095806d
4 changed files with 108 additions and 154 deletions

View File

@@ -1,160 +1,20 @@
"use client"; import { Suspense } from "react";
import { ClientBookWrapper } from "@/components/reader/ClientBookWrapper";
import { BookSkeleton } from "@/components/skeletons/BookSkeleton";
import { BookService } from "@/lib/services/book.service";
import { notFound } from "next/navigation";
import { useRouter } from "next/navigation"; export default async function BookPage({ params }: { params: { bookId: string } }) {
import { KomgaBook } from "@/types/komga";
import { useEffect, useState } from "react";
import { BookReader } from "@/components/reader/BookReader";
import { ImageOff } from "lucide-react";
import Image from "next/image";
import { useToast } from "@/components/ui/use-toast";
interface BookData {
book: KomgaBook;
pages: number[];
}
export default function BookPage({ params }: { params: { bookId: string } }) {
const router = useRouter();
const { toast } = useToast();
const [data, setData] = useState<BookData | null>(null);
const [isLoading, setIsLoading] = useState(true);
const [error, setError] = useState<string | null>(null);
const [imageError, setImageError] = useState(false);
const [isReading, setIsReading] = useState(false);
useEffect(() => {
const fetchBookData = async () => {
try { try {
const response = await fetch(`/api/komga/books/${params.bookId}`); const data = await BookService.getBook(params.bookId);
if (!response.ok) {
const data = await response.json();
throw new Error(data.error || "Erreur lors de la récupération du tome");
}
const data = await response.json();
// Si le livre a une progression de lecture, on l'affiche dans un toast return (
if (data.book.readProgress?.page > 0) { <Suspense fallback={<BookSkeleton />}>
toast({ <ClientBookWrapper book={data.book} pages={data.pages} />
title: "Reprise de la lecture", </Suspense>
description: `Reprise à la page ${data.book.readProgress.page}`, );
});
}
setData(data);
setIsReading(true);
} catch (error) { } catch (error) {
console.error("Erreur:", error); console.error("Erreur:", error);
setError(error instanceof Error ? error.message : "Une erreur est survenue"); notFound();
} finally {
setIsLoading(false);
} }
};
fetchBookData();
}, [params.bookId, toast]);
const handleCloseReader = () => {
setIsReading(false);
router.back();
};
if (isLoading) {
return (
<div className="container py-8 space-y-8 animate-pulse">
<div className="flex flex-col md:flex-row gap-8">
<div className="w-48 h-72 bg-muted rounded-lg" />
<div className="flex-1 space-y-4">
<div className="h-8 bg-muted rounded w-1/3" />
<div className="h-4 bg-muted rounded w-1/4" />
<div className="h-24 bg-muted rounded" />
</div>
</div>
</div>
);
}
if (error || !data) {
return (
<div className="container py-8">
<div className="rounded-md bg-destructive/15 p-4">
<p className="text-sm text-destructive">{error || "Données non disponibles"}</p>
</div>
</div>
);
}
const { book, pages } = data;
if (isReading) {
return <BookReader book={book} pages={pages} onClose={handleCloseReader} />;
}
return (
<div className="container py-8 space-y-8">
{/* En-tête du tome */}
<div className="flex flex-col md:flex-row gap-8">
{/* Couverture */}
<div className="w-48 shrink-0">
<div className="relative aspect-[2/3] rounded-lg overflow-hidden bg-muted">
{!imageError ? (
<Image
src={`/api/komga/images/books/${book.id}/thumbnail`}
alt={`Couverture de ${book.metadata.title}`}
fill
className="object-cover"
onError={() => setImageError(true)}
/>
) : (
<div className="w-full h-full flex items-center justify-center">
<ImageOff className="w-12 h-12" />
</div>
)}
</div>
</div>
{/* Informations */}
<div className="flex-1 space-y-4">
<div>
<h1 className="text-3xl font-bold">
{book.metadata.title || `Tome ${book.metadata.number}`}
</h1>
<p className="text-muted-foreground">
{book.seriesTitle} - Tome {book.metadata.number}
</p>
</div>
{book.metadata.summary && (
<p className="text-muted-foreground">{book.metadata.summary}</p>
)}
<div className="space-y-1 text-sm text-muted-foreground">
{book.metadata.releaseDate && (
<div>
<span className="font-medium">Date de sortie :</span>{" "}
{new Date(book.metadata.releaseDate).toLocaleDateString()}
</div>
)}
{book.metadata.authors?.length > 0 && (
<div>
<span className="font-medium">Auteurs :</span>{" "}
{book.metadata.authors
.map((author) => `${author.name} (${author.role})`)
.join(", ")}
</div>
)}
{book.size && (
<div>
<span className="font-medium">Taille :</span> {book.size}
</div>
)}
{book.media.pagesCount > 0 && (
<div>
<span className="font-medium">Pages :</span> {book.media.pagesCount}
</div>
)}
</div>
</div>
</div>
</div>
);
} }

View File

@@ -0,0 +1,45 @@
"use client";
import { useState } from "react";
import { useRouter } from "next/navigation";
import { KomgaBook } from "@/types/komga";
import { BookReader } from "./BookReader";
import { Button } from "@/components/ui/button";
import { useToast } from "@/components/ui/use-toast";
interface ClientBookReaderProps {
book: KomgaBook;
pages: number[];
}
export function ClientBookReader({ book, pages }: ClientBookReaderProps) {
const router = useRouter();
const { toast } = useToast();
const [isReading, setIsReading] = useState(false);
const handleStartReading = () => {
// Si le livre a une progression de lecture, on l'affiche dans un toast
if (book.readProgress && book.readProgress.page && book.readProgress.page > 0) {
toast({
title: "Reprise de la lecture",
description: `Reprise à la page ${book.readProgress.page}`,
});
}
setIsReading(true);
};
const handleCloseReader = () => {
setIsReading(false);
router.back();
};
if (isReading) {
return <BookReader book={book} pages={pages} onClose={handleCloseReader} />;
}
return (
<Button onClick={handleStartReading} size="lg" className="w-full md:w-auto">
Commencer la lecture
</Button>
);
}

View File

@@ -0,0 +1,33 @@
"use client";
import { KomgaBook } from "@/types/komga";
import { BookReader } from "./BookReader";
import { useRouter } from "next/navigation";
import { useEffect } from "react";
import { useToast } from "@/components/ui/use-toast";
interface ClientBookWrapperProps {
book: KomgaBook;
pages: number[];
}
export function ClientBookWrapper({ book, pages }: ClientBookWrapperProps) {
const router = useRouter();
const { toast } = useToast();
useEffect(() => {
// Si le livre a une progression de lecture, on l'affiche dans un toast
if (book.readProgress && book.readProgress.page && book.readProgress.page > 0) {
toast({
title: "Reprise de la lecture",
description: `Reprise à la page ${book.readProgress.page}`,
});
}
}, [book.readProgress, toast]);
const handleCloseReader = () => {
router.back();
};
return <BookReader book={book} pages={pages} onClose={handleCloseReader} />;
}

View File

@@ -0,0 +1,16 @@
export function BookSkeleton() {
return (
<div className="fixed inset-0 bg-background flex items-center justify-center">
<div className="w-full h-full max-w-6xl mx-auto flex flex-col items-center justify-center space-y-4">
{/* Barre de navigation */}
<div className="w-full h-12 bg-muted rounded animate-pulse" />
{/* Page du livre */}
<div className="w-full flex-1 bg-muted rounded animate-pulse" />
{/* Barre de contrôles */}
<div className="w-full h-16 bg-muted rounded animate-pulse" />
</div>
</div>
);
}