-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTraveledRecordedView.swift
444 lines (375 loc) · 16.1 KB
/
TraveledRecordedView.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
import SwiftUI
import CoreLocation
// Color scheme enum
enum AccentColor {
static let accent = Color(hex: "#00ff81")
static let background = Color(hex: "#0c3617")
static let gridLine = Color(hex: "#2e2e2e")
}
struct TravelRecordedView: View {
var travelData: TravelData
@Environment(\.presentationMode) var presentationMode
@Binding var navigationPath: NavigationPath
@ObservedObject var locationManager: LocationManager
@ScaledMetric private var baseFontSize: CGFloat = 30
private var temporaryFontSize: CGFloat {
if locationManager.totalTime >= 36000 {
return baseFontSize * 0.5
} else if locationManager.totalTime >= 3600 {
return baseFontSize * 0.67
} else {
return baseFontSize
}
}
var body: some View {
ScrollView {
VStack(spacing: 20) {
milesTraveled
speedAndTimeSection
elevationSection
speedSection
//accelerationSection REMOVED
doneButton
}
.padding()
}
.navigationTitle("Travel Recorded")
.onAppear(perform: debugInfo)
.toolbar(.hidden, for: .navigationBar)
}
private var speedSection: some View {
VStack(alignment: .leading, spacing: 10) {
Text("Speed Over Time")
.font(.headline)
.fontWeight(.bold)
SpeedGraphView(readings: locationManager.speedReadings, topSpeed: travelData.topSpeed)
.frame(height: 125)
.border(Color.clear)
}
}
// Removed accelerationSection
private var milesTraveled: some View {
VStack(spacing: 5) {
Text(String(format: "%.0f", travelData.milesTraveled))
.font(.system(size: 55))
.bold()
Text("Miles Traveled")
.font(.caption)
.foregroundColor(AccentColor.accent)
}
}
private var speedAndTimeSection: some View {
HStack {
dataDisplay(topValue: String(format: "%.0f", travelData.topSpeed),
topLabel: "Top Speed",
bottomValue: locationManager.totalTimeTextTimer,
bottomLabel: "Total Time")
Spacer()
dataDisplay(topValue: String(format: "%.0f", travelData.averageSpeed),
topLabel: "AVG Speed",
bottomValue: String(format: " "),
bottomLabel: "")
}
}
@ViewBuilder
private func dataDisplay(topValue: String, topLabel: String, bottomValue: String, bottomLabel: String) -> some View {
VStack(alignment: .leading, spacing: 10) {
DataDisplayRow(value: topValue, label: topLabel)
DataDisplayRow(value: bottomValue, label: bottomLabel, fontSize: temporaryFontSize)
}
}
private var maxElevation: String {
let maxElev = locationManager.elevationReadings.map { $0.elevation }.max() ?? 0
return formatElevation(maxElev)
}
private var minElevation: String {
let minElev = locationManager.elevationReadings.map { $0.elevation }.min() ?? 0
return formatElevation(minElev)
}
private func formatElevation(_ elevation: Double) -> String {
let elevationInFeet = elevation * 3.281
return "\(String(format: "%.0f", elevationInFeet)) ft"
}
private var elevationSection: some View {
VStack(alignment: .leading, spacing: 10) {
Text("Elevation")
.font(.headline)
HStack(alignment: .center, spacing: 20) {
VStack(alignment: .leading, spacing: 0) {
HStack(spacing: 5) {
Image(systemName: "triangle.fill")
.foregroundColor(AccentColor.accent)
Text(maxElevation)
}
HStack(spacing: 5) {
Image(systemName: "triangle.fill")
.foregroundColor(AccentColor.accent)
.rotationEffect(.degrees(180))
Text(minElevation)
}
}
.font(.subheadline)
Spacer()
}
ElevationGraphView(readings: locationManager.elevationReadings)
.frame(height: 75)
.border(Color.clear)
}
}
private var doneButton: some View {
Button(action: { withAnimation { self.presentationMode.wrappedValue.dismiss() } }) {
Text("Done")
.fontWeight(.bold)
.foregroundColor(.white)
.frame(maxWidth: .infinity)
.padding()
.background(AccentColor.background)
.cornerRadius(15)
}
.buttonStyle(PlainButtonStyle())
.padding(.vertical, 40)
.accessibilityLabel("Finish and return to previous screen")
}
private func debugInfo() {
print("Elevation Readings: \(locationManager.elevationReadings)")
print("TravelRecordedView appeared with \(locationManager.elevationReadings.count) readings")
print("Total Time: \(locationManager.totalTimeTimer)")
print("Formatted Time: \(locationManager.totalTimeTextTimer)")
}
}
struct DataDisplayRow: View {
let value: String
let label: String
var fontSize: CGFloat = 30
var body: some View {
VStack(alignment: .leading, spacing: 5) {
Text(value)
.font(.system(size: fontSize))
.frame(maxWidth: .infinity, alignment: .center)
Text(label)
.font(.caption)
.foregroundColor(AccentColor.accent)
}
}
}
struct ElevationGraphView: View {
var readings: [ElevationReading]
@State private var downsampledReadings: [ElevationReading] = []
private let targetSampleCount = 100
private let leftPadding: CGFloat = 20
private let bottomPadding: CGFloat = 20
private var maxElevation: String {
let maxElev = readings.map { $0.elevation }.max() ?? 0
return formatElevation(maxElev)
}
private var minElevation: String {
let minElev = readings.map { $0.elevation }.min() ?? 0
return formatElevation(minElev)
}
private var startTime: String {
let formatter = DateFormatter()
formatter.timeStyle = .short
return formatter.string(from: readings.first?.time ?? Date())
}
private var endTime: String {
let formatter = DateFormatter()
formatter.timeStyle = .short
return formatter.string(from: readings.last?.time ?? Date())
}
private func formatElevation(_ elevation: Double) -> String {
let elevationInFeet = elevation * 3.281
return "\(String(format: "%.0f", elevationInFeet)) ft"
}
private func scaleReading(_ reading: ElevationReading, in size: CGSize) -> CGPoint {
let initialElevation = readings.first?.elevation ?? 0
let maxElevationChange = readings.map { abs($0.elevation - initialElevation) }.max() ?? 1
let totalTime = readings.last?.time.timeIntervalSince(readings.first?.time ?? Date()) ?? 1
let timeElapsed = reading.time.timeIntervalSince(readings.first?.time ?? Date())
let elevationDelta = reading.elevation - initialElevation
let xScale = (size.width - leftPadding) / CGFloat(totalTime)
let yMidPoint = (size.height - bottomPadding) / 2
let yScale = yMidPoint / maxElevationChange
let x = xScale * CGFloat(timeElapsed) + leftPadding
let y = yMidPoint - (CGFloat(elevationDelta) * yScale)
return CGPoint(x: x, y: y)
}
var body: some View {
GeometryReader { geometry in
ZStack {
VStack {
Text(maxElevation).foregroundColor(.gray).font(.footnote)
Spacer()
Text(minElevation).foregroundColor(.gray).font(.footnote)
}
.frame(height: geometry.size.height - bottomPadding)
.position(x: leftPadding / 2 - 5, y: (geometry.size.height - bottomPadding) / 2)
Path { path in
let points = downsampledReadings.map { scaleReading($0, in: geometry.size) }
guard let firstPoint = points.first else { return }
path.move(to: firstPoint)
for point in points.dropFirst() {
path.addLine(to: point)
}
}
.stroke(AccentColor.accent, lineWidth: 2)
.accessibilityElement(children: .ignore)
.accessibilityLabel("Elevation graph")
Path { path in
path.move(to: CGPoint(x: leftPadding, y: 0))
path.addLine(to: CGPoint(x: geometry.size.width, y: 0))
}
.stroke(AccentColor.gridLine, lineWidth: 1)
Path { path in
path.move(to: CGPoint(x: leftPadding, y: (geometry.size.height - bottomPadding) / 2))
path.addLine(to: CGPoint(x: geometry.size.width, y: (geometry.size.height - bottomPadding) / 2))
}
.stroke(AccentColor.gridLine, lineWidth: 1)
VStack {
Spacer()
HStack {
Text(startTime).foregroundColor(.gray).font(.footnote)
Spacer()
Text(endTime).foregroundColor(.gray).font(.footnote)
}
.frame(width: geometry.size.width - leftPadding)
.offset(x: leftPadding / 2, y: bottomPadding / 2)
}
Path { path in
path.move(to: CGPoint(x: leftPadding, y: geometry.size.height - bottomPadding))
path.addLine(to: CGPoint(x: geometry.size.width, y: geometry.size.height - bottomPadding))
}
.stroke(AccentColor.gridLine, lineWidth: 1)
}
}
.onAppear {
downsampleData()
}
.onChange(of: readings) {
downsampleData()
}
}
private func downsampleData() {
DispatchQueue.global(qos: .userInitiated).async {
let downsampled = downsampleReadings(self.readings, targetCount: self.targetSampleCount)
DispatchQueue.main.async {
self.downsampledReadings = downsampled
}
}
}
}
struct SpeedGraphView: View {
var readings: [SpeedReading]
var topSpeed: Double
@State private var downsampledReadings: [SpeedReading] = []
private let targetSampleCount = 100
private let leftPadding: CGFloat = 20
private let bottomPadding: CGFloat = 20
private var maxSpeed: String {
return String(format: "%.0f", topSpeed)
}
private var minSpeed: String {
let minSpeed = readings.map { $0.speed }.min() ?? 0
return String(format: "%.0f", minSpeed)
}
private var startTime: String {
let formatter = DateFormatter()
formatter.timeStyle = .short
return formatter.string(from: readings.first?.time ?? Date())
}
private var endTime: String {
let formatter = DateFormatter()
formatter.timeStyle = .short
return formatter.string(from: readings.last?.time ?? Date())
}
private func scaleReading(_ reading: SpeedReading, in size: CGSize) -> CGPoint {
let totalTime = readings.last?.time.timeIntervalSince(readings.first?.time ?? Date()) ?? 1
let timeElapsed = reading.time.timeIntervalSince(readings.first?.time ?? Date())
let xScale = (size.width - leftPadding) / CGFloat(totalTime)
let yScale = (size.height - bottomPadding) / CGFloat(topSpeed)
let x = xScale * CGFloat(timeElapsed) + leftPadding
let y = size.height - (CGFloat(reading.speed) * yScale) - bottomPadding
return CGPoint(x: x, y: y)
}
var body: some View {
VStack(alignment: .leading, spacing: 10) {
HStack(alignment: .center, spacing: 20) {
VStack(alignment: .leading, spacing: 0) {
}
.font(.subheadline)
Spacer()
}
GeometryReader { geometry in
ZStack {
VStack {
Text(maxSpeed).foregroundColor(.gray).font(.footnote)
Spacer()
Text(minSpeed).foregroundColor(.gray).font(.footnote)
}
.frame(height: geometry.size.height - bottomPadding)
.position(x: leftPadding / 2 - 5, y: (geometry.size.height - bottomPadding) / 2)
Path { path in
let points = downsampledReadings.map { scaleReading($0, in: geometry.size) }
guard let firstPoint = points.first else { return }
path.move(to: firstPoint)
for point in points.dropFirst() {
path.addLine(to: point)
}
}
.stroke(Color.orange, lineWidth: 2)
.accessibilityElement(children: .ignore)
.accessibilityLabel("Speed graph")
Path { path in
path.move(to: CGPoint(x: leftPadding, y: 0))
path.addLine(to: CGPoint(x: geometry.size.width, y: 0))
}
.stroke(AccentColor.gridLine, lineWidth: 1)
Path { path in
path.addLine(to: CGPoint(x: geometry.size.width, y: (geometry.size.height - bottomPadding) / 2))
}
.stroke(AccentColor.gridLine, lineWidth: 1)
VStack {
Spacer()
HStack {
Text(startTime).foregroundColor(.gray).font(.footnote)
Spacer()
Text(endTime).foregroundColor(.gray).font(.footnote)
}
.frame(width: geometry.size.width - leftPadding)
.offset(x: leftPadding / 2, y: bottomPadding / 2)
}
Path { path in
path.move(to: CGPoint(x: leftPadding, y: geometry.size.height - bottomPadding))
path.addLine(to: CGPoint(x: geometry.size.width, y: geometry.size.height - bottomPadding))
}
.stroke(AccentColor.gridLine, lineWidth: 1)
}
}
}
.onAppear {
downsampleData()
}
.onChange(of: readings) {
downsampleData()
}
}
private func downsampleData() {
DispatchQueue.global(qos: .userInitiated).async {
let downsampled = downsampleReadings(self.readings, targetCount: self.targetSampleCount)
DispatchQueue.main.async {
self.downsampledReadings = downsampled
}
}
}
}
// REMOVED AccelerationGraphView struct entirely
func downsampleReadings<T>(_ readings: [T], targetCount: Int) -> [T] {
guard readings.count > targetCount else { return readings }
let stride = Double(readings.count) / Double(targetCount)
return (0..<targetCount).map { i in
readings[min(readings.count - 1, Int(Double(i) * stride))]
}
}
// Helper function for localization
func localizedString(_ key: String, comment: String = "") -> String {
NSLocalizedString(key, comment: comment)
}