/* * Copyright 2015 - 2017 Anton Tananaev (anton@traccar.org) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ Ext.define('Traccar.view.Devices', { extend: 'Ext.grid.Panel', xtype: 'devicesView', requires: [ 'Ext.grid.filters.Filters', 'Traccar.view.DevicesController', 'Traccar.view.EditToolbar' ], controller: 'devices', plugins: 'gridfilters', store: 'VisibleDevices', stateful: true, stateId: 'devices-grid', tbar: { componentCls: 'toolbar-header-style', items: [{ xtype: 'tbtext', html: Strings.deviceTitle, baseCls: 'x-panel-header-title-default' }, { xtype: 'tbfill' }, { xtype: 'button', disabled: true, handler: 'onAddClick', reference: 'toolbarAddButton', glyph: 'xf067@FontAwesome', tooltip: Strings.sharedAdd, tooltipType: 'title' }, { xtype: 'button', disabled: true, handler: 'onEditClick', reference: 'toolbarEditButton', glyph: 'xf040@FontAwesome', tooltip: Strings.sharedEdit, tooltipType: 'title' }, { xtype: 'button', disabled: true, handler: 'onRemoveClick', reference: 'toolbarRemoveButton', glyph: 'xf00d@FontAwesome', tooltip: Strings.sharedRemove, tooltipType: 'title' }, { xtype: 'button', disabled: true, handler: 'onGeofencesClick', reference: 'toolbarGeofencesButton', glyph: 'xf21d@FontAwesome', tooltip: Strings.sharedGeofences, tooltipType: 'title' }, { disabled: true, handler: 'onCommandClick', reference: 'deviceCommandButton', glyph: 'xf093@FontAwesome', tooltip: Strings.deviceCommand, tooltipType: 'title' }] }, listeners: { selectionchange: 'onSelectionChange' }, columns: { defaults: { flex: 2, minWidth: Traccar.Style.columnWidthNormal }, items: [{ text: Strings.sharedName, dataIndex: 'name', filter: 'string' }, { text: Strings.deviceIdentifier, dataIndex: 'uniqueId', hidden: true }, { text: Strings.sharedPhone, dataIndex: 'phone', hidden: true }, { text: Strings.deviceModel, dataIndex: 'model', hidden: true }, { text: Strings.deviceContact, dataIndex: 'contact', hidden: true }, { text: Strings.groupDialog, dataIndex: 'groupId', hidden: true, filter: { type: 'list', labelField: 'name', store: 'Groups' }, renderer: function (value) { var group; if (value !== 0) { group = Ext.getStore('Groups').getById(value); return group ? group.get('name') : value; } } }, { text: Strings.deviceLastUpdate, dataIndex: 'lastUpdate', renderer: function (value) { if (value) { if (Traccar.app.getPreference('twelveHourFormat', false)) { return Ext.Date.format(value, Traccar.Style.dateTimeFormat12); } else { return Ext.Date.format(value, Traccar.Style.dateTimeFormat24); } } } }, { text: Strings.deviceStatus, dataIndex: 'status', flex: 1, filter: { type: 'list', labelField: 'name', store: 'DeviceStatuses' }, renderer: function (value, metaData) { var status; if (value) { status = Ext.getStore('DeviceStatuses').getById(value); if (status) { metaData.tdCls = status.get('color'); return status.get('name'); } } } }] } });