- 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
46 lines
1.5 KiB
TypeScript
46 lines
1.5 KiB
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"
|
||
import { getStudentActiveClassId } from "@/modules/classes/data-access"
|
||
|
||
export const dynamic = "force-dynamic"
|
||
|
||
export default async function ParentCoursePlanDetailPage({
|
||
params,
|
||
}: {
|
||
params: Promise<{ id: string }>
|
||
}): Promise<JSX.Element> {
|
||
const ctx = await requirePermission(Permissions.COURSE_PLAN_READ)
|
||
const { id } = await params
|
||
|
||
// 家长视角:解析所有孩子的班级 ID,仅允许查看孩子所在班级的计划
|
||
let classIds: string[] = []
|
||
if (ctx.dataScope.type === "children" && ctx.dataScope.childrenIds.length > 0) {
|
||
const results = await Promise.all(
|
||
ctx.dataScope.childrenIds.map((sid) => getStudentActiveClassId(sid))
|
||
)
|
||
classIds = results.filter((cid): cid is string => cid !== null)
|
||
}
|
||
|
||
const plan =
|
||
classIds.length > 0
|
||
? await getCoursePlanById(id, { userId: ctx.userId, isAdmin: false, classIds })
|
||
: null
|
||
|
||
if (!plan) notFound()
|
||
|
||
return (
|
||
<div className="flex h-full flex-col space-y-6 p-8">
|
||
<CoursePlanDetail
|
||
plan={plan}
|
||
backHref="/parent/course-plans"
|
||
successHref="/parent/course-plans"
|
||
/>
|
||
</div>
|
||
)
|
||
}
|