aboutsummaryrefslogtreecommitdiff
path: root/modern/src/reports/RouteReportPage.js
blob: 30272c49e33fc6228a71beef10912138fa6a1864 (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
import React, { useState } from 'react';
import { TableContainer, Table, TableRow, TableCell, TableHead, TableBody, Paper } from '@material-ui/core';
import t from '../common/localization';
import { formatPosition } from '../common/formatter';
import ReportFilter from './ReportFilter';
import ReportView from './ReportView';

const RouteReportPage = () => {

  const ReportFilterForm = ({ onResult }) => {

    const handleSubmit = async (deviceId, from, to) => {
      const query = new URLSearchParams({
        deviceId,
        from: from.toISOString(),
        to: to.toISOString(),
      });
      const response = await fetch(`/api/reports/route?${query.toString()}`, { headers: { Accept: 'application/json' } });
      if(response.ok) {
        onResult(await response.json());
      }
    }
    return <ReportFilter handleSubmit={handleSubmit} />;
  }

  const ReportListView = ({items}) => {
    
    return (
      <TableContainer component={Paper}>
        <Table>
          <TableHead>
            <TableRow>
              <TableCell>{t('positionFixTime')}</TableCell>
              <TableCell>{t('positionLatitude')}</TableCell>
              <TableCell>{t('positionLongitude')}</TableCell>
              <TableCell>{t('positionSpeed')}</TableCell>
              <TableCell>{t('positionAddress')}</TableCell>
            </TableRow>
          </TableHead>
          <TableBody>
            {items.map((item) => (
              <TableRow key={item.id}>
                <TableCell>{formatPosition(item, 'fixTime')}</TableCell>
                <TableCell>{formatPosition(item, 'latitude')}</TableCell>
                <TableCell>{formatPosition(item, 'longitude')}</TableCell>
                <TableCell>{formatPosition(item, 'speed')}</TableCell>
                <TableCell>{formatPosition(item, 'address')}</TableCell>
              </TableRow>
            ))}
          </TableBody>
        </Table>
      </TableContainer>
    );
  }

  return <ReportView reportFilterForm={ReportFilterForm} reportListView={ReportListView} />;
}

export default RouteReportPage;