aboutsummaryrefslogtreecommitdiff
path: root/modern/src/reports/ChartReportPage.js
blob: 689893318f8c42ee710551f0c96291c7bd1694e6 (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
import React, { useState } from 'react';
import { Card, CardHeader, CardContent } from '@material-ui/core';
import { Box, Divider } from '@material-ui/core';
import { makeStyles } from '@material-ui/core/styles';
import ReportFilter from './ReportFilter';
import ReportLayoutPage from './ReportLayoutPage';
import ChartType from './ChartType';

import {LineChart, Line, XAxis, YAxis, CartesianGrid, Tooltip, Legend, ResponsiveContainer } from 'recharts';

const useStyles = makeStyles((theme) => ({
  formControl: {
    minWidth: 160,
  },
}));

const ReportFilterForm = ({ setItems }) => {

  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 {
          window.location.assign(window.URL.createObjectURL(await response.blob()));
        }
      }
    }
  };

  return <ReportFilter handleSubmit={handleSubmit} showOnly />;
};

const CustomizedAxisTick = ({ x, y, stroke, payload }) =>{
  return (
    <g transform={`translate(${x},${y})`}>
      <text x={0} y={0} dy={16} textAnchor="end" fill="#666" transform="rotate(-35)">{payload.value}</text>
    </g>
  );
}

const ChartReportPage = () => {

  const [items, setItems] = useState([]);
  const [type, setType] = useState('speed');

  return (
    <ReportLayoutPage reportFilterForm={ReportFilterForm} setItems={setItems} >
      <Card>
        <CardHeader action={<ChartType type={type} setType={setType}/>} />
        <Divider />
        <CardContent>
          <Box height={400} position="relative">
            <ResponsiveContainer>
              <LineChart data={items}>
                <XAxis dataKey="fixTime" interval="preserveStartEnd" height={60} tick={<CustomizedAxisTick/>} />
                <YAxis />
                <CartesianGrid strokeDasharray="3 3" />
                <Tooltip />
                <Legend />
                <Line type="monotone" dataKey={type} stroke="#8884d8" />
              </LineChart>
            </ResponsiveContainer>
            </Box>
        </CardContent>
      </Card>
    </ReportLayoutPage>
  );
}

export default ChartReportPage;