Action history is logged and displayed to the user's library. These are triggered whenever the magnet choice sheet is displayed. Also redo alerts and action sheets to avoid deprecation notices for >iOS 14. These will be removed when iOS 14 support is dropped. There was also a problem with sheet presentation not working after a sheet was dismissed. Disable the appropriate view when a sheet is being presented. Signed-off-by: kingbri <bdashore3@proton.me>
65 lines
2 KiB
Swift
65 lines
2 KiB
Swift
//
|
|
// HistoryView.swift
|
|
// Ferrite
|
|
//
|
|
// Created by Brian Dashore on 9/2/22.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct HistoryView: View {
|
|
@EnvironmentObject var navModel: NavigationViewModel
|
|
|
|
let backgroundContext = PersistenceController.shared.backgroundContext
|
|
|
|
var history: FetchedResults<History>
|
|
var formatter: DateFormatter = .init()
|
|
|
|
@State private var historyIndex = 0
|
|
|
|
init(history: FetchedResults<History>) {
|
|
self.history = history
|
|
|
|
formatter.dateStyle = .medium
|
|
formatter.timeStyle = .none
|
|
}
|
|
|
|
func groupedEntries(_ result: FetchedResults<History>) -> [[History]] {
|
|
Dictionary(grouping: result) { (element: History) in
|
|
element.dateString ?? ""
|
|
}.values.sorted { $0[0].date ?? Date() > $1[0].date ?? Date() }
|
|
}
|
|
|
|
var body: some View {
|
|
if !history.isEmpty {
|
|
List {
|
|
ForEach(groupedEntries(history), id: \.self) { (section: [History]) in
|
|
Section(header: Text(formatter.string(from: section[0].date ?? Date()))) {
|
|
ForEach(section, id: \.self) { history in
|
|
ForEach(history.entryArray) { entry in
|
|
HistoryButtonView(entry: entry)
|
|
}
|
|
.onDelete { offsets in
|
|
removeEntry(at: offsets, from: history)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.listStyle(.insetGrouped)
|
|
}
|
|
}
|
|
|
|
func removeEntry(at offsets: IndexSet, from history: History) {
|
|
for index in offsets {
|
|
if let entry = history.entryArray[safe: index] {
|
|
history.removeFromEntries(entry)
|
|
PersistenceController.shared.delete(entry, context: backgroundContext)
|
|
}
|
|
|
|
if history.entryArray.isEmpty {
|
|
PersistenceController.shared.delete(history, context: backgroundContext)
|
|
}
|
|
}
|
|
}
|
|
}
|