diff options
Diffstat (limited to 'src/other/EventPage.jsx')
-rw-r--r-- | src/other/EventPage.jsx | 108 |
1 files changed, 108 insertions, 0 deletions
diff --git a/src/other/EventPage.jsx b/src/other/EventPage.jsx new file mode 100644 index 00000000..c8d84d5e --- /dev/null +++ b/src/other/EventPage.jsx @@ -0,0 +1,108 @@ +import React, { useCallback, useState } from 'react'; + +import { + Typography, AppBar, Toolbar, IconButton, +} from '@mui/material'; +import makeStyles from '@mui/styles/makeStyles'; +import ArrowBackIcon from '@mui/icons-material/ArrowBack'; +import { useNavigate, useParams } from 'react-router-dom'; +import { useEffectAsync } from '../reactHelper'; +import { useTranslation } from '../common/components/LocalizationProvider'; +import MapView from '../map/core/MapView'; +import MapCamera from '../map/MapCamera'; +import MapPositions from '../map/MapPositions'; +import MapGeofence from '../map/MapGeofence'; +import StatusCard from '../common/components/StatusCard'; +import { formatNotificationTitle } from '../common/util/formatter'; + +const useStyles = makeStyles(() => ({ + root: { + height: '100%', + display: 'flex', + flexDirection: 'column', + }, + toolbar: { + zIndex: 1, + }, + mapContainer: { + flexGrow: 1, + }, +})); + +const EventPage = () => { + const classes = useStyles(); + const navigate = useNavigate(); + const t = useTranslation(); + + const { id } = useParams(); + + const [event, setEvent] = useState(); + const [position, setPosition] = useState(); + const [showCard, setShowCard] = useState(false); + + const formatType = (event) => formatNotificationTitle(t, { + type: event.type, + attributes: { + alarms: event.attributes.alarm, + }, + }); + + const onMarkerClick = useCallback((positionId) => { + setShowCard(!!positionId); + }, [setShowCard]); + + useEffectAsync(async () => { + if (id) { + const response = await fetch(`/api/events/${id}`); + if (response.ok) { + setEvent(await response.json()); + } else { + throw Error(await response.text()); + } + } + }, [id]); + + useEffectAsync(async () => { + if (event && event.positionId) { + const response = await fetch(`/api/positions?id=${event.positionId}`); + if (response.ok) { + const positions = await response.json(); + if (positions.length > 0) { + setPosition(positions[0]); + } + } else { + throw Error(await response.text()); + } + } + }, [event]); + + return ( + <div className={classes.root}> + <AppBar color="inherit" position="static" className={classes.toolbar}> + <Toolbar> + <IconButton color="inherit" edge="start" sx={{ mr: 2 }} onClick={() => navigate('/')}> + <ArrowBackIcon /> + </IconButton> + <Typography variant="h6">{event && formatType(event)}</Typography> + </Toolbar> + </AppBar> + <div className={classes.mapContainer}> + <MapView> + <MapGeofence /> + {position && <MapPositions positions={[position]} onClick={onMarkerClick} titleField="fixTime" />} + </MapView> + {position && <MapCamera latitude={position.latitude} longitude={position.longitude} />} + {position && showCard && ( + <StatusCard + deviceId={position.deviceId} + position={position} + onClose={() => setShowCard(false)} + disableActions + /> + )} + </div> + </div> + ); +}; + +export default EventPage; |