-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMessageView.swift
46 lines (43 loc) · 1.55 KB
/
MessageView.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import SwiftUI
import Combine
import ConnectIQ
struct MessageView: View {
@State
var message = ""
private let formatter: NumberFormatter = {
let formatter = NumberFormatter()
formatter.maximumFractionDigits = 7
return formatter
}()
var body: some View {
Text(message.isEmpty ? "No message from the spirits." : "The spirits say:\n\(message)")
.multilineTextAlignment(.center)
.onReceive(GarminService.shared.observeMessages()) { data in
do {
let dto = try JSONDecoder().decode(MessageDTO.self, from: data)
message = """
message: \(dto.message)
latitude: \(dto.latitude)
longitude: \(dto.longitude)
"""
} catch {
message = ""
}
}
.onOpenURL { url in
GarminService.shared.handle(url: url)
}
.onAppear {
// This will let the user pick ConnectIQ devices to connect to the app (or automatically pick the only one if there aren't more).
// Your app may be suspended during this, act accordingly.
DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
ConnectIQ.shared?.showDeviceSelection()
}
}
.onTapGesture {
Task {
await GarminService.shared.broadcast(dto: "General Kenobi.")
}
}
}
}