"use client"; import { BookGrid } from "./BookGrid"; import { Pagination } from "@/components/ui/Pagination"; import { useRouter, usePathname, useSearchParams } from "next/navigation"; import { useState, useEffect } from "react"; import { Loader2 } from "lucide-react"; import { cn } from "@/lib/utils"; import type { KomgaBook } from "@/types/komga"; import { useTranslate } from "@/hooks/useTranslate"; import { useDisplayPreferences } from "@/hooks/useDisplayPreferences"; import { PageSizeSelect } from "@/components/common/PageSizeSelect"; import { CompactModeButton } from "@/components/common/CompactModeButton"; import { UnreadFilterButton } from "@/components/common/UnreadFilterButton"; interface PaginatedBookGridProps { books: KomgaBook[]; currentPage: number; totalPages: number; totalElements: number; defaultShowOnlyUnread: boolean; showOnlyUnread: boolean; } export function PaginatedBookGrid({ books, currentPage, totalPages, totalElements, defaultShowOnlyUnread, showOnlyUnread: initialShowOnlyUnread, }: PaginatedBookGridProps) { const router = useRouter(); const pathname = usePathname(); const searchParams = useSearchParams(); const [isChangingPage, setIsChangingPage] = useState(false); const [showOnlyUnread, setShowOnlyUnread] = useState(initialShowOnlyUnread); const { isCompact, itemsPerPage } = useDisplayPreferences(); const { t } = useTranslate(); const updateUrlParams = async (updates: Record) => { setIsChangingPage(true); const params = new URLSearchParams(searchParams.toString()); Object.entries(updates).forEach(([key, value]) => { if (value === null) { params.delete(key); } else { params.set(key, value); } }); await router.push(`${pathname}?${params.toString()}`); }; // Reset loading state when books change useEffect(() => { setIsChangingPage(false); }, [books]); // Update local state when prop changes useEffect(() => { setShowOnlyUnread(initialShowOnlyUnread); }, [initialShowOnlyUnread]); // Apply default filter on initial load useEffect(() => { if (defaultShowOnlyUnread && !searchParams.has("unread")) { updateUrlParams({ page: "1", unread: "true" }); } }, [defaultShowOnlyUnread, pathname, router, searchParams]); const handlePageChange = async (page: number) => { await updateUrlParams({ page: page.toString() }); }; const handleUnreadFilter = async () => { const newUnreadState = !showOnlyUnread; setShowOnlyUnread(newUnreadState); await updateUrlParams({ page: "1", unread: newUnreadState ? "true" : "false", }); }; const handleCompactToggle = async (newCompactState: boolean) => { await updateUrlParams({ page: "1", compact: newCompactState.toString(), }); }; const handlePageSizeChange = async (size: number) => { await updateUrlParams({ page: "1", size: size.toString(), }); }; const handleBookClick = (book: KomgaBook) => { router.push(`/books/${book.id}`); }; // Calculate start and end indices for display const startIndex = (currentPage - 1) * itemsPerPage + 1; const endIndex = Math.min(currentPage * itemsPerPage, totalElements); const getShowingText = () => { if (!totalElements) return t("books.empty"); return t("books.display.showing", { start: startIndex, end: endIndex, total: totalElements, }); }; return (

{getShowingText()}

{/* Loading indicator */} {isChangingPage && (
{t("books.loading")}
)} {/* Grid with transition animation */}

{t("books.display.page", { current: currentPage, total: totalPages })}

); }