aboutsummaryrefslogtreecommitdiff
path: root/iosApp/iosApp/Devices/DeviceRow.swift
blob: f8c8053fde04d609accf5e1798e7badd108d7930 (plain)
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
//
//  DeviceRow.swift
//  iosApp
//
//  Created by Iván on 28/01/22.
//  Copyright © 2022 orgName. All rights reserved.
//

import SwiftUI
import shared

struct DeviceRow: View {
    var unit: UnitInformation
    
    enum Action {
        case details
        case reports
        case commands
    }
    var callback: (Action) -> ()
    
    @State var isSheet: Bool = false
    
    var body: some View {
        let row = HStack {
            /* Device icon */
            let category = Marker.companion.categoryToMarkerType(category: unit.device.category)
            Image(MarkerTransformations.markerTypeToImageName(markerType: category))
                .padding(5.0)
            
            VStack {
                HStack {
                    /* Status icon */
                    switch (unit.getStatus()) {
                    case .online:
                        Image(systemName: "circle.fill")
                            .foregroundColor(.systemGreen)
                            .imageScale(.small)
                    case .offline:
                        Image(systemName: "circle.fill")
                            .foregroundColor(.systemRed)
                            .imageScale(.small)
                    default:
                        EmptyView()
                    }
                    
                    /* Engine stop */
                    switch (unit.getEngineStop()) {
                    case .on:
                        Image(systemName: "lock.fill")
                            .foregroundColor(.systemRed)
                            .imageScale(.small)
                    case .off:
                        Image(systemName: "lock.open.fill")
                            .foregroundColor(.systemGreen)
                            .imageScale(.small)
                    default:
                        EmptyView()
                    }
                    
                    /* Device name */
                    Text(unit.device.name)
                    Spacer()
                }
                .padding(.bottom, 5.0)
                
                /* Driver */
                if let contact = unit.device.contact {
                    HStack {
                        Label(contact, systemImage: "person")
                            .labelStyle(SmallLabelStyle())
                        Spacer()
                    }
                }
                
                /* Speed */
                if let speed = unit.position?.speed {
                    HStack {
                        Label(Formatter.companion.formatSpeed(
                            speed: Double(truncating: speed),
                            unit: .kmh),
                              systemImage: "speedometer")
                            .labelStyle(SmallLabelStyle())
                        Spacer()
                    }
                }
                
                /* Address */
                if let address = unit.position?.address {
                    HStack {
                        Label(address, systemImage: "mappin.and.ellipse")
                            .labelStyle(SmallLabelStyle())
                        Spacer()
                    }
                }
                
                /* Hourmeter */
                if let hourmeter = unit.position?.attributes["hours"] {
                    if let hourmeter = Serialization.companion.longOrNull(json: hourmeter) {
                        HStack {
                            Label(Formatter.companion.formatHours(
                                millis: Int64(truncating: hourmeter)),
                                  systemImage: "timer")
                                .labelStyle(SmallLabelStyle())
                            Spacer()
                        }
                    }
                }
                
                /* Date time */
                if let datetime = unit.position?.fixTime {
                    HStack {
                        Label(Formatter.companion.formatDate(str: datetime),
                              systemImage: "calendar")
                            .labelStyle(SmallLabelStyle())
                        Spacer()
                    }
                }
            }
        }
        
        /* Device actions */
        if #available(iOS 15, *) {
            row.swipeActions(edge: .trailing, allowsFullSwipe: false) {
                Button { callback(.commands) } label: {
                    Label("commands", systemImage: "paperplane")
                }
                
                Button { callback(.reports) } label: {
                    Label("reports", systemImage: "clock")
                }
                
                Button { callback(.details) } label: {
                    Label("details", systemImage: "info.circle")
                }
            }
        } else {
            row.onLongPressGesture {
                self.isSheet = true
            }
            .actionSheet(isPresented: $isSheet) {
                ActionSheet(title: Text("select-action"), message: nil, buttons: [
                    .default(Text("details")) { callback(.details) },
                    .default(Text("reports")) { callback(.reports) },
                    .default(Text("commands")) { callback(.commands) }
                ])
            }
        }
    }
}