diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2017-03-29 21:56:33 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2017-03-29 21:56:33 +1300 |
commit | 0a35d3a7c4aa2968e2b8d4b73cfbd486c9fc625b (patch) | |
tree | 7f1623354cc52d2232398e8adc7e17b31d088f81 /web/app/view/edit/Devices.js | |
parent | 86f54b5db9269d0ba010a22e281b379bdae3751f (diff) | |
download | trackermap-web-0a35d3a7c4aa2968e2b8d4b73cfbd486c9fc625b.tar.gz trackermap-web-0a35d3a7c4aa2968e2b8d4b73cfbd486c9fc625b.tar.bz2 trackermap-web-0a35d3a7c4aa2968e2b8d4b73cfbd486c9fc625b.zip |
More devices table improvements
Diffstat (limited to 'web/app/view/edit/Devices.js')
-rw-r--r-- | web/app/view/edit/Devices.js | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/web/app/view/edit/Devices.js b/web/app/view/edit/Devices.js index 9393b432..42291f0b 100644 --- a/web/app/view/edit/Devices.js +++ b/web/app/view/edit/Devices.js @@ -90,7 +90,7 @@ Ext.define('Traccar.view.edit.Devices', { columns: { defaults: { - flex: 2, + flex: 1, minWidth: Traccar.Style.columnWidthNormal }, items: [{ @@ -132,7 +132,6 @@ Ext.define('Traccar.view.edit.Devices', { }, { text: Strings.deviceStatus, dataIndex: 'status', - flex: 1, filter: { type: 'list', labelField: 'name', @@ -151,7 +150,27 @@ Ext.define('Traccar.view.edit.Devices', { }, { text: Strings.deviceLastUpdate, dataIndex: 'lastUpdate', - renderer: Traccar.AttributeFormatter.getFormatter('lastUpdate') + renderer: function (value, metaData, record) { + var status, seconds, interval; + + status = record.get('status'); + if (status) { + metaData.tdCls = Ext.getStore('DeviceStatuses').getById(status).get('color'); + } + + if (value) { + seconds = Math.floor((new Date() - value) / 1000); + interval = Math.floor(seconds / 86400); + if (interval > 1) { + return interval + ' ' + Strings.sharedDays; + } + interval = Math.floor(seconds / 3600); + if (interval > 1) { + return interval + ' ' + Strings.sharedHours; + } + return Math.floor(seconds / 60) + ' ' + Strings.sharedMinutes; + } + } }] } }); |