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

效果

实现步骤如下:

添加 Loading 组件

添加文件 src/components/LoadingQuestions.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 { Progress } from "./ui/progress";
import Image from "next/image";

type Props = { finished: boolean };

const loadingTexts = [
"Generating questions...",
"Unleashing the power of curiosity...",
"Diving deep into the ocean of questions..",
"Harnessing the collective knowledge of the cosmos...",
"Igniting the flame of wonder and exploration...",
];

const LoadingQuestions = ({ finished }: Props) => {
const [progress, setProgress] = React.useState(10);
const [loadingText, setLoadingText] = React.useState(loadingTexts[0]);
React.useEffect(() => {
const interval = setInterval(() => {
let randomIndex = Math.floor(Math.random() * loadingTexts.length);
setLoadingText(loadingTexts[randomIndex]);
}, 2000);
return () => clearInterval(interval);
}, []);

React.useEffect(() => {
const interval = setInterval(() => {
setProgress((prev) => {
if (finished) return 100;
if (prev === 100) {
return 0;
}
if (Math.random() < 0.1) {
return prev + 2;
}
return prev + 0.5;
});
}, 100);
return () => clearInterval(interval);
}, [finished]);

return (
<div className="absolute -translate-x-1/2 -translate-y-1/2 top-1/2 left-1/2 w-[70vw] md:w-[60vw] flex flex-col items-center">
<Image src={"/loading.gif"} width={400} height={400} alt="loading" />
<Progress value={progress} className="w-full mt-4" />
<h1 className="mt-2 text-xl">{loadingText}</h1>
</div>
);
};

export default LoadingQuestions;

整合到 Quiz 页面

1
2
3
4
5
6
7
8
9
10
11
12
  const [showLoader, setShowLoader] = React.useState(false);
const [finishedLoading, setFinishedLoading] = React.useState(false);

const onSubmit = async (data: Input) => {
setShowLoader(true);

getQuestions(data, {
onError: (error) => {
setShowLoader(false);

onSuccess: ({ gameId }: { gameId: string }) => {
setFinishedLoading(true);

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


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

请我喝杯咖啡吧~

支付宝
微信