- 用 Deck 替换 Folder - 用 Note + Card 替换 Pair (双向复习) - 添加 NoteType (卡片模板) - 添加 Revlog (复习历史) - 实现 SM-2 间隔重复算法 - 更新所有前端页面 - 添加数据库迁移
24 lines
555 B
TypeScript
24 lines
555 B
TypeScript
import { redirect } from "next/navigation";
|
|
import { ExploreDetailClient } from "./ExploreDetailClient";
|
|
import { actionGetPublicDeckById } from "@/modules/deck/deck-action";
|
|
|
|
export default async function ExploreDeckPage({
|
|
params,
|
|
}: {
|
|
params: Promise<{ id: string }>;
|
|
}) {
|
|
const { id } = await params;
|
|
|
|
if (!id) {
|
|
redirect("/explore");
|
|
}
|
|
|
|
const result = await actionGetPublicDeckById({ deckId: Number(id) });
|
|
|
|
if (!result.success || !result.data) {
|
|
redirect("/explore");
|
|
}
|
|
|
|
return <ExploreDetailClient deck={result.data} />;
|
|
}
|