mirror of
https://github.com/Mueller-Patrick/DHBW-Service-App.git
synced 2024-11-01 08:53:58 +00:00
211 lines
8.4 KiB
Swift
211 lines
8.4 KiB
Swift
//
|
|
// HomeView.swift
|
|
// DHBW-Service
|
|
//
|
|
// Created by Patrick Müller on 21.12.20.
|
|
//
|
|
|
|
import SwiftUI
|
|
import CoreData
|
|
|
|
struct HomeView: View {
|
|
@EnvironmentObject var settings: LocalSettings
|
|
@State private var name: String = ""
|
|
@State private var course: String = ""
|
|
@State private var director: String = ""
|
|
@State private var todaysEvents: [NSManagedObject] = []
|
|
@State private var tomorrowsEvents: [NSManagedObject] = []
|
|
@State private var upcomingExams: [NSManagedObject] = []
|
|
|
|
var body: some View {
|
|
NavigationView {
|
|
VStack {
|
|
HStack {
|
|
Text("name".localized(tableName: "General", plural: false) + ": ")
|
|
Text(self.name)
|
|
}
|
|
HStack {
|
|
Text("course".localized(tableName: "General", plural: false) + ": ")
|
|
Text(self.course)
|
|
}
|
|
HStack {
|
|
Text("director".localized(tableName: "General", plural: false) + ": ")
|
|
Text(self.director)
|
|
}
|
|
|
|
// Upcoming events section
|
|
HStack {
|
|
Spacer()
|
|
|
|
VStack {
|
|
Text("today".localized(tableName: "HomeView"))
|
|
.font(/*@START_MENU_TOKEN@*/.title/*@END_MENU_TOKEN@*/)
|
|
.frame(maxWidth: .infinity)
|
|
VStack {
|
|
if(!todaysEvents.isEmpty){
|
|
ForEach(todaysEvents, id: \.self) { exam in
|
|
Text(exam.value(forKey: "summary") as! String)
|
|
}
|
|
} else {
|
|
Text("noLectures".localized(tableName: "HomeView"))
|
|
}
|
|
}
|
|
}
|
|
.padding()
|
|
.overlay(
|
|
RoundedRectangle(cornerRadius: 10)
|
|
.stroke(Color.blue, lineWidth: 4)
|
|
)
|
|
|
|
VStack {
|
|
Text("tomorrow".localized(tableName: "HomeView"))
|
|
.font(/*@START_MENU_TOKEN@*/.title/*@END_MENU_TOKEN@*/)
|
|
.frame(maxWidth: .infinity)
|
|
VStack {
|
|
if(!tomorrowsEvents.isEmpty){
|
|
ForEach(tomorrowsEvents, id: \.self) { exam in
|
|
Text(exam.value(forKey: "summary") as! String)
|
|
}
|
|
} else {
|
|
Text("noLectures".localized(tableName: "HomeView"))
|
|
}
|
|
}
|
|
}
|
|
.padding()
|
|
.overlay(
|
|
RoundedRectangle(cornerRadius: 10)
|
|
.stroke(Color.blue, lineWidth: 4)
|
|
)
|
|
|
|
Spacer()
|
|
}
|
|
|
|
// Exams section
|
|
HStack {
|
|
Spacer()
|
|
|
|
VStack {
|
|
Text("upcomingExams".localized(tableName: "HomeView"))
|
|
.font(/*@START_MENU_TOKEN@*/.title/*@END_MENU_TOKEN@*/)
|
|
.frame(maxWidth: .infinity)
|
|
VStack {
|
|
if(!upcomingExams.isEmpty){
|
|
ForEach(upcomingExams, id: \.self) { exam in
|
|
Text(exam.value(forKey: "summary") as! String)
|
|
}
|
|
} else {
|
|
Text("noExams".localized(tableName: "HomeView"))
|
|
}
|
|
}
|
|
}
|
|
.padding()
|
|
.overlay(
|
|
RoundedRectangle(cornerRadius: 10)
|
|
.stroke(Color.red, lineWidth: 4)
|
|
)
|
|
|
|
Spacer()
|
|
}
|
|
}
|
|
.navigationBarTitle(Text("Home"))
|
|
}.onAppear{
|
|
self.readFromCoreData()
|
|
self.todaysEvents = getTodaysEvents()
|
|
self.tomorrowsEvents = getTomorrowsEvents()
|
|
self.upcomingExams = getUpcomingExams()
|
|
}
|
|
}
|
|
}
|
|
|
|
extension HomeView{
|
|
func readFromCoreData() {
|
|
let fetchedData = UtilityFunctions.getCoreDataObject(entity: "User")
|
|
|
|
if(!fetchedData.isEmpty) {
|
|
let user = fetchedData[0]
|
|
self.name = user.value(forKey: "name") as! String
|
|
self.course = user.value(forKey: "course") as! String
|
|
self.director = user.value(forKey: "director") as! String
|
|
}
|
|
}
|
|
|
|
func getTodaysEvents() -> [NSManagedObject] {
|
|
let searchPredicate = NSPredicate(format: "(category == 'Lehrveranstaltung')")
|
|
let hiddenPredicate = NSPredicate(format: "isHidden == NO")
|
|
var predicates = [searchPredicate, hiddenPredicate]
|
|
predicates.append(contentsOf: getDayPredicates(today: true))
|
|
let compoundPredicate = NSCompoundPredicate(andPredicateWithSubpredicates: predicates)
|
|
let events = UtilityFunctions.getCoreDataObject(entity: "RaPlaEvent", searchPredicate: compoundPredicate)
|
|
if(!events.isEmpty) {
|
|
return Array(events[...min(1, events.count-1)])
|
|
} else {
|
|
return []
|
|
}
|
|
}
|
|
|
|
func getTomorrowsEvents() -> [NSManagedObject] {
|
|
let searchPredicate = NSPredicate(format: "(category == 'Lehrveranstaltung')")
|
|
let hiddenPredicate = NSPredicate(format: "isHidden == NO")
|
|
var predicates = [searchPredicate, hiddenPredicate]
|
|
predicates.append(contentsOf: getDayPredicates(tomorrow: true))
|
|
let compoundPredicate = NSCompoundPredicate(andPredicateWithSubpredicates: predicates)
|
|
let events = UtilityFunctions.getCoreDataObject(entity: "RaPlaEvent", searchPredicate: compoundPredicate)
|
|
if(!events.isEmpty) {
|
|
return Array(events[...min(1, events.count-1)])
|
|
} else {
|
|
return []
|
|
}
|
|
}
|
|
|
|
func getUpcomingExams() -> [NSManagedObject] {
|
|
let searchPredicate = NSPredicate(format: "category == %@", "Prüfung")
|
|
let hiddenPredicate = NSPredicate(format: "isHidden == NO")
|
|
let compoundPredicate = NSCompoundPredicate(andPredicateWithSubpredicates: [searchPredicate, hiddenPredicate])
|
|
let sectionSortDescriptor = NSSortDescriptor(key: "startDate", ascending: true)
|
|
let sortDescriptors = [sectionSortDescriptor]
|
|
let events = UtilityFunctions.getCoreDataObject(entity: "RaPlaEvent", sortDescriptors: sortDescriptors, searchPredicate: compoundPredicate)
|
|
if(!events.isEmpty) {
|
|
return Array(events[...min(1, events.count-1)])
|
|
} else {
|
|
return []
|
|
}
|
|
}
|
|
|
|
func getDayPredicates(today: Bool = false, tomorrow: Bool = false) -> [NSPredicate] {
|
|
var calendar = Calendar.current
|
|
calendar.timeZone = NSTimeZone.local
|
|
|
|
var dateFrom = Date()
|
|
var dateTo = Date()
|
|
if(today) {
|
|
//Get today's beginning & end
|
|
dateFrom = calendar.startOfDay(for: Date())
|
|
dateTo = calendar.date(byAdding: .day, value: 1, to: dateFrom)!
|
|
} else if (tomorrow) {
|
|
dateFrom = calendar.startOfDay(for: Date())
|
|
dateFrom = calendar.date(byAdding: .day, value: 1, to: dateFrom)!
|
|
dateTo = calendar.date(byAdding: .day, value: 2, to: dateFrom)!
|
|
}
|
|
|
|
let fromPredicate = NSPredicate(format: "startDate >= %@", dateFrom as NSDate)
|
|
let toPredicate = NSPredicate(format: "startDate < %@", dateTo as NSDate)
|
|
|
|
return [fromPredicate, toPredicate]
|
|
}
|
|
}
|
|
|
|
struct HomeView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
HomeView()
|
|
.preferredColorScheme(.dark)
|
|
.environmentObject(getFirstOpening())
|
|
.environment(\.managedObjectContext, PersistenceController.preview.container.viewContext)
|
|
}
|
|
|
|
static func getFirstOpening() -> LocalSettings {
|
|
let settings = LocalSettings();
|
|
settings.isFirstOpening = false;
|
|
return settings
|
|
}
|
|
}
|