Files
reader/app/the-loai/[slug]/page.tsx
T
virtus 41aca718c9 Refactor API integration and data fetching for genre, novel, and chapter pages
- Replace Prisma database calls with API fetches from the reader API in GenreDetailPage, GenresPage, SearchPage, ChapterReaderPage, and NovelDetailPage.
- Introduce new utility functions for API requests in server-api.ts, including error handling.
- Update authentication flow in auth.ts to sync Google login with the reader API.
- Modify NextAuth session and JWT types to include additional user information.
- Clean up unused imports and code related to Prisma and MongoDB connections.
- Adjust the configuration in next.config.mjs to remove unnecessary API routes.
2026-03-30 13:54:51 +07:00

97 lines
2.9 KiB
TypeScript

import Link from "next/link"
import { ChevronLeft } from "lucide-react"
import { NovelCard } from "@/components/novel-card"
import { notFound } from "next/navigation"
import { readerApiFetch, readerApiFetchNullable } from "@/lib/server-api"
export const dynamic = "force-dynamic"
type GenreItem = {
id: string
name: string
slug: string
description: string | null
}
type BrowseNovel = {
id: string
slug: string
title: string
authorName: string
coverColor: string | null
coverUrl: string | null
rating: number
views: number
totalChapters: number
status: string
seriesId?: string | null
}
type BrowseResponse = {
items: BrowseNovel[]
}
function collapseSeriesRows<T extends { id: string; seriesId?: string | null }>(rows: T[]): T[] {
const pickedSeries = new Set<string>()
const output: T[] = []
for (const row of rows) {
if (!row.seriesId) {
output.push(row)
continue
}
if (pickedSeries.has(row.seriesId)) continue
pickedSeries.add(row.seriesId)
output.push(row)
}
return output
}
export default async function GenreDetailPage({ params }: { params: Promise<{ slug: string }> }) {
const { slug } = await params
const genres = await readerApiFetch<GenreItem[]>("/api/genres")
const genre = genres.find((item) => item.slug === slug) || null
if (!genre) {
notFound()
}
const browse = await readerApiFetch<BrowseResponse>(`/api/novels/browse?genre=${encodeURIComponent(slug)}&sort=latest&page=1&limit=80`)
const allNovels = collapseSeriesRows(browse.items).slice(0, 20)
// Basic layout without sort for purely server side representation without search params. Optional searchParams can be added later if needed.
return (
<div className="mx-auto max-w-6xl px-4 py-6">
<div className="mb-6">
<Link href="/the-loai" className="mb-2 inline-flex items-center gap-1 text-sm text-muted-foreground hover:text-foreground transition-colors">
<ChevronLeft className="h-4 w-4" /> Thể Loại
</Link>
<h1 className="text-2xl font-bold text-foreground">{genre.name}</h1>
<p className="mt-1 text-sm text-muted-foreground">{genre.description}</p>
</div>
<div className="mb-4 flex items-center justify-between">
<p className="text-sm text-muted-foreground">{allNovels.length} truyện</p>
<div className="w-40" /> {/* Spacer for symmetry if we add sort later */}
</div>
{allNovels.length === 0 ? (
<div className="flex flex-col items-center justify-center py-20 text-muted-foreground">
<p className="text-lg font-medium">Chưa truyện nào</p>
<p className="text-sm">Thể loại này chưa truyện, hãy quay lại sau.</p>
</div>
) : (
<div className="grid grid-cols-2 gap-4 sm:grid-cols-3 lg:grid-cols-4">
{allNovels.map((novel) => (
<NovelCard key={novel.id} novel={novel} />
))}
</div>
)}
</div>
)
}