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
|
import React, { useState } from 'react';
import MainToolbar from '../MainToolbar';
import { Grid, TableContainer, Table, TableRow, TableCell, TableHead, TableBody, Paper, makeStyles } from '@material-ui/core';
import t from '../common/localization';
import { formatPosition } from '../common/formatter';
import ReportFilter from './ReportFilter';
const useStyles = makeStyles(theme => ({
root: {
height: '100%',
display: 'flex',
flexDirection: 'column',
},
content: {
flex: 1,
overflow: 'auto',
padding: theme.spacing(2),
},
form: {
padding: theme.spacing(1, 2, 2),
},
}));
const EventReportPage = () => {
const classes = useStyles();
const [data, setData] = useState([]);
const handleSubmit = (deviceId, from, to) => {
const query = new URLSearchParams({
deviceId,
from: from.toISOString(),
to: to.toISOString(),
});
fetch(`/api/reports/events?${query.toString()}`, { headers: { Accept: 'application/json' } })
.then((response) => {
if (response.ok) {
response.json().then(setData);
}
});
}
return (
<div className={classes.root}>
<MainToolbar />
<div className={classes.content}>
<Grid container spacing={2}>
<Grid item xs={12} md={3} lg={2}>
<Paper className={classes.form}>
<ReportFilter handleSubmit={handleSubmit} />
</Paper>
</Grid>
<Grid item xs={12} md={9} lg={10}>
<TableContainer component={Paper}>
<Table>
<TableHead>
<TableRow>
<TableCell>{t('positionFixTime')}</TableCell>
<TableCell>{t('sharedType')}</TableCell>
<TableCell>{t('sharedGeofence')}</TableCell>
<TableCell>{t('sharedMaintenance')}</TableCell>
</TableRow>
</TableHead>
<TableBody>
{data.map((item) => (
<TableRow key={item.id}>
<TableCell>
{formatPosition(item, 'serverTime')}
</TableCell>
<TableCell>{item.type}</TableCell>
<TableCell>{}</TableCell>
<TableCell>{}</TableCell>
</TableRow>
))}
</TableBody>
</Table>
</TableContainer>
</Grid>
</Grid>
</div>
</div>
);
}
export default EventReportPage;
|