feat(app): add error/loading boundaries and update dashboard routes

- 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
This commit is contained in:
SpecialX
2026-06-23 17:38:28 +08:00
parent c4d3433cc9
commit 1a9377222c
90 changed files with 1690 additions and 741 deletions

View File

@@ -6,6 +6,8 @@ import { ClassGradeReport } from "@/modules/grades/components/class-grade-report
import { ExportButton } from "@/modules/grades/components/export-button"
import { StatsClassSelector } from "@/modules/grades/components/stats-class-selector"
import { EmptyState } from "@/shared/components/ui/empty-state"
import { requirePermission } from "@/shared/lib/auth-guard"
import { Permissions } from "@/shared/types/permissions"
import { getParam, type SearchParams } from "@/shared/lib/search-params"
import { BarChart3 } from "lucide-react"
@@ -16,6 +18,7 @@ export default async function StatsPage({
}: {
searchParams: Promise<SearchParams>
}): Promise<JSX.Element> {
const ctx = await requirePermission(Permissions.GRADE_RECORD_READ)
const sp = await searchParams
const classId = getParam(sp, "classId")
@@ -43,15 +46,52 @@ export default async function StatsPage({
)
}
const targetClassId = classId ?? classes[0].id
// P3 修复:对 class_taught scope 过滤可选班级
const allowedClassIds =
ctx.dataScope.type === "class_taught" ? ctx.dataScope.classIds : null
const scopedClasses = allowedClassIds
? classes.filter((c) => allowedClassIds.includes(c.id))
: classes
if (scopedClasses.length === 0) {
return (
<div className="h-full flex-1 flex-col space-y-8 p-8 md:flex">
<div>
<h1 className="text-2xl font-bold tracking-tight">Grade Statistics</h1>
<p className="text-muted-foreground">View class grade statistics and rankings.</p>
</div>
<EmptyState
title="No accessible classes"
description="You don't have permission to view any classes."
icon={BarChart3}
className="border-none shadow-none"
/>
</div>
)
}
const targetClassId = classId ?? scopedClasses[0].id
const targetSubjectId = subjectId && subjectId !== "all" ? subjectId : undefined
// P3 修复:传递 scope 到 data-access 层
const [stats, ranking] = await Promise.all([
getClassGradeStatsWithMeta(targetClassId, targetSubjectId),
getClassRanking(targetClassId, targetSubjectId),
getClassGradeStatsWithMeta(
targetClassId,
targetSubjectId,
undefined,
ctx.dataScope,
ctx.userId
),
getClassRanking(
targetClassId,
targetSubjectId,
undefined,
ctx.dataScope,
ctx.userId
),
])
const classOptions = classes.map((c) => ({ id: c.id, name: c.name }))
const classOptions = scopedClasses.map((c) => ({ id: c.id, name: c.name }))
const subjectOptions = allSubjects.map((s) => ({ id: s.id, name: s.name }))
return (