diff options
author | Abyss777 <abyss@fox5.ru> | 2017-06-06 11:43:09 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2017-06-06 11:43:09 +0500 |
commit | f538963be5fcee2280b22050c8a51475c3a984f8 (patch) | |
tree | 6a08cb27c330480b60bb8fd160570e308802de0c /web/app/controller | |
parent | b6f2faab0d35d54189fefd7567b6310023c3ad7b (diff) | |
download | trackermap-web-f538963be5fcee2280b22050c8a51475c3a984f8.tar.gz trackermap-web-f538963be5fcee2280b22050c8a51475c3a984f8.tar.bz2 trackermap-web-f538963be5fcee2280b22050c8a51475c3a984f8.zip |
- Reworked fields and attributes formatting
- Convert position and reports fields in the model
- Add hidden columns to Route report
- Add Number attributes to possible chart types
Diffstat (limited to 'web/app/controller')
-rw-r--r-- | web/app/controller/Root.js | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/web/app/controller/Root.js b/web/app/controller/Root.js index 8d604b62..5d22a74a 100644 --- a/web/app/controller/Root.js +++ b/web/app/controller/Root.js @@ -26,7 +26,31 @@ Ext.define('Traccar.controller.Root', { ], init: function () { + var i, data, attribute, chartTypesStore = Ext.getStore('ReportChartTypes'); Ext.state.Manager.setProvider(new Ext.state.CookieProvider()); + data = Ext.getStore('PositionAttributes').getData().items; + for (i = 0; i < data.length; i++) { + attribute = data[i]; + Traccar.model.Position.addFields([{ + name: 'attribute.' + attribute.get('key'), + attributeKey: attribute.get('key'), + calculate: this.calculateAttribute, + persist: false + }]); + if (attribute.get('valueType') === 'number') { + chartTypesStore.add({ + key: 'attribute.' + attribute.get('key'), + name: attribute.get('name') + }); + } + } + }, + + calculateAttribute: function (data) { + var value = data.attributes[this.attributeKey]; + if (value !== undefined) { + return Traccar.AttributeFormatter.getAttributeConverter(this.attributeKey)(value); + } }, onLaunch: function () { |