2025-11-21 13:36:06 +08:00
|
|
|
|
import { Callout } from "@/components/mdx/Callout";
|
|
|
|
|
|
import MDXComponents from "@/components/mdx/MDXComponents";
|
2025-11-27 13:10:26 +08:00
|
|
|
|
import TableOfContents from "@/components/mdx/TableOfContents.client";
|
|
|
|
|
|
import { Locale } from "@/i18n/routing";
|
|
|
|
|
|
import { getPostDetail } from "@/lib/getBlogDetail";
|
2025-11-21 13:36:06 +08:00
|
|
|
|
import { constructMetadata } from "@/lib/metadata";
|
|
|
|
|
|
import { BlogPost } from "@/types/blog";
|
|
|
|
|
|
import { Metadata } from "next";
|
|
|
|
|
|
import { MDXRemote } from "next-mdx-remote-client/rsc";
|
|
|
|
|
|
import { notFound } from "next/navigation";
|
|
|
|
|
|
|
2025-11-27 13:10:26 +08:00
|
|
|
|
interface TableOfContentsItem {
|
|
|
|
|
|
id: string;
|
|
|
|
|
|
text: string;
|
|
|
|
|
|
level: number;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 解析MDX内容并提取标题
|
|
|
|
|
|
async function parseMDXContent(content: string): Promise<TableOfContentsItem[]> {
|
|
|
|
|
|
if (!content) {
|
|
|
|
|
|
return [];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
const headingRegex = /^#{2,4}\s+(.+)$/gm;
|
|
|
|
|
|
const headings: TableOfContentsItem[] = [];
|
|
|
|
|
|
let match;
|
|
|
|
|
|
|
|
|
|
|
|
while ((match = headingRegex.exec(content)) !== null) {
|
|
|
|
|
|
const fullMatch = match[0];
|
|
|
|
|
|
const text = match[1]?.trim();
|
|
|
|
|
|
|
|
|
|
|
|
if (!text) continue;
|
|
|
|
|
|
|
|
|
|
|
|
// 确定标题级别
|
|
|
|
|
|
let level = 2;
|
|
|
|
|
|
if (fullMatch.startsWith("###")) {
|
|
|
|
|
|
level = fullMatch.startsWith("####") ? 4 : 3;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 生成ID(将文本转换为URL友好的格式)
|
|
|
|
|
|
const id = text
|
|
|
|
|
|
.toLowerCase()
|
|
|
|
|
|
.replace(/[^a-z0-9\u4e00-\u9fa5\s-]/g, "")
|
|
|
|
|
|
.replace(/\s+/g, "-");
|
|
|
|
|
|
|
|
|
|
|
|
headings.push({ id, text, level });
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return headings;
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error("Error parsing MDX content for TOC:", error);
|
|
|
|
|
|
return [];
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-21 13:36:06 +08:00
|
|
|
|
type Params = Promise<{
|
|
|
|
|
|
locale: string;
|
|
|
|
|
|
slug: string;
|
|
|
|
|
|
}>;
|
|
|
|
|
|
|
|
|
|
|
|
type MetadataProps = {
|
|
|
|
|
|
params: Params;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export async function generateMetadata({
|
|
|
|
|
|
params,
|
|
|
|
|
|
}: MetadataProps): Promise<Metadata> {
|
|
|
|
|
|
const { locale, slug } = await params;
|
2025-11-27 13:10:26 +08:00
|
|
|
|
let post: BlogPost = await getPostDetail(slug);
|
|
|
|
|
|
|
|
|
|
|
|
console.log(post);
|
2025-11-21 13:36:06 +08:00
|
|
|
|
|
|
|
|
|
|
if (!post) {
|
|
|
|
|
|
return constructMetadata({
|
|
|
|
|
|
title: "404",
|
|
|
|
|
|
description: "Page not found",
|
|
|
|
|
|
noIndex: true,
|
|
|
|
|
|
locale: locale as Locale,
|
|
|
|
|
|
path: `/blog/${slug}`,
|
|
|
|
|
|
canonicalUrl: `/blog/${slug}`,
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return constructMetadata({
|
|
|
|
|
|
page: "blog",
|
|
|
|
|
|
title: post.title,
|
|
|
|
|
|
description: post.description,
|
|
|
|
|
|
images: post.image ? [post.image] : [],
|
|
|
|
|
|
locale: locale as Locale,
|
|
|
|
|
|
path: `/blog/${slug}`,
|
|
|
|
|
|
canonicalUrl: `/blog/${slug}`,
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export default async function BlogPage({ params }: { params: Params }) {
|
|
|
|
|
|
const { locale, slug } = await params;
|
2025-11-27 13:10:26 +08:00
|
|
|
|
let post: BlogPost = await getPostDetail(slug);
|
2025-11-21 13:36:06 +08:00
|
|
|
|
|
|
|
|
|
|
if (!post) {
|
|
|
|
|
|
return notFound();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-27 13:10:26 +08:00
|
|
|
|
console.log(post);
|
|
|
|
|
|
|
|
|
|
|
|
// 提取博客内容中的标题用于目录
|
|
|
|
|
|
const tocItems = await parseMDXContent(post.content || "");
|
|
|
|
|
|
|
|
|
|
|
|
// 使用默认目录标题
|
|
|
|
|
|
const tocTitle = "目录";
|
|
|
|
|
|
|
2025-11-21 13:36:06 +08:00
|
|
|
|
return (
|
2025-11-27 13:10:26 +08:00
|
|
|
|
<div className="flex flex-col md:flex-row w-full gap-8">
|
|
|
|
|
|
{/* 侧边目录 - 在移动端显示在内容上方 */}
|
|
|
|
|
|
<div className="w-full md:w-1/4 lg:w-1/5 order-2 md:order-1">
|
|
|
|
|
|
<TableOfContents
|
|
|
|
|
|
items={tocItems || []}
|
|
|
|
|
|
title={tocTitle}
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{/* 主要内容 */}
|
|
|
|
|
|
<article className="w-full md:w-3/4 lg:w-4/5 px-2 md:px-8 ml-0 md:ml-64 order-1 md:order-2">
|
|
|
|
|
|
<h1 className="break-words text-4xl font-bold mt-6 mb-4">{post.title}</h1>
|
|
|
|
|
|
{post.image && (
|
|
|
|
|
|
<img src={post.image} alt={post.title} className="rounded-sm" />
|
|
|
|
|
|
)}
|
|
|
|
|
|
{post.tags && post.tags.split(",").length ? (
|
|
|
|
|
|
<div className="flex flex-wrap gap-2">
|
|
|
|
|
|
{post.tags.split(",").map((tag) => {
|
|
|
|
|
|
return (
|
|
|
|
|
|
<div
|
|
|
|
|
|
key={tag}
|
|
|
|
|
|
className={`rounded-md bg-gray-200 hover:!no-underline dark:bg-[#24272E] flex px-2.5 py-1.5 text-sm font-medium transition-colors hover:text-black hover:dark:bg-[#15AFD04C] hover:dark:text-[#82E9FF] text-gray-500 dark:text-[#7F818C] outline-none focus-visible:ring transition`}
|
|
|
|
|
|
>
|
|
|
|
|
|
{tag.trim()}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
);
|
|
|
|
|
|
})}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
) : (
|
|
|
|
|
|
<></>
|
|
|
|
|
|
)}
|
|
|
|
|
|
{post.description && <Callout>{post.description}</Callout>}
|
|
|
|
|
|
<MDXRemote source={post?.content || ""} components={MDXComponents} />
|
|
|
|
|
|
</article>
|
2025-11-21 13:36:06 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-27 13:10:26 +08:00
|
|
|
|
// export async function generateStaticParams() {
|
|
|
|
|
|
// let post = (await getPostDetail());
|
|
|
|
|
|
|
|
|
|
|
|
// // Filter out posts without a slug
|
|
|
|
|
|
// posts = posts.filter((post) => post.slug);
|
2025-11-21 13:36:06 +08:00
|
|
|
|
|
2025-11-27 13:10:26 +08:00
|
|
|
|
// return LOCALES.flatMap((locale) =>
|
|
|
|
|
|
// posts.map((post) => {
|
|
|
|
|
|
// const slugPart = post.slug.replace(/^\//, "").replace(/^blog\//, "");
|
2025-11-21 13:36:06 +08:00
|
|
|
|
|
2025-11-27 13:10:26 +08:00
|
|
|
|
// return {
|
|
|
|
|
|
// locale,
|
|
|
|
|
|
// slug: slugPart,
|
|
|
|
|
|
// };
|
|
|
|
|
|
// })
|
|
|
|
|
|
// );
|
|
|
|
|
|
// }
|