1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
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';
const useStyles = makeStyles((theme) => ({
root: {
height: '100%',
display: 'flex',
flexDirection: 'column',
},
toolbar: {
zIndex: 1,
},
mapContainer: {
flexGrow: 1,
},
statusCard: {
position: 'fixed',
zIndex: 5,
left: '50%',
[theme.breakpoints.up('md')]: {
bottom: theme.spacing(3),
},
[theme.breakpoints.down('md')]: {
bottom: `calc(${theme.spacing(3)} + ${theme.dimensions.bottomBarHeight}px)`,
},
transform: 'translateX(-50%)',
},
}));
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 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">{t('positionEvent')}</Typography>
</Toolbar>
</AppBar>
<div className={classes.mapContainer}>
<MapView>
<MapGeofence />
{position && <MapPositions positions={[position]} onClick={onMarkerClick} />}
</MapView>
{position && <MapCamera latitude={position.latitude} longitude={position.longitude} />}
{position && showCard && (
<div className={classes.statusCard}>
<StatusCard
deviceId={position.deviceId}
position={position}
onClose={() => setShowCard(false)}
disableActions
/>
</div>
)}
</div>
</div>
);
};
export default EventPage;
|