From 18b9ba25a6342d958d99ff005ea08a5b085b2ce8 Mon Sep 17 00:00:00 2001 From: Iván Ávalos Date: Wed, 23 Feb 2022 21:43:52 -0600 Subject: Fixed commands not working. --- iosApp/iosApp/Details/Commands/UnitCommandsViewModel.swift | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/iosApp/iosApp/Details/Commands/UnitCommandsViewModel.swift b/iosApp/iosApp/Details/Commands/UnitCommandsViewModel.swift index d7298c4..8e1da00 100644 --- a/iosApp/iosApp/Details/Commands/UnitCommandsViewModel.swift +++ b/iosApp/iosApp/Details/Commands/UnitCommandsViewModel.swift @@ -21,6 +21,7 @@ import shared class UnitCommandsViewModel: ObservableObject { @Inject var commandsController: CommandsController + var deviceId: Int32? = nil @Published var commands = [Command]() @Published var selected: Command? @Published var selectedId: Int = 0 { @@ -29,6 +30,9 @@ class UnitCommandsViewModel: ObservableObject { Int(truncating: $0.id!) == selectedId }) { self.selected = selected + if let id = deviceId { + self.selected?.deviceId = KotlinInt(int: id) + } notSelected = false } else { self.selected = nil @@ -40,6 +44,7 @@ class UnitCommandsViewModel: ObservableObject { @Published var showConfirmation: Bool = false func fetchCommands(id: Int32) { + deviceId = id commandsController.fetchCommands(deviceId: id) { commands, error in print("We've got the commands! \(commands ?? [])") self.commands = commands ?? [] @@ -48,7 +53,12 @@ class UnitCommandsViewModel: ObservableObject { func sendCommand() { if let command = selected { - commandsController.sendCommand(command: command) { _, error in } + commandsController.sendCommand(command: command) { _, error in + if let error = error { + print("There is a fucking error") + print(error.localizedDescription) + } + } } } } -- cgit v1.2.3