diff options
author | Ashutosh Bishnoi <mail2bishnoi@gmail.com> | 2020-11-12 16:03:33 +0530 |
---|---|---|
committer | Ashutosh Bishnoi <mail2bishnoi@gmail.com> | 2020-11-12 16:03:33 +0530 |
commit | d7bfb9ac6fabf09f4675ea58bc58e12dbd04eee9 (patch) | |
tree | 6bd72c1b2a353740cfa4db24288ec906b6a8eaa8 /modern/src/reports/TripReportPage.js | |
parent | 2ead5e0a6ab859ac3436f378a1fec126e493c69b (diff) | |
download | trackermap-web-d7bfb9ac6fabf09f4675ea58bc58e12dbd04eee9.tar.gz trackermap-web-d7bfb9ac6fabf09f4675ea58bc58e12dbd04eee9.tar.bz2 trackermap-web-d7bfb9ac6fabf09f4675ea58bc58e12dbd04eee9.zip |
Implementing Trip Report with attribute formating
Diffstat (limited to 'modern/src/reports/TripReportPage.js')
-rw-r--r-- | modern/src/reports/TripReportPage.js | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/modern/src/reports/TripReportPage.js b/modern/src/reports/TripReportPage.js new file mode 100644 index 00000000..89f22408 --- /dev/null +++ b/modern/src/reports/TripReportPage.js @@ -0,0 +1,65 @@ +import React, { useState } from 'react'; +import { TableContainer, Table, TableRow, TableCell, TableHead, TableBody, Paper } from '@material-ui/core'; +import t from '../common/localization'; +import { formatPosition, formatDistance, formatSpeed, formatHours } from '../common/formatter'; +import ReportFilter from './ReportFilter'; +import ReportLayoutPage from './ReportLayoutPage'; +import { useAttributePreference } from '../common/preferences'; + +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/trips?${query.toString()}`, { headers: { Accept: 'application/json' } }); + if(response.ok) { + onResult(await response.json()); + } + } + return <ReportFilter handleSubmit={handleSubmit} />; +} + +const TripReportPage = () => { + const distanceUnit = useAttributePreference('distanceUnit'); + const speedUnit = useAttributePreference('speedUnit'); + const [items, setItems] = useState([]); + return ( + <ReportLayoutPage reportFilterForm={ReportFilterForm} setItems={setItems}> + <TableContainer component={Paper}> + <Table> + <TableHead> + <TableRow> + <TableCell>{t('reportStartTime')}</TableCell> + <TableCell>{t('reportStartOdometer')}</TableCell> + <TableCell>{t('reportEndTime')}</TableCell> + <TableCell>{t('reportEndOdometer')}</TableCell> + <TableCell>{t('sharedDistance')}</TableCell> + <TableCell>{t('reportAverageSpeed')}</TableCell> + <TableCell>{t('reportMaximumSpeed')}</TableCell> + <TableCell>{t('reportDuration')}</TableCell> + </TableRow> + </TableHead> + <TableBody> + {items.map((item) => ( + <TableRow key={item.id}> + <TableCell>{formatPosition(item, 'startTime')}</TableCell> + <TableCell>{formatDistance(item.startOdometer, distanceUnit)}</TableCell> + <TableCell>{formatPosition(item, 'endTime')}</TableCell> + <TableCell>{formatDistance(item.endOdometer, distanceUnit)}</TableCell> + <TableCell>{formatDistance(item.distance, distanceUnit)}</TableCell> + <TableCell>{formatSpeed(item.averageSpeed, speedUnit)}</TableCell> + <TableCell>{formatSpeed(item.maxSpeed, speedUnit)}</TableCell> + <TableCell>{formatHours(item.duration)}</TableCell> + </TableRow> + ))} + </TableBody> + </Table> + </TableContainer> + </ReportLayoutPage> + ); +} + +export default TripReportPage; |