fix 统一测试数据来源 && feat 自动隐藏周末和晚间课

This commit is contained in:
seahi 2025-03-20 09:49:38 +08:00
parent e966d68f5d
commit 4c373b7e5e
2 changed files with 57 additions and 29 deletions

View File

@ -15,7 +15,7 @@ enum PreviewData {
// MARK: -
/// 2025
static let currentSemesterStartDate = Calendar.current.date(from: DateComponents(year: 2025, month: 2, day: 17))!
static let currentSemesterStartDate = Calendar.current.date(from: DateComponents(year: 2025, month: 2, day: 24))!
///
static let currentSemesterEndDate = Calendar.current.date(byAdding: .day, value: 18 * 7, to: currentSemesterStartDate)!
@ -59,7 +59,7 @@ enum PreviewData {
///
static let classes = [
"计算机1班", "计算机2班", "软件工程1班", "软件工程2班",
"云计算G23-1", "软件G22-3", "软件G22-4", "软件工程2班",
"网络工程1班", "人工智能1班", "数据科学1班", "信息安全1班"
]

View File

@ -39,6 +39,34 @@ struct CourseScheduleView: View {
courses.filter { $0.semester?.id == semester.id }
}
//
private var hasWeekendCourses: Bool {
filteredCourses.contains { course in
course.sessions.contains { session in
session.weekday == 6 || session.weekday == 7
}
}
}
// 9/10
private var hasLateTimeslotCourses: Bool {
filteredCourses.contains { course in
course.sessions.contains { session in
session.timeSlot == 5 // 5 9/10
}
}
}
//
private var displayWeekdays: [Int] {
hasWeekendCourses ? Array(1...7) : Array(1...5)
}
//
private var displayTimeSlots: [TimeSlot] {
hasLateTimeslotCourses ? TimeSlot.defaultSlots : TimeSlot.defaultSlots.filter { $0.id != 5 }
}
//
private func getCoursesForCell(weekday: Int, timeSlot: Int) -> [CourseModel] {
return filteredCourses.filter { course in
@ -62,7 +90,7 @@ struct CourseScheduleView: View {
headerRow
//
ForEach(TimeSlot.defaultSlots) { timeSlot in
ForEach(displayTimeSlots) { timeSlot in
courseRow(timeSlot: timeSlot)
}
}
@ -134,8 +162,8 @@ struct CourseScheduleView: View {
.border(Color.gray.opacity(0.5), width: 0.5)
//
ForEach(0..<7, id: \.self) { index in
Text(weekdays[index])
ForEach(displayWeekdays, id: \.self) { weekday in
Text(weekdays[weekday - 1])
.font(.headline)
.frame(width: dayCellWidth, height: headerHeight)
.background(Color.gray.opacity(0.3))
@ -160,7 +188,7 @@ struct CourseScheduleView: View {
.border(Color.gray.opacity(0.5), width: 0.5)
//
ForEach(1...7, id: \.self) { weekday in
ForEach(displayWeekdays, id: \.self) { weekday in
courseCell(weekday: weekday, timeSlot: timeSlot.id)
}
}
@ -222,31 +250,31 @@ struct CourseScheduleView: View {
//
private func addSampleCourses() {
var sampleCourses: [CourseModel] = []
// 使 PreviewData
let container = PreviewData.createContainer()
let fetchDescriptor = FetchDescriptor<CourseModel>()
let sampleCourses = try? container.mainContext.fetch(fetchDescriptor)
.filter { $0.semester?.id != semester.id } //
//
let aiCourse = CourseModel(name: "人工智能技术与应用", colorHex: "#FADBD8", isNew: false)
aiCourse.addSession(weekday: 4, timeSlot: 5, location: "CMA101陈栋教室", schoolClass: "环艺G24-1,环艺G24-2,电竞G24-1")
aiCourse.addSession(weekday: 5, timeSlot: 5, location: "CMA101陈栋教室", schoolClass: "视传G24-1,视传G24-2,视传G24-3")
let dockerCourse = CourseModel(name: "容器云架构与运维", colorHex: "#D6EAF8", isNew: true)
dockerCourse.addSession(weekday: 3, timeSlot: 3, location: "XXGY402", schoolClass: "云计算G23-1")
dockerCourse.addSession(weekday: 5, timeSlot: 1, location: "XXGY404", schoolClass: "云计算G23-1")
let networkCourse = CourseModel(name: "网络组建与维护", colorHex: "#FCF3CF", isNew: true)
networkCourse.addSession(weekday: 1, timeSlot: 3, location: "XXA2305", schoolClass: "软件G23-3")
networkCourse.addSession(weekday: 2, timeSlot: 3, location: "XXA2401", schoolClass: "软件G23-4")
networkCourse.addSession(weekday: 3, timeSlot: 2, location: "XXA2303", schoolClass: "软件G23-3")
networkCourse.addSession(weekday: 3, timeSlot: 4, location: "XXA2504", schoolClass: "软件G23-4")
sampleCourses.append(aiCourse)
sampleCourses.append(dockerCourse)
sampleCourses.append(networkCourse)
for course in sampleCourses {
course.semester = semester
modelContext.insert(course)
for course in sampleCourses ?? [] {
//
let newCourse = CourseModel(name: course.name, colorHex: course.colorHex)
//
for session in course.sessions {
newCourse.addSession(
weekday: session.weekday,
timeSlot: session.timeSlot,
location: session.location,
schoolClass: session.schoolCalss
)
}
//
newCourse.semester = semester
modelContext.insert(newCourse)
}
}