From c14eda96bc3d7ebbd36f325d648087fdf4ae6572 Mon Sep 17 00:00:00 2001 From: Alexander Menk Date: Tue, 20 Dec 2016 08:41:59 +0100 Subject: #2702Implement setHearts for watch Protocol Using this function you can display a certain amount of hearts on the watch. Nothing more, nothing less. --- web/app/view/CommandDialogController.js | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'web/app/view/CommandDialogController.js') diff --git a/web/app/view/CommandDialogController.js b/web/app/view/CommandDialogController.js index ca503613..c719b5ee 100644 --- a/web/app/view/CommandDialogController.js +++ b/web/app/view/CommandDialogController.js @@ -30,6 +30,8 @@ Ext.define('Traccar.view.CommandDialogController', { selected.getValue() !== 'sendSms'); this.lookupReference('paramSetTimezone').setHidden( selected.getValue() !== 'setTimezone'); + this.lookupReference('paramSetHearts').setHidden( + selected.getValue() !== 'setHearts'); this.lookupReference('paramCustom').setHidden( selected.getValue() !== 'custom'); }, @@ -88,6 +90,14 @@ Ext.define('Traccar.view.CommandDialogController', { }); } + if (record.get('type') === 'setHearts') { + attributes = this.lookupReference('paramSetHearts'); + value = attributes.down('numberfield[name="hearts"]').getValue(); + record.set('attributes', { + hearts: value + }); + } + if (record.get('type') === 'custom') { value = this.lookupReference('paramCustom').getValue(); record.set('attributes', { -- cgit v1.2.3