从零搭建基于 AI 问答平台(1) 搭建框架及数据库

项目介绍

本次计划搭建一个基于AI的问答平台,平台可以根据主题,自动生成问题和待选择的回答。项目会用到NextJS,TailwindCSS,shadcn/ui,Prisma,OpenAI,Next Auth 等技术,根据搭建步骤会一一介绍。

创建NextJs项目

1
bunx create-next-app@latest --ts

通过命令,创建 NextJs 项目 quizdemo

安装shandcn/ui

shandcn/ui 是一个强大的ui组件库,可以按需安装组件。
通过下面的命令,安装shandcn/ui 和 Button 组件:

1
2
bunx --bun shadcn@latest add button
bunx --bun shadcn@latest init

修改 src/app/page.tsx:

1
2
3
4
5
6
7
import { Button } from "@/components/ui/button";

export default function Home() {
return (
<Button>Click me</Button>
);
}
More...

从头开始创建一个自动产生文档/类型安全的现代API 目录

目录

More...

Built Portfolio Page - Index Page

Index

More...

Build a Finance SaaS Platform - Index Page

Index

More...

从头开始创建一个自动产生文档/类型安全的现代API(18) 添加数据更新功能

添加更新数据的Hooks

为了能够方便调用 Hooks 修改数据,我对接口做了改造,body 参数加上了id,这样我们就可以在页面初始化时,不用指定 id,等调用时再根据 body 的 id 调用后台。
添加 hooks/use-update-task.ts:

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
import { InferRequestType,InferResponseType } from "hono";
import { useMutation, useQueryClient } from "@tanstack/react-query";

import { client } from "@/lib/hono"

type ResponseType = InferResponseType<typeof client.tasks[":id"]["$patch"]>;
type RequestType = InferRequestType<typeof client.tasks[":id"]["$patch"]>["json"];

interface UpdateTaskPayload {
id: number;
name?: string;
done?: boolean;
order?: number;
};

export const useUpdateTask = ( ) => {
const queryClient = useQueryClient();

const mutation = useMutation<
ResponseType,
Error,
RequestType
>({
mutationFn: async (json) => {
const response = await client.tasks[":id"]["$patch"]({
json,
param: { id: json.id },
});
return response.json();
},
onSuccess: () => {
queryClient.invalidateQueries({ queryKey:["tasks"]});
},
onError: () => {
console.log("task update failed");
},
});

return mutation;
}
More...

从头开始创建一个自动产生文档/类型安全的现代API(17) 添加数据读取功能

添加读取数据的Hooks

首先安装依赖:

1
bun add @tanstack/react-query

添加 hooks/use-get-tasks-list.ts:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { useQuery } from "@tanstack/react-query";
import { client } from "@/lib/hono"

export const useGetTasksList = () => {
const query = useQuery({
queryKey: ["tasks" ],
queryFn: async () => {
const res = await client.tasks.$get();

if(!res.ok){
throw new Error("Failed to fetch tasks list");
}

const data = await res.json();
return data;
},
});

return query;
};

添加支持模块 lib/hono.ts:

1
2
3
4
import { hc } from "hono/client";
import { AppType } from "@/app/api/[[...route]]/route";

export const client = hc<AppType>('/api');

注意:‘/api’ 是对应于 API 所在路径的。

More...

从头开始创建一个自动产生文档/类型安全的现代API(16) 添加字段

我们发现“顺序”这个字段缺失了,我们添加一下,顺便看一下如何变更数据结构。

修改数据结构

修改 db/schema.ts:

重新生成数据库

1
2
bun drizzle-kit generate
bun drizzle-kit push

修改page.tsx

修改interface:

1
2
3
4
5
6
interface Task {
id: number
name: string
done: boolean
order: number
}

修改 add 逻辑,点击 order:

1
2
3
4
5
6
7
8
9
10
11
case "added": {
return [
...tasks,
{
id: Date.now(),
name: action.name,
done: false,
order: tasks.length,
},
]
}
More...

从头开始创建一个自动产生文档/类型安全的现代API(15) 创建前端页面

现在我们开始创建前端页面。

利用 v0 快速输出前端页面

打开 v0 输入以下提示词:

帮忙编写一个网页,风格为现代偏科技,支持显示task list,task有name 和 done 两个属性,用户可以添加/修改/删除 task。
未完成的任务 最好显示为方框,完成后显示为打勾。
任务清单支持拖曳 调整 顺序。

通过几轮调整,页面基本符合要求。

More...

请我喝杯咖啡吧~

支付宝
微信