From 3780cf9986947e409ffccd9e7a06d9554ce3cdcf Mon Sep 17 00:00:00 2001 From: Ashutosh Bishnoi Date: Mon, 2 Nov 2020 18:29:47 +0530 Subject: Code formatting changes and use of async/await --- modern/src/reports/EventReportPage.js | 14 +++++++------- modern/src/reports/ReportFilter.js | 17 ++++------------- 2 files changed, 11 insertions(+), 20 deletions(-) diff --git a/modern/src/reports/EventReportPage.js b/modern/src/reports/EventReportPage.js index 4134de3..fce9597 100644 --- a/modern/src/reports/EventReportPage.js +++ b/modern/src/reports/EventReportPage.js @@ -25,19 +25,19 @@ const EventReportPage = () => { const classes = useStyles(); const [data, setData] = useState([]); - const handleSubmit = (deviceId, from, to) => { + const handleSubmit = async (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); - } - }); + const response = await fetch(`/api/reports/events?${query.toString()}`, { headers: { Accept: 'application/json' } }) + + if(response.ok) { + const data = await response.json(); + setData(data); + } } return ( diff --git a/modern/src/reports/ReportFilter.js b/modern/src/reports/ReportFilter.js index 6f24804..be48413 100644 --- a/modern/src/reports/ReportFilter.js +++ b/modern/src/reports/ReportFilter.js @@ -81,8 +81,7 @@ const ReportFilter = (props) => { onChange={(e) => setFrom(moment(e.target.value, moment.HTML5_FMT.DATETIME_LOCAL)) } - fullWidth - /> + fullWidth /> )} {period === 'custom' && ( { onChange={(e) => setTo(moment(e.target.value, moment.HTML5_FMT.DATETIME_LOCAL)) } - fullWidth - /> + fullWidth /> )} - ); - } -export default ReportFilter; \ No newline at end of file +export default ReportFilter; -- cgit v1.2.3