aboutsummaryrefslogtreecommitdiff
path: root/modern/src/reports/RouteReportPage.js
blob: 55f66578c2ed683d544cfb242007ffb5258028e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
import React, { useState, useRef } from 'react';
import { Paper } from '@material-ui/core';
import { DataGrid } from '@material-ui/data-grid';
import { useTheme } from '@material-ui/core/styles';
import {
  formatDistance, formatSpeed, formatBoolean, formatDate, formatCoordinate,
} from '../common/formatter';
import ReportFilter from './ReportFilter';
import ReportLayout from './ReportLayout';
import { useAttributePreference, usePreference } from '../common/preferences';
import { useTranslation } from '../LocalizationProvider';

const Filter = ({ setItems }) => {
  const inputElement = useRef();
  const [data, setData] = useState({url: '', filename: ''});
  
  const handleSubmit = async (deviceId, from, to, mail, headers) => {
    const query = new URLSearchParams({
      deviceId, from, to, mail,
    });
    const response = await fetch(`/api/reports/route?${query.toString()}`, { headers });
    if (response.ok) {
      const contentType = response.headers.get('content-type');
      if (contentType) {
        if (contentType === 'application/json') {
          setItems(await response.json());
        } else {
          // Copied from /web/app/view/ReportController.js (but without Ext)
          const disposition = response.headers.get('content-disposition');
          const filename = disposition.slice(disposition.indexOf('=') + 1, disposition.length);
          const blob = new Blob([await response.blob()], { type: contentType });
          if (typeof window.navigator.msSaveBlob !== 'undefined') {
            // IE workaround
            window.navigator.msSaveBlob(blob, filename);
          } else {
            const url = window.URL || window.webkitURL;
            const downloadUrl = url.createObjectURL(blob);
            if (filename) {
              setData({url: downloadUrl, filename: filename});
              setTimeout(() => {
                inputElement.current.click();
              }, 100);
            }
            setTimeout(() => {
              url.revokeObjectURL(downloadUrl);
            }, 100);
          }
        }
      }
    }
  };

  return (
    <>
        <a style={{display: 'none'}}
           href={data.url}
           download={data.filename}
           ref={inputElement}
        />
        <ReportFilter handleSubmit={handleSubmit} />
    </>
  );
};



const RouteReportPage = () => {
  const theme = useTheme();
  const t = useTranslation();

  const distanceUnit = useAttributePreference('distanceUnit');
  const speedUnit = useAttributePreference('speedUnit');
  const coordinateFormat = usePreference('coordinateFormat');

  const columns = [{
    headerName: t('positionFixTime'),
    field: 'fixTime',
    type: 'dateTime',
    width: theme.dimensions.columnWidthDate,
    valueFormatter: ({ value }) => formatDate(value),
  }, {
    headerName: t('positionIgnition'),
    field: 'ignition',
    type: 'boolean',
    width: theme.dimensions.columnWidthBoolean,
    valueGetter: ({ row }) => row.attributes.ignition,
    valueFormatter: ({ value }) => formatBoolean(value, t),
  }, {
    headerName: t('positionLatitude'),
    field: 'latitude',
    type: 'number',
    hide: true,
    width: theme.dimensions.columnWidthNumber,
    valueFormatter: ({ value }) => formatCoordinate('latitude', value, coordinateFormat),
  }, {
    headerName: t('positionLongitude'),
    field: 'longitude',
    type: 'number',
    hide: true,
    width: theme.dimensions.columnWidthNumber,
    valueFormatter: ({ value }) => formatCoordinate('longitude', value, coordinateFormat),
  }, {
    headerName: t('positionSpeed'),
    field: 'speed',
    type: 'number',
    width: theme.dimensions.columnWidthNumber,
    valueFormatter: ({ value }) => formatSpeed(value, speedUnit, t),
  }, {
    headerName: t('positionAddress'),
    field: 'address',
    type: 'string',
    width: theme.dimensions.columnWidthString,
  }, {
    headerName: t('deviceTotalDistance'),
    field: 'totalDistance',
    type: 'number',
    hide: true,
    width: theme.dimensions.columnWidthNumber,
    valueGetter: ({ row }) => row.attributes.totalDistance,
    valueFormatter: ({ value }) => formatDistance(value, distanceUnit, t),
  }];

  const [items, setItems] = useState([]);

  return (
    <ReportLayout filter={<Filter setItems={setItems} />}>
      <Paper>
        <DataGrid
          rows={items}
          columns={columns}
          hideFooter
          autoHeight
        />
      </Paper>
    </ReportLayout>
  );
};

export default RouteReportPage;