- Add admin/lesson-plans, parent/lesson-plans, student/lesson-plans routes - Add student/practice and teacher/practice routes for adaptive practice - Add management/grade/dashboard and management/grade/practice routes - Add teacher/lesson-plans error and loading boundaries - Update existing admin, parent, student, teacher pages with new features - Update globals.css and proxy middleware
57 lines
1.8 KiB
TypeScript
57 lines
1.8 KiB
TypeScript
import { notFound } from "next/navigation"
|
|
import type { Metadata } from "next"
|
|
import type { JSX } from "react"
|
|
import { getTranslations } from "next-intl/server"
|
|
|
|
import { getCoursePlanById, getSubjectOptions } from "@/modules/course-plans/data-access"
|
|
import { getAdminClasses } from "@/modules/classes/data-access"
|
|
import { getAcademicYears, getStaffOptions } from "@/modules/school/data-access"
|
|
import { CoursePlanForm } from "@/modules/course-plans/components/course-plan-form"
|
|
|
|
export async function generateMetadata(): Promise<Metadata> {
|
|
const t = await getTranslations("coursePlans")
|
|
return {
|
|
title: `${t("edit.title")} - Next_Edu`,
|
|
description: t("edit.description"),
|
|
}
|
|
}
|
|
|
|
export const dynamic = "force-dynamic"
|
|
|
|
export default async function EditCoursePlanPage({
|
|
params,
|
|
}: {
|
|
params: Promise<{ id: string }>
|
|
}): Promise<JSX.Element> {
|
|
const t = await getTranslations("coursePlans")
|
|
const { id } = await params
|
|
|
|
const [plan, classes, subjects, teachers, academicYears] = await Promise.all([
|
|
getCoursePlanById(id),
|
|
getAdminClasses(),
|
|
getSubjectOptions(),
|
|
getStaffOptions(),
|
|
getAcademicYears(),
|
|
])
|
|
|
|
if (!plan) notFound()
|
|
|
|
return (
|
|
<div className="flex h-full flex-col space-y-8 p-8">
|
|
<div>
|
|
<h2 className="text-2xl font-bold tracking-tight">{t("edit.title")}</h2>
|
|
<p className="text-muted-foreground">{t("edit.description")}</p>
|
|
</div>
|
|
<CoursePlanForm
|
|
mode="edit"
|
|
plan={plan}
|
|
classes={classes.map((c) => ({ id: c.id, name: c.name }))}
|
|
subjects={subjects}
|
|
teachers={teachers.map((t) => ({ id: t.id, name: t.name }))}
|
|
academicYears={academicYears.map((y) => ({ id: y.id, name: y.name }))}
|
|
backHref={`/admin/course-plans/${plan.id}`}
|
|
/>
|
|
</div>
|
|
)
|
|
}
|