aboutsummaryrefslogtreecommitdiff
path: root/legacy/web/app/view/Statistics.js
diff options
context:
space:
mode:
authorAnton Tananaev <anton@traccar.org>2024-04-06 09:17:52 -0700
committerAnton Tananaev <anton@traccar.org>2024-04-06 09:17:52 -0700
commitb392a4af78e01c8e0f50aad5468e9583675b24be (patch)
tree0a4fd7c4ee020e0829817853469979d4e998a69a /legacy/web/app/view/Statistics.js
parent94cadecda794358a53995c276697919eaf540466 (diff)
downloadtrackermap-web-b392a4af78e01c8e0f50aad5468e9583675b24be.tar.gz
trackermap-web-b392a4af78e01c8e0f50aad5468e9583675b24be.tar.bz2
trackermap-web-b392a4af78e01c8e0f50aad5468e9583675b24be.zip
Move to the legacy folder
Diffstat (limited to 'legacy/web/app/view/Statistics.js')
-rw-r--r--legacy/web/app/view/Statistics.js93
1 files changed, 93 insertions, 0 deletions
diff --git a/legacy/web/app/view/Statistics.js b/legacy/web/app/view/Statistics.js
new file mode 100644
index 00000000..af199a02
--- /dev/null
+++ b/legacy/web/app/view/Statistics.js
@@ -0,0 +1,93 @@
+/*
+ * Copyright 2016 - 2017 Anton Tananaev (anton@traccar.org)
+ *
+ * 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.Statistics', {
+ extend: 'Traccar.view.GridPanel',
+ xtype: 'statisticsView',
+
+ requires: [
+ 'Traccar.view.StatisticsController'
+ ],
+
+ controller: 'statistics',
+ store: 'Statistics',
+
+ tbar: {
+ scrollable: true,
+ items: [{
+ xtype: 'tbtext',
+ html: Strings.reportFrom
+ }, {
+ xtype: 'datefield',
+ reference: 'fromDateField',
+ startDay: Traccar.Style.weekStartDay,
+ format: Traccar.Style.dateFormat,
+ value: new Date(new Date().getTime() - 24 * 60 * 60 * 1000)
+ }, '-', {
+ xtype: 'tbtext',
+ html: Strings.reportTo
+ }, {
+ xtype: 'datefield',
+ reference: 'toDateField',
+ startDay: Traccar.Style.weekStartDay,
+ format: Traccar.Style.dateFormat,
+ value: new Date()
+ }, '-', {
+ text: Strings.reportShow,
+ handler: 'onShowClick'
+ }]
+ },
+
+ columns: {
+ defaults: {
+ flex: 1,
+ minWidth: Traccar.Style.columnWidthNormal
+ },
+ items: [{
+ text: Strings.statisticsCaptureTime,
+ dataIndex: 'captureTime',
+ xtype: 'datecolumn',
+ renderer: Traccar.AttributeFormatter.defaultFormatter()
+ }, {
+ text: Strings.statisticsActiveUsers,
+ dataIndex: 'activeUsers'
+ }, {
+ text: Strings.statisticsActiveDevices,
+ dataIndex: 'activeDevices'
+ }, {
+ text: Strings.statisticsRequests,
+ dataIndex: 'requests'
+ }, {
+ text: Strings.statisticsMessagesReceived,
+ dataIndex: 'messagesReceived'
+ }, {
+ text: Strings.statisticsMessagesStored,
+ dataIndex: 'messagesStored'
+ }, {
+ text: Strings.notificatorMail,
+ dataIndex: 'mailSent'
+ }, {
+ text: Strings.notificatorSms,
+ dataIndex: 'smsSent'
+ }, {
+ text: Strings.statisticsGeocoder,
+ dataIndex: 'geocoderRequests'
+ }, {
+ text: Strings.statisticsGeolocation,
+ dataIndex: 'geolocationRequests'
+ }]
+ }
+});