- Add error.tsx and loading.tsx boundaries for admin, parent, student, teacher routes - Add admin announcements edit, audit-logs overview, curriculum-map, invitation-codes, permissions, questions, roles routes - Add admin elective detail and components, files, course-plans, users, scheduling boundaries - Add messages group-compose route - Add parent course-plans, elective, grades report-card, practice routes - Add student course-plans, elective detail, error-book dialogs, grades report-card, learning study-path, leave, schedule boundaries - Add teacher attendance report, classes boundaries, course-plans boundaries, elective, exams analytics/edit-rich/all/create/new, grades report-card, homework boundaries, leave, lesson-plans calendar - Add auth loading, onboarding loading, api cron
104 lines
3.8 KiB
TypeScript
104 lines
3.8 KiB
TypeScript
import type { JSX } from "react"
|
|
import { notFound } from "next/navigation"
|
|
import { getTranslations } from "next-intl/server"
|
|
import { ExamAssembly } from "@/modules/exams/components/exam-assembly"
|
|
import { getExamById } from "@/modules/exams/data-access"
|
|
import { getQuestions } from "@/modules/questions/data-access"
|
|
import { normalizeStructure } from "@/modules/exams/utils/normalize-structure"
|
|
import type { Question } from "@/modules/questions/types"
|
|
import type { ExamNode } from "@/modules/exams/components/assembly/selected-question-list"
|
|
import { createId } from "@paralleldrive/cuid2"
|
|
import { requirePermission } from "@/shared/lib/auth-guard"
|
|
import { Permissions } from "@/shared/types/permissions"
|
|
import { AiClientProvider } from "@/modules/ai/context/ai-client-provider"
|
|
import { createCoreAiClientService } from "@/modules/ai/context/create-ai-client-service"
|
|
|
|
export const dynamic = "force-dynamic"
|
|
|
|
export default async function BuildExamPage({ params }: { params: Promise<{ id: string }> }): Promise<JSX.Element> {
|
|
const { id } = await params
|
|
const t = await getTranslations("examHomework.exam.build")
|
|
|
|
const ctx = await requirePermission(Permissions.EXAM_READ)
|
|
const exam = await getExamById(id, ctx.dataScope)
|
|
if (!exam) return notFound()
|
|
|
|
// Fetch initial questions for the bank (pagination handled by client)
|
|
// Run both queries in parallel since the second depends on exam.questions IDs
|
|
const initialSelected = (exam.questions || []).map(q => ({
|
|
id: q.id,
|
|
score: q.score || 0
|
|
}))
|
|
|
|
const selectedQuestionIds = initialSelected.map((s) => s.id)
|
|
const [bankResult, selectedResult] = await Promise.all([
|
|
getQuestions({ pageSize: 20 }),
|
|
selectedQuestionIds.length
|
|
? getQuestions({ ids: selectedQuestionIds, pageSize: Math.max(10, selectedQuestionIds.length) })
|
|
: Promise.resolve({ data: [] as Awaited<ReturnType<typeof getQuestions>>["data"] }),
|
|
])
|
|
|
|
const questionsData = bankResult.data
|
|
const selectedQuestionsData = selectedResult.data
|
|
|
|
type RawQuestion = (typeof questionsData)[number]
|
|
|
|
const toQuestionOption = (q: RawQuestion): Question => ({
|
|
id: q.id,
|
|
content: q.content,
|
|
type: q.type,
|
|
difficulty: q.difficulty ?? 1,
|
|
createdAt: new Date(q.createdAt),
|
|
updatedAt: new Date(q.updatedAt),
|
|
author: q.author
|
|
? {
|
|
id: q.author.id,
|
|
name: q.author.name || "Unknown",
|
|
image: q.author.image || null,
|
|
}
|
|
: null,
|
|
knowledgePoints: q.knowledgePoints ?? [],
|
|
})
|
|
|
|
const questionOptionsById = new Map<string, Question>()
|
|
for (const q of questionsData) questionOptionsById.set(q.id, toQuestionOption(q))
|
|
for (const q of selectedQuestionsData) questionOptionsById.set(q.id, toQuestionOption(q))
|
|
const questionOptions = Array.from(questionOptionsById.values())
|
|
|
|
let initialStructure: ExamNode[] = normalizeStructure(exam.structure)
|
|
|
|
if (initialStructure.length === 0 && initialSelected.length > 0) {
|
|
initialStructure = initialSelected.map((s) => ({
|
|
id: createId(),
|
|
type: "question",
|
|
questionId: s.id,
|
|
score: s.score,
|
|
}))
|
|
}
|
|
|
|
const aiClientService = createCoreAiClientService()
|
|
|
|
return (
|
|
<AiClientProvider service={aiClientService}>
|
|
<div className="flex h-full flex-col space-y-4 p-4">
|
|
<div>
|
|
<h1 className="text-2xl font-bold tracking-tight">{t("title")}</h1>
|
|
<p className="text-muted-foreground">{t("description")}</p>
|
|
</div>
|
|
<ExamAssembly
|
|
examId={exam.id}
|
|
title={exam.title}
|
|
subject={exam.subject}
|
|
grade={exam.grade}
|
|
difficulty={exam.difficulty}
|
|
totalScore={exam.totalScore}
|
|
durationMin={exam.durationMin}
|
|
initialSelected={initialSelected}
|
|
initialStructure={initialStructure}
|
|
questionOptions={questionOptions}
|
|
/>
|
|
</div>
|
|
</AiClientProvider>
|
|
)
|
|
}
|