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

效果

实现步骤如下:

添加 statistics 页面

添加文件 src/app/statistics/[gameId]/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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import { auth } from "@clerk/nextjs/server";
import { LucideLayoutDashboard } from "lucide-react";
import Link from "next/link";

import { redirect } from "next/navigation";
import React from "react";

import { prisma } from "@/lib/db";
import { buttonVariants } from "@/components/ui/button";
import ResultsCard from "@/components/statistics/ResultsCard";

type Props = {
params: {
gameId: string;
};
};

const Statistics = async ({ params }: Props) => {
const { gameId } = await params;
const { userId } = await auth();
if (!userId) {
return redirect('/');
}

const game = await prisma.game.findUnique({
where: { id: gameId },
include: { questions: true },
});
if (!game) {
return redirect("/");
}

let accuracy: number = 0;

if (game.gameType === "mcq") {
let totalCorrect = game.questions.reduce((acc, question) => {
if (question.isCorrect) {
return acc + 1;
}
return acc;
}, 0);
accuracy = (totalCorrect / game.questions.length) * 100;
} else if (game.gameType === "open_ended") {
let totalPercentage = game.questions.reduce((acc, question) => {
return acc + (question.percentageCorrect ?? 0);
}, 0);
accuracy = totalPercentage / game.questions.length;
}
accuracy = Math.round(accuracy * 100) / 100;

return (
<>
<div className="p-8 mx-auto max-w-7xl">
<div className="flex items-center justify-between space-y-2">
<h2 className="text-3xl font-bold tracking-tight">Summary</h2>
<div className="flex items-center space-x-2">
<Link href="/dashboard" className={buttonVariants()}>
<LucideLayoutDashboard className="mr-2" />
Back to Dashboard
</Link>
</div>
</div>

<div className="grid gap-4 mt-4 md:grid-cols-7">
<ResultsCard accuracy={accuracy} />
</div>
</div>
</>
);
};

export default Statistics;

添加 ResultsCard 组件

添加文件 src/components/statistics/ResultsCard.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
import React from "react";

import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
import { Award, Trophy } from "lucide-react";
type Props = { accuracy: number };

const ResultsCard = ({ accuracy }: Props) => {
return (
<Card className="md:col-span-7">
<CardHeader className="flex flex-row items-center justify-between space-y-0 pb-7">
<CardTitle className="text-2xl font-bold">Results</CardTitle>
<Award />
</CardHeader>
<CardContent className="flex flex-col items-center justify-center h-3/5">
{accuracy > 75 ? (
<>
<Trophy className="mr-4" stroke="gold" size={50} />
<div className="flex flex-col text-2xl font-semibold text-yellow-400">
<span className="">Impressive!</span>
<span className="text-sm text-center text-black opacity-50">
{"> 75% accuracy"}
</span>
</div>
</>
) : accuracy > 25 ? (
<>
<Trophy className="mr-4" stroke="silver" size={50} />
<div className="flex flex-col text-2xl font-semibold text-stone-400">
<span className="">Good job!</span>
<span className="text-sm text-center text-black opacity-50">
{"> 25% accuracy"}
</span>
</div>
</>
) : (
<>
<Trophy className="mr-4" stroke="brown" size={50} />
<div className="flex flex-col text-2xl font-semibold text-yellow-800">
<span className="">Nice try!</span>
<span className="text-sm text-center text-black opacity-50">
{"< 25% accuracy"}
</span>
</div>
</>
)}
</CardContent>
</Card>
);
};

export default ResultsCard;

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


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

请我喝杯咖啡吧~

支付宝
微信