mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-07-26 13:07:22 +08:00
34 lines
1014 B
TypeScript
34 lines
1014 B
TypeScript
import Head from "next/head";
|
|
import { TaskEmptyState } from "src/components/EmptyState";
|
|
import { getDashboardLayout } from "src/components/Layout";
|
|
import { LoadingScreen } from "src/components/Loading/LoadingScreen";
|
|
import { Task } from "src/components/Tasks/Task";
|
|
import { useCreatePrompterReply } from "src/hooks/tasks/useCreateReply";
|
|
export { getDefaultStaticProps as getStaticProps } from "src/lib/default_static_props";
|
|
|
|
const UserReply = () => {
|
|
const { tasks, isLoading, reset, trigger } = useCreatePrompterReply();
|
|
|
|
if (isLoading) {
|
|
return <LoadingScreen text="Loading..." />;
|
|
}
|
|
|
|
if (tasks.length === 0) {
|
|
return <TaskEmptyState />;
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>Reply as User</title>
|
|
<meta name="description" content="Reply as User." />
|
|
</Head>
|
|
<Task key={tasks[0].task.id} frontendId={tasks[0].id} task={tasks[0].task} trigger={trigger} mutate={reset} />
|
|
</>
|
|
);
|
|
};
|
|
|
|
UserReply.getLayout = getDashboardLayout;
|
|
|
|
export default UserReply;
|