aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Menk <menk@mestrona.net>2016-12-20 08:41:59 +0100
committerAlexander Menk <menk@mestrona.net>2016-12-20 08:41:59 +0100
commitc14eda96bc3d7ebbd36f325d648087fdf4ae6572 (patch)
tree884db6f5f3f3206410ef81e60f6938a94db811c8
parenteea8e3cde73b7fe2640c6fe187ffb4d899381a60 (diff)
downloadetbsa-traccar-web-c14eda96bc3d7ebbd36f325d648087fdf4ae6572.tar.gz
etbsa-traccar-web-c14eda96bc3d7ebbd36f325d648087fdf4ae6572.tar.bz2
etbsa-traccar-web-c14eda96bc3d7ebbd36f325d648087fdf4ae6572.zip
#2702Implement setHearts for watch Protocol
Using this function you can display a certain amount of hearts on the watch. Nothing more, nothing less.
-rw-r--r--web/app/view/CommandDialog.js13
-rw-r--r--web/app/view/CommandDialogController.js10
-rw-r--r--web/l10n/de.json1
-rw-r--r--web/l10n/en.json1
4 files changed, 25 insertions, 0 deletions
diff --git a/web/app/view/CommandDialog.js b/web/app/view/CommandDialog.js
index cb6fed2..1450dc2 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 ca50361..c719b5e 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', {
diff --git a/web/l10n/de.json b/web/l10n/de.json
index e8c8671..c0b3653 100644
--- a/web/l10n/de.json
+++ b/web/l10n/de.json
@@ -145,6 +145,7 @@
"commandPhone": "Rufnummer",
"commandMessage": "Nachricht",
"commandTimezoneOffset": "Zeitverschiebung zu UTC",
+ "commandHearts": "Herzen / Blumen",
"eventAll": "Alle Ereignisse",
"eventDeviceOnline": "Gerät ist online",
"eventDeviceOffline": "Gerät ist offline",
diff --git a/web/l10n/en.json b/web/l10n/en.json
index e7ff00b..23b75de 100644
--- a/web/l10n/en.json
+++ b/web/l10n/en.json
@@ -145,6 +145,7 @@
"commandPhone": "Phone Number",
"commandMessage": "Message",
"commandTimezoneOffset": "Timezone Offset to UTC",
+ "commandHearts": "Hearts / Flowers",
"eventAll": "All Events",
"eventDeviceOnline": "Device is online",
"eventDeviceOffline": "Device is offline",