yiekheng e7dc39738c Add auto-hide nav bars on scroll and chapter selector bottom sheet
Nav bars hide when scrolling down and reappear on scroll up.
Replace static page count with a chapter picker that opens as a
bottom sheet drawer for quick chapter navigation.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-11 18:38:54 +08:00

222 lines
6.7 KiB
TypeScript

"use client";
import { useState, useEffect, useRef } from "react";
import Link from "next/link";
type PageData = {
number: number;
imageUrl: string;
};
type ChapterInfo = {
number: number;
title: string;
};
type PageReaderProps = {
pages: PageData[];
mangaSlug: string;
mangaTitle: string;
chapterNumber: number;
chapterTitle: string;
prevChapter: number | null;
nextChapter: number | null;
chapters: ChapterInfo[];
};
export function PageReader({
pages,
mangaSlug,
mangaTitle,
chapterNumber,
chapterTitle,
prevChapter,
nextChapter,
chapters,
}: PageReaderProps) {
const [showUI, setShowUI] = useState(true);
const [showDrawer, setShowDrawer] = useState(false);
const lastScrollY = useRef(0);
useEffect(() => {
const handleScroll = () => {
const currentY = window.scrollY;
if (currentY > lastScrollY.current && currentY > 50) {
setShowUI(false);
} else if (currentY < lastScrollY.current) {
setShowUI(true);
}
lastScrollY.current = currentY;
};
window.addEventListener("scroll", handleScroll, { passive: true });
return () => window.removeEventListener("scroll", handleScroll);
}, []);
return (
<div className="min-h-screen bg-black relative">
{/* Top bar */}
<div
className={`fixed top-0 left-0 right-0 z-50 bg-black/90 backdrop-blur-sm transition-transform duration-300 ${
showUI ? "translate-y-0" : "-translate-y-full"
}`}
>
<div className="flex items-center gap-3 px-4 h-12 max-w-4xl mx-auto">
<Link
href={`/manga/${mangaSlug}`}
className="text-white/80 hover:text-white transition-colors"
>
<svg
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth={2}
className="w-6 h-6"
>
<polyline points="15 18 9 12 15 6" />
</svg>
</Link>
<div className="min-w-0 flex-1">
<p className="text-white text-sm font-medium truncate">
{mangaTitle}
</p>
<p className="text-white/50 text-xs truncate">
Ch. {chapterNumber} {chapterTitle}
</p>
</div>
</div>
</div>
{/* Pages - vertical scroll (webtoon style, best for mobile) */}
<div
className="max-w-4xl mx-auto"
onClick={() => setShowUI(!showUI)}
>
{pages.map((page) => (
<div key={page.number} className="relative">
<img
src={page.imageUrl}
alt={`Page ${page.number}`}
className="w-full h-auto block"
loading={page.number <= 3 ? "eager" : "lazy"}
/>
</div>
))}
</div>
{/* Bottom navigation */}
<div
className={`fixed bottom-0 left-0 right-0 z-50 bg-black/90 backdrop-blur-sm transition-transform duration-300 pb-safe ${
showUI ? "translate-y-0" : "translate-y-full"
}`}
>
<div className="flex items-center justify-between px-4 h-14 max-w-4xl mx-auto">
{prevChapter ? (
<Link
href={`/manga/${mangaSlug}/${prevChapter}`}
className="flex items-center gap-1 text-white/80 hover:text-white text-sm transition-colors"
>
<svg
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth={2}
className="w-5 h-5"
>
<polyline points="15 18 9 12 15 6" />
</svg>
Prev
</Link>
) : (
<div />
)}
<button
onClick={() => setShowDrawer(true)}
className="flex items-center gap-1 text-white/80 hover:text-white text-sm transition-colors"
>
<svg
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth={2}
className="w-5 h-5"
>
<line x1="3" y1="6" x2="21" y2="6" />
<line x1="3" y1="12" x2="21" y2="12" />
<line x1="3" y1="18" x2="21" y2="18" />
</svg>
Ch. {chapterNumber}
</button>
{nextChapter ? (
<Link
href={`/manga/${mangaSlug}/${nextChapter}`}
className="flex items-center gap-1 text-white/80 hover:text-white text-sm transition-colors"
>
Next
<svg
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth={2}
className="w-5 h-5"
>
<polyline points="9 18 15 12 9 6" />
</svg>
</Link>
) : (
<Link
href={`/manga/${mangaSlug}`}
className="text-accent text-sm font-medium"
>
Done
</Link>
)}
</div>
</div>
{/* Chapter drawer overlay */}
{showDrawer && (
<div
className="fixed inset-0 z-[60]"
onClick={() => setShowDrawer(false)}
>
{/* Backdrop */}
<div className="absolute inset-0 bg-black/60" />
{/* Bottom sheet */}
<div
className="absolute bottom-0 left-0 right-0 max-h-[60vh] bg-zinc-900 rounded-t-2xl overflow-hidden"
onClick={(e) => e.stopPropagation()}
>
{/* Handle + header */}
<div className="sticky top-0 bg-zinc-900 z-10">
<div className="flex justify-center pt-2 pb-1">
<div className="w-10 h-1 rounded-full bg-white/20" />
</div>
<div className="px-4 pb-2 border-b border-white/10">
<span className="text-white text-sm font-medium">Chapters</span>
</div>
</div>
{/* Chapter list */}
<div className="overflow-y-auto max-h-[calc(60vh-3rem)] pb-safe">
{chapters.map((ch) => (
<Link
key={ch.number}
href={`/manga/${mangaSlug}/${ch.number}`}
className={`block px-4 py-3 text-sm transition-colors ${
ch.number === chapterNumber
? "bg-white/10 text-white font-medium"
: "text-white/70 hover:bg-white/5 hover:text-white"
}`}
onClick={() => setShowDrawer(false)}
>
Ch. {ch.number} {ch.title}
</Link>
))}
</div>
</div>
</div>
)}
</div>
);
}