diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2017-10-20 23:25:09 +1300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-20 23:25:09 +1300 |
commit | 1505033b1ddcc6ccfe6b82e783e776eea9fcbf80 (patch) | |
tree | 043b912159d87047e8572a3e966a7e3355ea1775 /web/app/view | |
parent | b60127b12fa878db7aecf35109e42f57eed34fe3 (diff) | |
parent | fa121daf1da238b0ae89e79986592b72279cb781 (diff) | |
download | etbsa-traccar-web-1505033b1ddcc6ccfe6b82e783e776eea9fcbf80.tar.gz etbsa-traccar-web-1505033b1ddcc6ccfe6b82e783e776eea9fcbf80.tar.bz2 etbsa-traccar-web-1505033b1ddcc6ccfe6b82e783e776eea9fcbf80.zip |
Merge pull request #605 from Abyss777/buffered_commands
Adapted to use buffered commands
Diffstat (limited to 'web/app/view')
-rw-r--r-- | web/app/view/dialog/SendCommandController.js | 3 | ||||
-rw-r--r-- | web/app/view/edit/DevicesController.js | 13 |
2 files changed, 7 insertions, 9 deletions
diff --git a/web/app/view/dialog/SendCommandController.js b/web/app/view/dialog/SendCommandController.js index 567be94..c635158 100644 --- a/web/app/view/dialog/SendCommandController.js +++ b/web/app/view/dialog/SendCommandController.js @@ -59,14 +59,13 @@ Ext.define('Traccar.view.dialog.SendCommandController', { } this.lookupReference('newCommandFields').setDisabled(command.getId() !== 0); - this.lookupReference('textChannelCheckBox').setDisabled(command.getId() !== 0 || !this.getView().online); this.lookupReference('sendButton').setDisabled(command.getId() === 0); }, onSendResult: function (options, success, response) { if (success) { this.closeView(); - Traccar.app.showToast(Strings.commandSent); + Traccar.app.showToast(response.status === 202 ? Strings.commandQueued : Strings.commandSent); } else { Traccar.app.showError(response); } diff --git a/web/app/view/edit/DevicesController.js b/web/app/view/edit/DevicesController.js index a4bbd4b..a0bf9dc 100644 --- a/web/app/view/edit/DevicesController.js +++ b/web/app/view/edit/DevicesController.js @@ -70,30 +70,29 @@ Ext.define('Traccar.view.edit.DevicesController', { }, onCommandClick: function () { - var device, deviceId, dialog, typesStore, online, commandsStore; + var device, deviceId, dialog, typesStore, commandsStore; device = this.getView().getSelectionModel().getSelection()[0]; - online = device.get('status') === 'online'; deviceId = device.get('id'); dialog = Ext.create('Traccar.view.dialog.SendCommand'); dialog.deviceId = deviceId; - dialog.online = online; commandsStore = dialog.lookupReference('commandsComboBox').getStore(); commandsStore.getProxy().setExtraParam('deviceId', deviceId); if (!Traccar.app.getPreference('limitCommands', false)) { commandsStore.add({ id: 0, - description: Strings.sharedNew, - textChannel: !online + description: Strings.sharedNew }); - typesStore = dialog.lookupReference('commandType').getStore(); - typesStore.getProxy().setExtraParam('deviceId', deviceId); } commandsStore.load({ addRecords: true }); + typesStore = dialog.lookupReference('commandType').getStore(); + typesStore.getProxy().setExtraParam('deviceId', deviceId); + typesStore.load(); + dialog.show(); }, |