从零搭建基于 AI 问答平台(18) 定义 History 页面

效果

实现步骤如下:

添加 history 页面

添加文件 src/app/history/page.tsx:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import { redirect } from "next/navigation";
import React from "react";
import Link from "next/link";
import { LucideLayoutDashboard } from "lucide-react";
import { auth } from "@clerk/nextjs/server";

import { buttonVariants } from "@/components/ui/button";
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
import HistoryComponent from "@/components/history/HistoryComponent";

const History = async () => {
const { userId } = await auth();

if (!userId) {
return redirect('/');
}
return (
<div className="absolute -translate-x-1/2 -translate-y-1/2 top-1/2 left-1/2 w-[400px]">
<Card>
<CardHeader>
<div className="flex items-center justify-between">
<CardTitle className="text-2xl font-bold">History</CardTitle>
<Link className={buttonVariants()} href="/dashboard">
<LucideLayoutDashboard className="mr-2" />
Back to Dashboard
</Link>
</div>
</CardHeader>
<CardContent className="max-h-[60vh] overflow-scroll">
<HistoryComponent limit={100} userId={userId} />
</CardContent>
</Card>
</div>
);
};

export default History;

添加 HistoryComponent 模块

添加 src/components/history/HistoryComponent.tsx:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import { prisma } from "@/lib/db";
import { Clock, CopyCheck, Edit2 } from "lucide-react";
import Link from "next/link";
import React from "react";


type Props = {
limit: number;
userId: string;
};

const HistoryComponent = async ({ limit, userId }: Props) => {
const games = await prisma.game.findMany({
take: limit,
where: {
userId,
},
orderBy: {
timeStarted: "desc",
},
});
return (
<div className="space-y-8">
{games.map((game) => {
return (
<div className="flex items-center justify-between" key={game.id}>
<div className="flex items-center">
{game.gameType === "mcq" ? (
<CopyCheck className="mr-3" />
) : (
<Edit2 className="mr-3" />
)}
<div className="ml-4 space-y-1">
<Link
className="text-base font-medium leading-none underline"
href={`/statistics/${game.id}`}
>
{game.topic}
</Link>
<p className="flex items-center px-2 py-1 text-xs text-white rounded-lg w-fit bg-slate-800">
<Clock className="w-4 h-4 mr-1" />
{new Date(game.timeEnded ?? 0).toLocaleDateString()}
</p>
<p className="text-sm text-muted-foreground">
{game.gameType === "mcq" ? "Multiple Choice" : "Open-Ended"}
</p>
</div>
</div>
</div>
);
})}
</div>
);
};

export default HistoryComponent;

如果感兴趣本项目,请访问项目目录: 从零搭建基于 AI 问答平台 - 目录


作者:Bearalise
出处:从零搭建基于 AI 问答平台(18) 定义 History 页面
版权:本文版权归作者所有
转载:欢迎转载,但未经作者同意,必须保留此段声明,必须在文章中给出原文链接。

请我喝杯咖啡吧~

支付宝
微信