- 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
58 lines
2.1 KiB
TypeScript
58 lines
2.1 KiB
TypeScript
import { notFound } from "next/navigation"
|
|
import { getTranslations } from "next-intl/server"
|
|
|
|
import { getStudentHomeworkTakeData } from "@/modules/homework/data-access-student"
|
|
import { getCurrentStudentUser } from "@/modules/users/data-access"
|
|
import { HomeworkTakeView } from "@/modules/homework/components/homework-take-view"
|
|
import { HomeworkReviewView } from "@/modules/homework/components/student-homework-review-view"
|
|
import { formatDate } from "@/shared/lib/utils"
|
|
|
|
export const dynamic = "force-dynamic"
|
|
|
|
export default async function StudentAssignmentTakePage({
|
|
params,
|
|
}: {
|
|
params: Promise<{ assignmentId: string }>
|
|
}) {
|
|
const { assignmentId } = await params
|
|
const student = await getCurrentStudentUser()
|
|
if (!student) return notFound()
|
|
|
|
const t = await getTranslations("student")
|
|
|
|
const data = await getStudentHomeworkTakeData(assignmentId, student.id)
|
|
if (!data) return notFound()
|
|
|
|
// If status is graded or submitted, use the review view
|
|
const status = data.submission?.status
|
|
if (status === "graded" || status === "submitted") {
|
|
return (
|
|
<div className="space-y-8">
|
|
<div className="flex flex-col gap-1">
|
|
<h2 className="text-2xl font-bold tracking-tight">{data.assignment.title}</h2>
|
|
<div className="text-sm text-muted-foreground">
|
|
<span>{t("assignment.due", { date: data.assignment.dueAt ? formatDate(data.assignment.dueAt) : "-" })}</span>
|
|
</div>
|
|
</div>
|
|
|
|
<HomeworkReviewView initialData={data} />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<div className="space-y-4">
|
|
<div className="flex flex-col gap-1">
|
|
<h2 className="text-2xl font-bold tracking-tight">{data.assignment.title}</h2>
|
|
<div className="text-sm text-muted-foreground">
|
|
<span>{t("assignment.due", { date: data.assignment.dueAt ? formatDate(data.assignment.dueAt) : "-" })}</span>
|
|
<span className="mx-2" aria-hidden="true">•</span>
|
|
<span>{t("assignment.maxAttempts", { count: data.assignment.maxAttempts })}</span>
|
|
</div>
|
|
</div>
|
|
|
|
<HomeworkTakeView assignmentId={data.assignment.id} initialData={data} />
|
|
</div>
|
|
)
|
|
}
|