import React, { useState } from 'react'; import { FormControl, InputLabel, Select, MenuItem, Table, TableHead, TableRow, TableCell, TableBody, } from '@mui/material'; import { useSelector } from 'react-redux'; import { makeStyles } from '@mui/styles'; import { formatDate } from '../common/util/formatter'; import ReportFilter, { useFilterStyles } from './components/ReportFilter'; import { prefixString } from '../common/util/stringUtils'; import { useTranslation } from '../common/components/LocalizationProvider'; import PageLayout from '../common/components/PageLayout'; import ReportsMenu from './components/ReportsMenu'; import usePersistedState from '../common/util/usePersistedState'; import ColumnSelect from './components/ColumnSelect'; import { useCatch } from '../reactHelper'; const typesArray = [ ['allEvents', 'eventAll'], ['deviceOnline', 'eventDeviceOnline'], ['deviceUnknown', 'eventDeviceUnknown'], ['deviceOffline', 'eventDeviceOffline'], ['deviceInactive', 'eventDeviceInactive'], ['deviceMoving', 'eventDeviceMoving'], ['deviceStopped', 'eventDeviceStopped'], ['deviceOverspeed', 'eventDeviceOverspeed'], ['deviceFuelDrop', 'eventDeviceFuelDrop'], ['commandResult', 'eventCommandResult'], ['geofenceEnter', 'eventGeofenceEnter'], ['geofenceExit', 'eventGeofenceExit'], ['alarm', 'eventAlarm'], ['ignitionOn', 'eventIgnitionOn'], ['ignitionOff', 'eventIgnitionOff'], ['maintenance', 'eventMaintenance'], ['textMessage', 'eventTextMessage'], ['driverChanged', 'eventDriverChanged'], ]; const columnsArray = [ ['eventTime', 'positionFixTime'], ['type', 'sharedType'], ['geofenceId', 'sharedGeofence'], ['maintenanceId', 'sharedMaintenance'], ['alarm', 'positionAlarm'], ]; const columnsMap = new Map(columnsArray); const useStyles = makeStyles(() => ({ header: { position: 'sticky', left: 0, display: 'flex', flexDirection: 'column', alignItems: 'stretch', }, })); const EventReportPage = () => { const classes = useStyles(); const filterClasses = useFilterStyles(); const t = useTranslation(); const geofences = useSelector((state) => state.geofences.items); const [columns, setColumns] = usePersistedState('eventColumns', ['eventTime', 'type', 'alarm']); const [eventTypes, setEventTypes] = useState(['allEvents']); const [items, setItems] = useState([]); const handleSubmit = useCatch(async (deviceId, from, to, mail, headers) => { const query = new URLSearchParams({ deviceId, from, to, mail, }); eventTypes.forEach((it) => query.append('type', it)); const response = await fetch(`/api/reports/events?${query.toString()}`, { headers }); if (response.ok) { const contentType = response.headers.get('content-type'); if (contentType) { if (contentType === 'application/json') { setItems(await response.json()); } else { window.location.assign(window.URL.createObjectURL(await response.blob())); } } } else { throw Error(await response.text()); } }); const formatValue = (item, key) => { switch (key) { case 'eventTime': return formatDate(item[key]); case 'type': return t(prefixString('event', item[key])); case 'geofenceId': if (item[key] > 0) { const geofence = geofences[item[key]]; return geofence && geofence.name; } return null; case 'maintenanceId': return item[key] > 0 ? item[key] > 0 : null; case 'alarm': return item.attributes[key] ? t(prefixString('alarm', item.attributes[key])) : null; default: return item[key]; } }; return ( } breadcrumbs={['reportTitle', 'reportEvents']}>
{t('reportEventTypes')}
{columns.map((key) => ({t(columnsMap.get(key))}))} {items.map((item) => ( {columns.map((key) => ( {formatValue(item, key)} ))} ))}
); }; export default EventReportPage;