mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
75 lines
2 KiB
Swift
75 lines
2 KiB
Swift
import SwiftData
|
|
import SwiftUI
|
|
|
|
struct ExchangePositionsButton: View {
|
|
var node: NodeInfoEntity
|
|
var connectedNode: NodeInfoEntity
|
|
|
|
@EnvironmentObject var accessoryManager: AccessoryManager
|
|
|
|
@State private var isPresentingPositionSentAlert: Bool = false
|
|
@State private var isPresentingPositionFailedAlert: Bool = false
|
|
|
|
var body: some View {
|
|
let hopsAway = Int32(truncatingIfNeeded: node.hopsAway > connectedNode.loRaConfig?.hopLimit ?? 0 ? node.hopsAway : connectedNode.loRaConfig?.hopLimit ?? 0)
|
|
Button {
|
|
Task {
|
|
do {
|
|
try await accessoryManager.sendPosition(
|
|
channel: node.channel,
|
|
destNum: node.num,
|
|
hopsAway: hopsAway,
|
|
wantResponse: true
|
|
)
|
|
Task { @MainActor in
|
|
isPresentingPositionSentAlert = true
|
|
DispatchQueue.main.asyncAfter(deadline: .now() + 2.0) {
|
|
isPresentingPositionSentAlert = false
|
|
}
|
|
}
|
|
} catch {
|
|
Task { @MainActor in
|
|
isPresentingPositionFailedAlert = true
|
|
DispatchQueue.main.asyncAfter(deadline: .now() + 2.0) {
|
|
isPresentingPositionFailedAlert = false
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
} label: {
|
|
Label {
|
|
Text("Exchange Positions")
|
|
} icon: {
|
|
Image(systemName: "arrow.triangle.2.circlepath")
|
|
.symbolRenderingMode(.hierarchical)
|
|
}
|
|
}.alert(
|
|
"Position Sent",
|
|
isPresented: $isPresentingPositionSentAlert
|
|
) {
|
|
Button("OK") { }.keyboardShortcut(.defaultAction)
|
|
} message: {
|
|
Text("Your position has been sent with a request for a response with their position. You will receive a notification when a position is returned.")
|
|
}.alert(
|
|
"Position Exchange Failed",
|
|
isPresented: $isPresentingPositionFailedAlert
|
|
) {
|
|
Button("OK") { }.keyboardShortcut(.defaultAction)
|
|
} message: {
|
|
Text("Failed to get a valid position to exchange.")
|
|
}
|
|
}
|
|
}
|
|
|
|
// TODO: Fix preview for SwiftData
|
|
/*
|
|
#Preview {
|
|
let node = NodeInfoEntity()
|
|
node.num = 123456789
|
|
let connectedNode = NodeInfoEntity()
|
|
connectedNode.num = 987654321
|
|
ExchangePositionsButton(node: node, connectedNode: connectedNode)
|
|
.environmentObject(AccessoryManager.shared)
|
|
}
|
|
*/
|