diff options
Diffstat (limited to 'web/app/view/report')
-rw-r--r-- | web/app/view/report/Report.js | 118 | ||||
-rw-r--r-- | web/app/view/report/ReportController.js | 79 |
2 files changed, 0 insertions, 197 deletions
diff --git a/web/app/view/report/Report.js b/web/app/view/report/Report.js deleted file mode 100644 index 720de698f..000000000 --- a/web/app/view/report/Report.js +++ /dev/null @@ -1,118 +0,0 @@ -/* - * Copyright 2015 Anton Tananaev (anton.tananaev@gmail.com) - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -Ext.define('Traccar.view.report.Report', { - extend: 'Ext.grid.Panel', - xtype: 'reportView', - - requires: [ - 'Traccar.view.report.ReportController' - ], - - controller: 'report', - store: 'Positions', - - title: strings.reportTitle, - - tbar: [{ - xtype: 'tbtext', - html: strings.reportDevice - }, { - xtype: 'combobox', - reference: 'deviceField', - store: 'Devices', - valueField: 'id', - displayField: 'name', - typeAhead: true, - queryMode: 'local' - }, '-', { - xtype: 'tbtext', - html: strings.reportFrom - }, { - xtype: 'datefield', - reference: 'fromDateField', - startDay: styles.weekStartDay, - value: new Date(new Date().getTime() - 30 * 60 * 1000) - }, { - xtype: 'timefield', - reference: 'fromTimeField', - maxWidth: styles.reportTime, - format: styles.timeFormat, - value: new Date(new Date().getTime() - 30 * 60 * 1000) - }, '-', { - xtype: 'tbtext', - html: strings.reportTo - }, { - xtype: 'datefield', - reference: 'toDateField', - startDay: styles.weekStartDay, - value: new Date() - }, { - xtype: 'timefield', - reference: 'toTimeField', - maxWidth: styles.reportTime, - format: styles.timeFormat, - value: new Date() - }, '-', { - text: strings.reportShow, - handler: 'onShowClick' - }, { - text: strings.reportClear, - handler: 'onClearClick' - }], - - listeners: { - selectionchange: 'onSelectionChange' - }, - - columns: [{ - text: strings.positionValid, - dataIndex: 'valid', - flex: 1, - renderer: Traccar.AttributeFormatter.getFormatter('valid') - }, { - text: strings.positionTime, - dataIndex: 'fixTime', - flex: 1, - xtype: 'datecolumn', - renderer: Traccar.AttributeFormatter.getFormatter('fixTime') - }, { - text: strings.positionLatitude, - dataIndex: 'latitude', - flex: 1, - renderer: Traccar.AttributeFormatter.getFormatter('latitude') - }, { - text: strings.positionLongitude, - dataIndex: 'longitude', - flex: 1, - renderer: Traccar.AttributeFormatter.getFormatter('latitude') - }, { - text: strings.positionAltitude, - dataIndex: 'altitude', - flex: 1, - renderer: Traccar.AttributeFormatter.getFormatter('altitude') - }, { - text: strings.positionSpeed, - dataIndex: 'speed', - flex: 1, - renderer: Traccar.AttributeFormatter.getFormatter('speed') - }, { - text: strings.positionAddress, - dataIndex: 'address', - flex: 1, - renderer: Traccar.AttributeFormatter.getFormatter('address') - }] -}); diff --git a/web/app/view/report/ReportController.js b/web/app/view/report/ReportController.js deleted file mode 100644 index 64c89867d..000000000 --- a/web/app/view/report/ReportController.js +++ /dev/null @@ -1,79 +0,0 @@ -/* - * Copyright 2015 Anton Tananaev (anton.tananaev@gmail.com) - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -Ext.define('Traccar.view.report.ReportController', { - extend: 'Ext.app.ViewController', - alias: 'controller.report', - - config: { - listen: { - controller: { - '*': { - selectDevice: 'selectDevice' - } - } - } - }, - - onShowClick: function() { - var deviceId = this.lookupReference('deviceField').getValue(); - - var fromDate = this.lookupReference('fromDateField').getValue(); - var fromTime = this.lookupReference('fromTimeField').getValue(); - - var from = new Date( - fromDate.getFullYear(), fromDate.getMonth(), fromDate.getDate(), - fromTime.getHours(), fromTime.getMinutes(), fromTime.getSeconds(), fromTime.getMilliseconds()); - - var toDate = this.lookupReference('toDateField').getValue(); - var toTime = this.lookupReference('toTimeField').getValue(); - - var to = new Date( - toDate.getFullYear(), toDate.getMonth(), toDate.getDate(), - toTime.getHours(), toTime.getMinutes(), toTime.getSeconds(), toTime.getMilliseconds()); - - var store = Ext.getStore('Positions'); - store.load({ - params:{ - deviceId: deviceId, - from: from.toISOString(), - to: to.toISOString() - }, - scope: this, - callback: function() { - this.fireEvent("reportShow"); - } - }); - }, - - onClearClick: function() { - Ext.getStore('Positions').removeAll(); - this.fireEvent("reportClear"); - }, - - onSelectionChange: function(selected) { - if (selected.getCount() > 0) { - this.fireEvent("selectReport", selected.getLastSelected()); - } - }, - - selectDevice: function(device) { - if (device !== undefined) { - this.getView().getSelectionModel().deselectAll(); - } - } - -}); |