mirror of
https://github.com/Mueller-Patrick/DHBW-Service-App.git
synced 2026-05-23 19:54:19 +00:00
✨ Adding lecturer to lecture plan item detail view
This commit is contained in:
@@ -11,6 +11,7 @@ import CoreData
|
|||||||
|
|
||||||
@objc(Lecturer)
|
@objc(Lecturer)
|
||||||
public class Lecturer: NSManagedObject {
|
public class Lecturer: NSManagedObject {
|
||||||
|
// MARK: Access methods
|
||||||
@nonobjc public class func getAll() -> [Lecturer] {
|
@nonobjc public class func getAll() -> [Lecturer] {
|
||||||
let managedContext =
|
let managedContext =
|
||||||
PersistenceController.shared.context
|
PersistenceController.shared.context
|
||||||
@@ -41,4 +42,13 @@ public class Lecturer: NSManagedObject {
|
|||||||
return []
|
return []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// MARK: Wrappers
|
||||||
|
public var wrappedName: String {
|
||||||
|
name ?? ""
|
||||||
|
}
|
||||||
|
|
||||||
|
public var wrappedEmail: String {
|
||||||
|
email ?? ""
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,6 +11,8 @@ import CoreData
|
|||||||
|
|
||||||
@objc(RaPlaEvent)
|
@objc(RaPlaEvent)
|
||||||
public class RaPlaEvent: NSManagedObject {
|
public class RaPlaEvent: NSManagedObject {
|
||||||
|
|
||||||
|
// MARK: Access methods
|
||||||
@nonobjc public class func getAll() -> [RaPlaEvent] {
|
@nonobjc public class func getAll() -> [RaPlaEvent] {
|
||||||
let managedContext =
|
let managedContext =
|
||||||
PersistenceController.shared.context
|
PersistenceController.shared.context
|
||||||
@@ -41,4 +43,12 @@ public class RaPlaEvent: NSManagedObject {
|
|||||||
return []
|
return []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// MARK: Wrappers
|
||||||
|
public var lecturerList: [Lecturer] {
|
||||||
|
let set = lecturers as? Set<Lecturer> ?? []
|
||||||
|
return set.sorted {
|
||||||
|
$0.wrappedName < $1.wrappedName
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ struct ContentView: View {
|
|||||||
}
|
}
|
||||||
.onAppear{
|
.onAppear{
|
||||||
// Called upon the opening of the app
|
// Called upon the opening of the app
|
||||||
RaPlaFetcher.getRaplaFileAndSaveToCoreData(from: "https://rapla.dhbw-karlsruhe.de/rapla?page=ical&user=eisenbiegler&file=TINF20B4")
|
RaPlaFetcher.getRaplaFileAndSaveToCoreData(from: "https://rapla.dhbw-karlsruhe.de/rapla?page=ical&user=eisenbiegler&file=TINF19B4")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ struct LecturePlanItem: View {
|
|||||||
.bold()
|
.bold()
|
||||||
Text(event.location!)
|
Text(event.location!)
|
||||||
.bold()
|
.bold()
|
||||||
Text("WIP")
|
Text(!event.lecturerList.isEmpty ? event.lecturerList[0].wrappedName : "")
|
||||||
.bold()
|
.bold()
|
||||||
}.frame(maxWidth: .infinity, alignment: .leading)
|
}.frame(maxWidth: .infinity, alignment: .leading)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user