aboutsummaryrefslogtreecommitdiff
path: root/modern/src/reports
diff options
context:
space:
mode:
Diffstat (limited to 'modern/src/reports')
-rw-r--r--modern/src/reports/DailySummaryReportPage.js68
-rw-r--r--modern/src/reports/StopReportPage.js62
-rw-r--r--modern/src/reports/SummaryReportPage.js76
-rw-r--r--modern/src/reports/TripReportPage.js67
4 files changed, 273 insertions, 0 deletions
diff --git a/modern/src/reports/DailySummaryReportPage.js b/modern/src/reports/DailySummaryReportPage.js
new file mode 100644
index 0000000..c628a9b
--- /dev/null
+++ b/modern/src/reports/DailySummaryReportPage.js
@@ -0,0 +1,68 @@
+import React, { useState } from 'react';
+import { TableContainer, Table, TableRow, TableCell, TableHead, TableBody, Paper } from '@material-ui/core';
+import t from '../common/localization';
+import { formatDistance, formatHours, formatDate, formatSpeed, formatVolume } 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(),
+ daily: true
+ });
+ const response = await fetch(`/api/reports/summary?${query.toString()}`, { headers: { Accept: 'application/json' } });
+ if (response.ok) {
+ onResult(await response.json());
+ }
+ }
+ return <ReportFilter handleSubmit={handleSubmit} />;
+}
+
+const DailySummaryReportPage = () => {
+
+ 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('reportStartDate')}</TableCell>
+ <TableCell>{t('sharedDistance')}</TableCell>
+ <TableCell>{t('reportStartOdometer')}</TableCell>
+ <TableCell>{t('reportEndOdometer')}</TableCell>
+ <TableCell>{t('reportAverageSpeed')}</TableCell>
+ <TableCell>{t('reportMaximumSpeed')}</TableCell>
+ <TableCell>{t('reportEngineHours')}</TableCell>
+ <TableCell>{t('reportSpentFuel')}</TableCell>
+ </TableRow>
+ </TableHead>
+ <TableBody>
+ {items.map((item) => (
+ <TableRow key={item.id}>
+ <TableCell>{formatDate(item.startTime, 'YYYY-MM-DD')}</TableCell>
+ <TableCell>{formatDistance(item.distance, distanceUnit)}</TableCell>
+ <TableCell>{formatDistance(item.startOdometer, distanceUnit)}</TableCell>
+ <TableCell>{formatDistance(item.endOdometer, distanceUnit)}</TableCell>
+ <TableCell>{formatSpeed(item.averageSpeed, speedUnit)}</TableCell>
+ <TableCell>{formatSpeed(item.maxSpeed, speedUnit)}</TableCell>
+ <TableCell>{formatHours(item.engineHours)}</TableCell>
+ <TableCell>{formatVolume(item.spentFuel)}</TableCell>
+ </TableRow>
+ ))}
+ </TableBody>
+ </Table>
+ </TableContainer>
+ </ReportLayoutPage>
+ );
+}
+
+export default DailySummaryReportPage;
diff --git a/modern/src/reports/StopReportPage.js b/modern/src/reports/StopReportPage.js
new file mode 100644
index 0000000..c9e50c8
--- /dev/null
+++ b/modern/src/reports/StopReportPage.js
@@ -0,0 +1,62 @@
+import React, { useState } from 'react';
+import { TableContainer, Table, TableRow, TableCell, TableHead, TableBody, Paper } from '@material-ui/core';
+import t from '../common/localization';
+import { formatDistance, formatHours, formatDate, formatVolume } 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/stops?${query.toString()}`, { headers: { Accept: 'application/json' } });
+ if (response.ok) {
+ onResult(await response.json());
+ }
+ }
+ return <ReportFilter handleSubmit={handleSubmit} />;
+}
+
+const StopReportPage = () => {
+
+ const distanceUnit = useAttributePreference('distanceUnit');
+ const [items, setItems] = useState([]);
+
+ return (
+ <ReportLayoutPage reportFilterForm={ReportFilterForm} setItems={setItems}>
+ <TableContainer component={Paper}>
+ <Table>
+ <TableHead>
+ <TableRow>
+ <TableCell>{t('reportStartTime')}</TableCell>
+ <TableCell>{t('positionOdometer')}</TableCell>
+ <TableCell>{t('reportEndTime')}</TableCell>
+ <TableCell>{t('reportDuration')}</TableCell>
+ <TableCell>{t('reportEngineHours')}</TableCell>
+ <TableCell>{t('reportSpentFuel')}</TableCell>
+ </TableRow>
+ </TableHead>
+ <TableBody>
+ {items.map((item) => (
+ <TableRow key={item.id}>
+ <TableCell>{formatDate(item.startTime)}</TableCell>
+ <TableCell>{formatDistance(item.startOdometer, distanceUnit)}</TableCell>
+ <TableCell>{formatDate(item.endTime)}</TableCell>
+ <TableCell>{formatHours(item.duration)}</TableCell>
+ <TableCell>{formatHours(item.engineHours)}</TableCell>
+ <TableCell>{formatVolume(item.spentFuel)}</TableCell>
+ </TableRow>
+ ))}
+ </TableBody>
+ </Table>
+ </TableContainer>
+ </ReportLayoutPage>
+ );
+}
+
+export default StopReportPage;
diff --git a/modern/src/reports/SummaryReportPage.js b/modern/src/reports/SummaryReportPage.js
new file mode 100644
index 0000000..c90ddb4
--- /dev/null
+++ b/modern/src/reports/SummaryReportPage.js
@@ -0,0 +1,76 @@
+import React, { useState } from 'react';
+import { TableContainer, Table, TableRow, TableCell, TableHead, TableBody, Paper, FormControlLabel, Checkbox } from '@material-ui/core';
+import t from '../common/localization';
+import { formatDistance, formatHours, formatDate, formatSpeed, formatVolume } from '../common/formatter';
+import ReportFilter from './ReportFilter';
+import ReportLayoutPage from './ReportLayoutPage';
+import { useAttributePreference } from '../common/preferences';
+
+const ReportFilterForm = ({ onResult }) => {
+
+ const [daily, setDaily] = useState(false);
+
+ const handleSubmit = async (deviceId, from, to) => {
+ const query = new URLSearchParams({
+ deviceId,
+ from: from.toISOString(),
+ to: to.toISOString(),
+ daily
+ });
+ const response = await fetch(`/api/reports/summary?${query.toString()}`, { headers: { Accept: 'application/json' } });
+ if (response.ok) {
+ onResult(await response.json());
+ }
+ }
+ return (
+ <ReportFilter handleSubmit={handleSubmit}>
+ <FormControlLabel
+ control={<Checkbox checked={daily} onChange={event => setDaily(event.target.checked)} />}
+ label={t('reportDaily')} />
+ </ReportFilter>
+ );
+}
+
+const SummaryReportPage = () => {
+
+ 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('reportStartDate')}</TableCell>
+ <TableCell>{t('sharedDistance')}</TableCell>
+ <TableCell>{t('reportStartOdometer')}</TableCell>
+ <TableCell>{t('reportEndOdometer')}</TableCell>
+ <TableCell>{t('reportAverageSpeed')}</TableCell>
+ <TableCell>{t('reportMaximumSpeed')}</TableCell>
+ <TableCell>{t('reportEngineHours')}</TableCell>
+ <TableCell>{t('reportSpentFuel')}</TableCell>
+ </TableRow>
+ </TableHead>
+ <TableBody>
+ {items.map((item) => (
+ <TableRow key={item.id}>
+ <TableCell>{formatDate(item.startTime, 'YYYY-MM-DD')}</TableCell>
+ <TableCell>{formatDistance(item.distance, distanceUnit)}</TableCell>
+ <TableCell>{formatDistance(item.startOdometer, distanceUnit)}</TableCell>
+ <TableCell>{formatDistance(item.endOdometer, distanceUnit)}</TableCell>
+ <TableCell>{formatSpeed(item.averageSpeed, speedUnit)}</TableCell>
+ <TableCell>{formatSpeed(item.maxSpeed, speedUnit)}</TableCell>
+ <TableCell>{formatHours(item.engineHours)}</TableCell>
+ <TableCell>{formatVolume(item.spentFuel)}</TableCell>
+ </TableRow>
+ ))}
+ </TableBody>
+ </Table>
+ </TableContainer>
+ </ReportLayoutPage>
+ );
+}
+
+export default SummaryReportPage;
diff --git a/modern/src/reports/TripReportPage.js b/modern/src/reports/TripReportPage.js
new file mode 100644
index 0000000..15e21f5
--- /dev/null
+++ b/modern/src/reports/TripReportPage.js
@@ -0,0 +1,67 @@
+import React, { useState } from 'react';
+import { TableContainer, Table, TableRow, TableCell, TableHead, TableBody, Paper } from '@material-ui/core';
+import t from '../common/localization';
+import { formatDistance, formatSpeed, formatHours, formatDate } 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>{formatDate(item.startTime)}</TableCell>
+ <TableCell>{formatDistance(item.startOdometer, distanceUnit)}</TableCell>
+ <TableCell>{formatDate(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;