aboutsummaryrefslogtreecommitdiff
path: root/iosApp/iosApp/Devices/DeviceRow.swift
diff options
context:
space:
mode:
Diffstat (limited to 'iosApp/iosApp/Devices/DeviceRow.swift')
-rw-r--r--iosApp/iosApp/Devices/DeviceRow.swift190
1 files changed, 117 insertions, 73 deletions
diff --git a/iosApp/iosApp/Devices/DeviceRow.swift b/iosApp/iosApp/Devices/DeviceRow.swift
index 5fc4e11..f8c8053 100644
--- a/iosApp/iosApp/Devices/DeviceRow.swift
+++ b/iosApp/iosApp/Devices/DeviceRow.swift
@@ -12,94 +12,138 @@ 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 {
- 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()
+ 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)
- /* 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()
+ /* Driver */
+ if let contact = unit.device.contact {
+ HStack {
+ Label(contact, systemImage: "person")
+ .labelStyle(SmallLabelStyle())
+ Spacer()
+ }
}
- /* 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()
+ }
}
- }
-
- /* 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()
+ }
}
- }
-
- /* 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()
+ }
+ }
}
- }
-
- /* Hourmeter */
- if let hourmeter = unit.position?.attributes["hours"] {
- if let hourmeter = Serialization.companion.longOrNull(json: hourmeter) {
+
+ /* Date time */
+ if let datetime = unit.position?.fixTime {
HStack {
- Label(Formatter.companion.formatHours(
- millis: Int64(truncating: hourmeter)),
- systemImage: "timer")
+ Label(Formatter.companion.formatDate(str: datetime),
+ systemImage: "calendar")
.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) }
+ ])
}
}
}