import React, { useState } from 'react'; import { FormControl, InputLabel, Select, MenuItem, Table, TableHead, TableRow, TableCell, TableBody, } from '@mui/material'; import { useSelector } from 'react-redux'; import { formatTime } from '../common/util/formatter'; import ReportFilter 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'; import useReportStyles from './common/useReportStyles'; import TableShimmer from '../common/components/TableShimmer'; 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 EventReportPage = () => { const classes = useReportStyles(); 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 [loading, setLoading] = useState(false); const handleSubmit = useCatch(async ({ deviceId, from, to, mail, headers }) => { setLoading(true); try { 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()); } } finally { setLoading(false); } }); const formatValue = (item, key) => { switch (key) { case 'eventTime': return formatTime(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))}))} {!loading ? items.map((item) => ( {columns.map((key) => ( {formatValue(item, key)} ))} )) : ()}
); }; export default EventReportPage;