"use client"; import { SeriesGrid } from "./SeriesGrid"; import { SeriesList } from "./SeriesList"; import { Pagination } from "@/components/ui/Pagination"; import { useRouter, usePathname, useSearchParams } from "next/navigation"; import { useState, useEffect, useCallback } from "react"; import type { NormalizedSeries } from "@/lib/providers/types"; import { SearchInput } from "./SearchInput"; import { useTranslate } from "@/hooks/useTranslate"; import { PageSizeSelect } from "@/components/common/PageSizeSelect"; import { CompactModeButton } from "@/components/common/CompactModeButton"; import { ViewModeButton } from "@/components/common/ViewModeButton"; import { UnreadFilterButton } from "@/components/common/UnreadFilterButton"; import { updatePreferences as updatePreferencesAction } from "@/app/actions/preferences"; interface PaginatedSeriesGridProps { series: NormalizedSeries[]; currentPage: number; totalPages: number; totalElements: number; defaultShowOnlyUnread: boolean; showOnlyUnread: boolean; pageSize?: number; initialCompact: boolean; initialViewMode: "grid" | "list"; } export function PaginatedSeriesGrid({ series, currentPage, totalPages, totalElements: _totalElements, defaultShowOnlyUnread, showOnlyUnread: initialShowOnlyUnread, pageSize, initialCompact, initialViewMode, }: PaginatedSeriesGridProps) { const router = useRouter(); const pathname = usePathname(); const searchParams = useSearchParams(); const [showOnlyUnread, setShowOnlyUnread] = useState(initialShowOnlyUnread); const [isCompact, setIsCompact] = useState(initialCompact); const [viewMode, setViewMode] = useState<"grid" | "list">(initialViewMode); const [currentPageSize, setCurrentPageSize] = useState(pageSize || 20); const effectivePageSize = pageSize || currentPageSize; const { t } = useTranslate(); const persistPreferences = useCallback(async (payload: Parameters[0]) => { try { await updatePreferencesAction(payload); } catch (error) { console.error("Erreur lors de la sauvegarde des préférences:", error); } }, []); const updateUrlParams = useCallback( async (updates: Record, replace: boolean = false) => { const params = new URLSearchParams(searchParams.toString()); Object.entries(updates).forEach(([key, value]) => { if (value === null) { params.delete(key); } else { params.set(key, value); } }); if (replace) { await router.replace(`${pathname}?${params.toString()}`); } else { await router.push(`${pathname}?${params.toString()}`); } }, [router, pathname, searchParams] ); // Update local state when prop changes useEffect(() => { setShowOnlyUnread(initialShowOnlyUnread); }, [initialShowOnlyUnread]); useEffect(() => { setIsCompact(initialCompact); }, [initialCompact]); useEffect(() => { setViewMode(initialViewMode); }, [initialViewMode]); useEffect(() => { setCurrentPageSize(pageSize || 20); }, [pageSize]); // Apply default filter on initial load useEffect(() => { if (defaultShowOnlyUnread && !searchParams.has("unread")) { updateUrlParams({ page: "1", unread: "true" }, true); } }, [defaultShowOnlyUnread, pathname, router, searchParams, updateUrlParams]); 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" }); await persistPreferences({ showOnlyUnread: newUnreadState }); }; const handlePageSizeChange = async (size: number) => { setCurrentPageSize(size); await updateUrlParams({ page: "1", size: size.toString() }); await persistPreferences({ displayMode: { compact: isCompact, itemsPerPage: size, viewMode, }, }); }; const handleCompactModeToggle = async (nextCompactMode: boolean) => { setIsCompact(nextCompactMode); await persistPreferences({ displayMode: { compact: nextCompactMode, itemsPerPage: effectivePageSize, viewMode, }, }); }; const handleViewModeToggle = async (nextViewMode: "grid" | "list") => { setViewMode(nextViewMode); await persistPreferences({ displayMode: { compact: isCompact, itemsPerPage: effectivePageSize, viewMode: nextViewMode, }, }); }; // Calculate start and end indices for display const startIndex = (currentPage - 1) * effectivePageSize + 1; const endIndex = Math.min(currentPage * effectivePageSize, _totalElements); const getShowingText = () => { if (!_totalElements) return t("series.empty"); return t("books.display.showing", { start: startIndex, end: endIndex, total: _totalElements, }); }; return (

Explorer

Séries

{getShowingText()}

{viewMode === "grid" ? ( ) : ( )}

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

); }