diff options
Diffstat (limited to 'web/app')
-rw-r--r-- | web/app/view/CommandDialog.js | 13 | ||||
-rw-r--r-- | web/app/view/CommandDialogController.js | 10 |
2 files changed, 23 insertions, 0 deletions
diff --git a/web/app/view/CommandDialog.js b/web/app/view/CommandDialog.js index cb6fed22..1450dc28 100644 --- a/web/app/view/CommandDialog.js +++ b/web/app/view/CommandDialog.js @@ -104,6 +104,19 @@ Ext.define('Traccar.view.CommandDialog', { maxValue: +14 }] }, { + xtype: 'fieldcontainer', + reference: 'paramSetHearts', + name: 'attributes', + hidden: true, + + items: [{ + xtype: 'numberfield', + fieldLabel: Strings.commandHearts, + name: 'hearts', + minValue: 0, + maxValue: 99 + }] + }, { xtype: 'textfield', reference: 'paramCustom', fieldLabel: Strings.commandCustom, 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', { |