aboutsummaryrefslogtreecommitdiff
path: root/modern/src/reports/RouteReportPage.js
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2020-11-14 16:13:58 -0800
committerAnton Tananaev <anton.tananaev@gmail.com>2020-11-14 16:13:58 -0800
commitec8fed96e394ff252c7e98bed1ca2e5322ad650a (patch)
tree447c6e6946935047763bc2dd8cb50ae8c5ea4fbe /modern/src/reports/RouteReportPage.js
parentbcef1fda0756f0ef1afbb53c26f6cbab4dcfeba8 (diff)
downloadetbsa-traccar-web-ec8fed96e394ff252c7e98bed1ca2e5322ad650a.tar.gz
etbsa-traccar-web-ec8fed96e394ff252c7e98bed1ca2e5322ad650a.tar.bz2
etbsa-traccar-web-ec8fed96e394ff252c7e98bed1ca2e5322ad650a.zip
More cleanup
Diffstat (limited to 'modern/src/reports/RouteReportPage.js')
-rw-r--r--modern/src/reports/RouteReportPage.js11
1 files changed, 4 insertions, 7 deletions
diff --git a/modern/src/reports/RouteReportPage.js b/modern/src/reports/RouteReportPage.js
index 0f8d98a..d2a1b68 100644
--- a/modern/src/reports/RouteReportPage.js
+++ b/modern/src/reports/RouteReportPage.js
@@ -8,21 +8,18 @@ import ReportLayoutPage from './ReportLayoutPage';
const ReportFilterForm = ({ onResult }) => {
const handleSubmit = async (deviceId, from, to) => {
- const query = new URLSearchParams({
- deviceId,
- from: from.toISOString(),
- to: to.toISOString(),
- });
+ const query = new URLSearchParams({ deviceId, from, to });
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 RouteReportPage = () => {
const [items, setItems] = useState([]);
+
return (
<ReportLayoutPage reportFilterForm={ReportFilterForm} setItems={setItems}>
<TableContainer component={Paper}>
@@ -51,6 +48,6 @@ const RouteReportPage = () => {
</TableContainer>
</ReportLayoutPage>
);
-}
+};
export default RouteReportPage;