sunnymh-manga-site/components/ReadingProgressButton.tsx
yiekheng 0c6425f0ff Track reading progress at the page level and resume there
Upgrades the reader's last-read tracking from {chapter} to {chapter, page}.

- ReadingProgressButton: storage is now JSON {chapter, page}; legacy
  bare-number values are read back as {chapter, page: 1}. Button label
  is unchanged ("继续阅读 · #N title") — the extra precision lives in
  the reader's first-fetch offset, not the label.
- PageReader: on mount with saved progress, seed offsetRef to
  (page - 1) so the first /api/pages call starts AT the resumed page
  instead of the beginning of the chapter. currentPageNum state is
  initialized from storage too, so the first persist write is a no-op
  that matches the saved value.
- Scroll tracker now also tracks currentPageNum (last page whose top
  has crossed above viewport top+80), and persistence writes the
  {chapter, page} pair on each change.

Known limitation: earlier pages of the resumed chapter aren't loaded
yet — a follow-up commit adds scroll-up prefetch for those.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-12 10:59:40 +08:00

90 lines
2.3 KiB
TypeScript

"use client";
import { useEffect, useState } from "react";
import Link from "next/link";
type ChapterLite = {
number: number;
title: string;
};
type Props = {
mangaSlug: string;
chapters: ChapterLite[];
};
export type ReadingProgress = {
chapter: number;
page: number;
};
function storageKey(slug: string) {
return `sunnymh:last-read:${slug}`;
}
export function readProgress(slug: string): ReadingProgress | null {
if (typeof window === "undefined") return null;
const raw = window.localStorage.getItem(storageKey(slug));
if (!raw) return null;
// New format: JSON { chapter, page }
if (raw.startsWith("{")) {
try {
const parsed = JSON.parse(raw) as ReadingProgress;
if (
typeof parsed.chapter === "number" &&
typeof parsed.page === "number" &&
parsed.chapter > 0 &&
parsed.page > 0
) {
return parsed;
}
} catch {
return null;
}
return null;
}
// Legacy format: bare chapter number
const n = Number(raw);
return Number.isFinite(n) && n > 0 ? { chapter: n, page: 1 } : null;
}
export function writeProgress(slug: string, progress: ReadingProgress) {
if (typeof window === "undefined") return;
window.localStorage.setItem(storageKey(slug), JSON.stringify(progress));
}
export function ReadingProgressButton({ mangaSlug, chapters }: Props) {
const [progress, setProgress] = useState<ReadingProgress | null>(null);
useEffect(() => {
setProgress(readProgress(mangaSlug));
}, [mangaSlug]);
if (chapters.length === 0) return null;
const first = chapters[0];
const resumeChapter =
progress !== null
? chapters.find((c) => c.number === progress.chapter)
: null;
const target = resumeChapter ?? first;
return (
<Link
href={`/manga/${mangaSlug}/${target.number}`}
className="flex items-center justify-center gap-3 w-full py-3 mb-6 px-4 text-sm font-semibold bg-accent hover:bg-accent-hover text-white rounded-xl transition-colors active:scale-[0.98]"
>
{resumeChapter ? (
<>
<span></span>
<span className="opacity-50">·</span>
<span className="truncate">
#{resumeChapter.number} {resumeChapter.title}
</span>
</>
) : (
"开始阅读"
)}
</Link>
);
}