- Add error.tsx and loading.tsx boundaries for admin, parent, student, teacher routes - Add dashboard-error-fallback and dashboard-loading-skeleton components - Add student/learning page, parent/leave routes, teacher textbook components - Update existing app routes across auth, dashboard, and API endpoints - Update proxy middleware and next-auth type declarations
31 lines
864 B
TypeScript
31 lines
864 B
TypeScript
import type { JSX } from "react"
|
|
import { notFound } from "next/navigation"
|
|
|
|
import { requirePermission } from "@/shared/lib/auth-guard"
|
|
import { Permissions } from "@/shared/types/permissions"
|
|
import { getCoursePlanById } from "@/modules/course-plans/data-access"
|
|
import { CoursePlanDetail } from "@/modules/course-plans/components/course-plan-detail"
|
|
|
|
export const dynamic = "force-dynamic"
|
|
|
|
export default async function TeacherCoursePlanDetailPage({
|
|
params,
|
|
}: {
|
|
params: Promise<{ id: string }>
|
|
}): Promise<JSX.Element> {
|
|
await requirePermission(Permissions.COURSE_PLAN_READ)
|
|
const { id } = await params
|
|
const plan = await getCoursePlanById(id)
|
|
|
|
if (!plan) notFound()
|
|
|
|
return (
|
|
<div className="flex h-full flex-col space-y-6 p-8">
|
|
<CoursePlanDetail
|
|
plan={plan}
|
|
backHref="/teacher/course-plans"
|
|
/>
|
|
</div>
|
|
)
|
|
}
|