补全未被批次覆盖的 9 个模块的重复组件迁移: - classes: 迁移 students-filters/schedule-filters/class-skeleton/class-error-boundary - audit: 迁移 3 个 filters + audit-log-table-skeleton + audit-error-boundary - school: 迁移 grade-insights-filters/school-skeleton/school-error-boundary - settings: 迁移 settings-section-error-boundary - adaptive-practice: 迁移 2 个 practice-stats-cards 到 StatsGrid - announcements: 迁移 announcement-list-skeleton 到 SkeletonCard - messaging: 迁移 message-list-skeleton 到 SkeletonCard - questions: 迁移 question-filters 到 app 层 - student: 迁移 course-filters/student-schedule-filters 到 app 层 - 补充 school/settings 模块 i18n error.boundary* 键 - tsc 零错误
72 lines
2.4 KiB
TypeScript
72 lines
2.4 KiB
TypeScript
import type { Metadata } from "next"
|
|
import { UserX } from "lucide-react"
|
|
import { getTranslations } from "next-intl/server"
|
|
|
|
import { getStudentClasses, getStudentSchedule } from "@/modules/classes/data-access"
|
|
import { getCurrentStudentUser } from "@/modules/users/data-access"
|
|
import { StudentScheduleFilters } from "./student-schedule-filters"
|
|
import { StudentScheduleView } from "@/modules/student/components/student-schedule-view"
|
|
import { requirePermission } from "@/shared/lib/auth-guard"
|
|
import { Permissions } from "@/shared/types/permissions"
|
|
import { EmptyState } from "@/shared/components/ui/empty-state"
|
|
import { getParam, type SearchParams } from "@/shared/lib/search-params"
|
|
|
|
export const dynamic = "force-dynamic"
|
|
|
|
export async function generateMetadata(): Promise<Metadata> {
|
|
const t = await getTranslations("classes")
|
|
return {
|
|
title: `${t("metadata.studentSchedule")} - Next_Edu`,
|
|
description: t("metadata.studentSchedule"),
|
|
}
|
|
}
|
|
|
|
export default async function StudentSchedulePage({
|
|
searchParams,
|
|
}: {
|
|
searchParams: Promise<SearchParams>
|
|
}) {
|
|
const t = await getTranslations("student")
|
|
await requirePermission(Permissions.CLASS_READ)
|
|
const student = await getCurrentStudentUser()
|
|
if (!student) {
|
|
return (
|
|
<div className="space-y-8">
|
|
<div>
|
|
<h2 className="text-2xl font-bold tracking-tight">{t("schedule.title")}</h2>
|
|
<p className="text-muted-foreground">{t("schedule.description")}</p>
|
|
</div>
|
|
<EmptyState
|
|
title={t("schedule.noUser")}
|
|
description={t("schedule.noUserDesc")}
|
|
icon={UserX}
|
|
/>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
const [sp, classes, schedule] = await Promise.all([
|
|
searchParams,
|
|
getStudentClasses(student.id),
|
|
getStudentSchedule(student.id),
|
|
])
|
|
|
|
const classId = getParam(sp, "classId") ?? "all"
|
|
const filteredItems =
|
|
classId !== "all" ? schedule.filter((s) => s.classId === classId) : schedule
|
|
|
|
return (
|
|
<div className="space-y-8">
|
|
<div className="flex flex-col justify-between gap-4 md:flex-row md:items-center">
|
|
<div>
|
|
<h2 className="text-2xl font-bold tracking-tight">{t("schedule.title")}</h2>
|
|
<p className="text-muted-foreground">{t("schedule.description")}</p>
|
|
</div>
|
|
<StudentScheduleFilters classes={classes} />
|
|
</div>
|
|
<StudentScheduleView items={filteredItems} />
|
|
</div>
|
|
)
|
|
}
|
|
|