mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
* Add SwiftUI previews for simple helper views Agent-Logs-Url: https://github.com/meshtastic/Meshtastic-Apple/sessions/a2a43e8c-24fd-443a-8a98-13b678770edd Co-authored-by: garthvh <1795163+garthvh@users.noreply.github.com> * Add previews for action buttons, ChannelForm, MetricsColumnDetail, and DeviceOnboarding Agent-Logs-Url: https://github.com/meshtastic/Meshtastic-Apple/sessions/a2a43e8c-24fd-443a-8a98-13b678770edd Co-authored-by: garthvh <1795163+garthvh@users.noreply.github.com> * Add previews for config views, log views, AppLog, Firmware, AppData, and UserConfig Agent-Logs-Url: https://github.com/meshtastic/Meshtastic-Apple/sessions/a2a43e8c-24fd-443a-8a98-13b678770edd Co-authored-by: garthvh <1795163+garthvh@users.noreply.github.com> * Add preview for PositionConfig Agent-Logs-Url: https://github.com/meshtastic/Meshtastic-Apple/sessions/a2a43e8c-24fd-443a-8a98-13b678770edd Co-authored-by: garthvh <1795163+garthvh@users.noreply.github.com> * Fix formatting bugs in #Preview blocks: restore missing .environmentObject/.environment modifiers and add proper tab indentation Agent-Logs-Url: https://github.com/meshtastic/Meshtastic-Apple/sessions/7eeb7a54-7928-466f-8e39-b00d0012a09d Co-authored-by: garthvh <1795163+garthvh@users.noreply.github.com> * Linting fixes --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: garthvh <1795163+garthvh@users.noreply.github.com> Co-authored-by: Garth Vander Houwen <garthvh@yahoo.com>
65 lines
1.8 KiB
Swift
65 lines
1.8 KiB
Swift
import SwiftUI
|
|
|
|
struct SaveConfigButton: View {
|
|
@EnvironmentObject var accessoryManager: AccessoryManager
|
|
@State private var isPresentingSaveConfirm = false
|
|
let node: NodeInfoEntity?
|
|
@Binding var hasChanges: Bool
|
|
let onConfirmation: () -> Void
|
|
|
|
var body: some View {
|
|
if accessoryManager.isConnected && hasChanges {
|
|
if #available(iOS 26.0, *) {
|
|
Button {
|
|
isPresentingSaveConfirm = true
|
|
} label: {
|
|
Label("Save", systemImage: "square.and.arrow.down")
|
|
}
|
|
.padding(.bottom)
|
|
.controlSize(.large)
|
|
.buttonStyle(.borderedProminent)
|
|
.confirmationDialog(
|
|
"Are you sure?",
|
|
isPresented: $isPresentingSaveConfirm,
|
|
titleVisibility: .visible
|
|
) {
|
|
let nodeName = node?.user?.longName ?? "Unknown".localized
|
|
let buttonText = String.localizedStringWithFormat("Save Config for %@".localized, nodeName)
|
|
Button(buttonText) {
|
|
onConfirmation()
|
|
}
|
|
} message: {
|
|
Text("After config values save the node will reboot.")
|
|
}
|
|
} else {
|
|
Button {
|
|
isPresentingSaveConfirm = true
|
|
} label: {
|
|
Label("Save", systemImage: "square.and.arrow.down")
|
|
}
|
|
.padding(.bottom)
|
|
.controlSize(.large)
|
|
.buttonStyle(.borderedProminent)
|
|
.buttonBorderShape(.capsule)
|
|
.confirmationDialog(
|
|
"Are you sure?",
|
|
isPresented: $isPresentingSaveConfirm,
|
|
titleVisibility: .visible
|
|
) {
|
|
let nodeName = node?.user?.longName ?? "Unknown".localized
|
|
let buttonText = String.localizedStringWithFormat("Save Config for %@".localized, nodeName)
|
|
Button(buttonText) {
|
|
onConfirmation()
|
|
}
|
|
} message: {
|
|
Text("After config values save the node will reboot.")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
SaveConfigButton(node: nil, hasChanges: .constant(true), onConfirmation: { })
|
|
.environmentObject(AccessoryManager.shared)
|
|
}
|