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>
69 lines
1.6 KiB
Swift
69 lines
1.6 KiB
Swift
//
|
|
// AlertButton.swift
|
|
// Ferrite
|
|
//
|
|
// Created by Brian Dashore on 9/8/22.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct AlertButton: Identifiable {
|
|
enum Role {
|
|
case destructive
|
|
case cancel
|
|
}
|
|
|
|
let id: UUID
|
|
let label: String
|
|
let action: () -> Void
|
|
let role: Role?
|
|
|
|
// Used for all buttons
|
|
init(_ label: String, role: Role? = nil, action: @escaping () -> Void) {
|
|
self.id = UUID()
|
|
self.label = label
|
|
self.action = action
|
|
self.role = role
|
|
}
|
|
|
|
// Used for buttons with no action
|
|
init(_ label: String = "Cancel", role: Role? = nil) {
|
|
self.id = UUID()
|
|
self.label = label
|
|
self.action = { }
|
|
self.role = role
|
|
}
|
|
|
|
func toActionButton() -> Alert.Button {
|
|
if let role = role {
|
|
switch role {
|
|
case .cancel:
|
|
return .cancel(Text(label))
|
|
case .destructive:
|
|
return .destructive(Text(label), action: action)
|
|
}
|
|
} else {
|
|
return .default(Text(label), action: action)
|
|
}
|
|
}
|
|
|
|
@available(iOS 15.0, *)
|
|
@ViewBuilder
|
|
func toButtonView() -> some View {
|
|
Button(label, role: toButtonRole(role), action: action)
|
|
}
|
|
|
|
@available(iOS 15.0, *)
|
|
func toButtonRole(_ role: Role?) -> ButtonRole? {
|
|
if let role = role {
|
|
switch role {
|
|
case .destructive:
|
|
return .destructive
|
|
case .cancel:
|
|
return .cancel
|
|
}
|
|
} else {
|
|
return nil
|
|
}
|
|
}
|
|
}
|