- Delete all legacy static content data files (members.ts, publications.ts, lectures.ts, standards.ts, projects.ts) - Remove all fallback imports and static fallbacks across all page components - Enforce strict dynamic runtime fetching where pages render empty datasets when Go backend server is unavailable
81 lines
3.0 KiB
TypeScript
81 lines
3.0 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { CategoryNav } from "./_components/CategoryNav";
|
|
import { getPublications, getPatents } from "../../lib/api";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Publications",
|
|
description: "AI Agent Networking Lab (ANL) research publications and patents overview",
|
|
};
|
|
|
|
export const dynamic = "force-dynamic";
|
|
|
|
export default async function PublicationsIndexPage() {
|
|
const publications = (await getPublications()) ?? [];
|
|
const patents = (await getPatents()) ?? [];
|
|
|
|
const counts = {
|
|
"intl-journal-conf": publications.filter((p) => p.category === "intl-journal-conf").length,
|
|
"domestic-journal-conf": publications.filter((p) => p.category === "domestic-journal-conf").length,
|
|
patent: patents.length,
|
|
};
|
|
|
|
// Selected representative publications (curated via database isHighlight flag)
|
|
const highlights = publications.filter((p) => p.isHighlight);
|
|
|
|
return (
|
|
<div className="container-content py-8 sm:py-12 space-y-10 sm:space-y-14">
|
|
{/* Page Header */}
|
|
<section>
|
|
<h1 className="font-serif text-4xl sm:text-5xl font-normal text-ink tracking-tight">
|
|
PUBLICATIONS
|
|
</h1>
|
|
</section>
|
|
|
|
{/* Category Summary Cards */}
|
|
<section className="pt-6 md:pt-8 border-t border-line">
|
|
<CategoryNav counts={counts} />
|
|
</section>
|
|
|
|
{/* Highlights Section */}
|
|
<section className="space-y-6 pt-6 md:pt-8 border-t border-line">
|
|
<h2 className="font-serif text-2xl sm:text-3xl font-normal text-cobalt-dark">
|
|
Highlights
|
|
</h2>
|
|
|
|
<div className="divide-y divide-line border border-line bg-paper rounded-lg overflow-hidden shadow-sm">
|
|
{highlights.map((pub, idx) => (
|
|
<article key={`${pub.category}-${idx}`} className="p-5 hover:bg-ivory/60 transition-colors space-y-2">
|
|
<div className="flex flex-wrap items-center gap-2 text-xs font-mono text-ink-mute">
|
|
<span className="px-2 py-0.5 rounded bg-ivory border border-line text-ink font-bold">
|
|
{pub.publishedAt?.substring(0, 7) || "Recent"}
|
|
</span>
|
|
<span>·</span>
|
|
<span className="capitalize">{pub.category.replace(/-/g, " ")}</span>
|
|
{pub.doi && (
|
|
<>
|
|
<span>·</span>
|
|
<span className="text-vermillion-dark">DOI: {pub.doi}</span>
|
|
</>
|
|
)}
|
|
</div>
|
|
<h3 className="font-serif text-base font-normal text-ink leading-snug">
|
|
{pub.title}
|
|
</h3>
|
|
{pub.authors && (
|
|
<p className="text-xs text-ink-mute">
|
|
{pub.authors}
|
|
</p>
|
|
)}
|
|
{pub.venue && (
|
|
<p className="text-xs italic text-ink-mute">
|
|
{pub.venue}{pub.volume ? `, ${pub.volume}` : ""}
|
|
</p>
|
|
)}
|
|
</article>
|
|
))}
|
|
</div>
|
|
</section>
|
|
</div>
|
|
);
|
|
}
|