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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
|
import React, { useState, useEffect, useRef } from 'react';
import {
Grid, FormControlLabel, Switch, IconButton, TextField, makeStyles, Paper, Slider, Toolbar, Tooltip, Typography,
} from '@material-ui/core';
import ArrowBackIcon from '@material-ui/icons/ArrowBack';
import SettingsIcon from '@material-ui/icons/Settings';
import PlayArrowIcon from '@material-ui/icons/PlayArrow';
import PauseIcon from '@material-ui/icons/Pause';
import FastForwardIcon from '@material-ui/icons/FastForward';
import FastRewindIcon from '@material-ui/icons/FastRewind';
import { useHistory } from 'react-router-dom';
import { useSelector } from 'react-redux';
import Map from '../map/core/Map';
import ReplayPathMap from '../map/ReplayPathMap';
import PositionsMap from '../map/PositionsMap';
import { formatTime } from '../common/util/formatter';
import ReportFilter from './ReportFilter';
import { useTranslation } from '../LocalizationProvider';
const useStyles = makeStyles((theme) => ({
root: {
height: '100%',
},
sidebar: {
position: 'absolute',
left: 0,
top: 0,
margin: theme.spacing(1.5),
width: theme.dimensions.drawerWidthDesktop,
[theme.breakpoints.down('sm')]: {
width: '100%',
margin: 0,
},
},
formControlLabel: {
height: '100%',
width: '100%',
paddingRight: theme.spacing(1),
justifyContent: 'space-between',
alignItems: 'center',
},
reportFilterContainer: {
flex: 1,
padding: theme.spacing(2),
[theme.breakpoints.down('sm')]: {
margin: theme.spacing(1),
},
},
sliderContainer: {
padding: theme.spacing(2),
},
}));
const TimeLabel = ({ children, open, value }) => (
<Tooltip open={open} enterTouchDelay={0} placement="top" title={value}>
{children}
</Tooltip>
);
const ReplayPage = () => {
const t = useTranslation();
const classes = useStyles();
const history = useHistory();
const timerRef = useRef();
const [positions, setPositions] = useState([]);
const [index, setIndex] = useState(0);
const [selectedDeviceId, setSelectedDeviceId] = useState();
const [playbackSpeed, setPlaybackSpeed] = useState('');
const [expanded, setExpanded] = useState(true);
const [isPlaying, setIsPlaying] = useState(false);
const deviceName = useSelector((state) => {
if (selectedDeviceId) {
const device = state.devices.items[selectedDeviceId];
if (device) {
return device.name;
}
}
return null;
});
useEffect(() => {
if (isPlaying && positions.length > 0) {
timerRef.current = setInterval(() => {
setIndex((index) => index + 1);
}, 500);
} else {
clearInterval(timerRef.current);
}
return () => clearInterval(timerRef.current);
}, [isPlaying, positions]);
useEffect(() => {
if (index >= positions.length) {
clearInterval(timerRef.current);
}
}, [index, positions]);
const handleSubmit = async (deviceId, from, to, _, headers) => {
setSelectedDeviceId(deviceId);
const query = new URLSearchParams({ deviceId, from, to });
const response = await fetch(`/api/positions?${query.toString()}`, { headers });
if (response.ok) {
setIndex(0);
setPositions(await response.json());
setExpanded(false);
}
};
return (
<div className={classes.root}>
<Map>
<ReplayPathMap positions={positions} />
{index < positions.length && <PositionsMap positions={[positions[index]]} />}
</Map>
<div className={classes.sidebar}>
<Grid container direction="column" spacing={1}>
<Grid item>
<Paper elevation={3} square>
<Toolbar disableGutters>
<Grid container alignItems="center">
<Grid item>
<IconButton onClick={() => history.push('/')}>
<ArrowBackIcon />
</IconButton>
</Grid>
<Grid item xs>
<Typography variant="h6">{t('reportReplay')}</Typography>
</Grid>
{!expanded && (
<Grid item>
<IconButton onClick={() => setExpanded(true)}>
<SettingsIcon />
</IconButton>
</Grid>
)}
</Grid>
</Toolbar>
</Paper>
</Grid>
<Grid item>
{!expanded ? (
<Paper className={classes.sliderContainer}>
<Grid container direction="column" alignItems="center">
<Grid item>
{deviceName}
</Grid>
<Grid item style={{ width: '100%' }}>
<Slider
max={positions.length - 1}
step={null}
marks={positions.map((_, index) => ({ value: index }))}
value={index}
onChange={(_, index) => setIndex(index)}
valueLabelDisplay="auto"
valueLabelFormat={(i) => (i < positions.length ? formatTime(positions[i]) : '')}
ValueLabelComponent={TimeLabel}
/>
</Grid>
<Grid item container justifyContent="space-between" alignItems="center">
<Grid item xs={2}>{`${index}/${positions.length}`}</Grid>
<Grid item xs={2}>
<IconButton onClick={() => setIndex((index) => index - 1)} disabled={isPlaying}>
<FastRewindIcon />
</IconButton>
</Grid>
<Grid item xs={2}>
<IconButton onClick={() => setIsPlaying(!isPlaying)}>
{isPlaying ? <PauseIcon /> : <PlayArrowIcon /> }
</IconButton>
</Grid>
<Grid item xs={2}>
<IconButton onClick={() => setIndex((index) => index + 1)} disabled={isPlaying}>
<FastForwardIcon />
</IconButton>
</Grid>
<Grid item xs>{formatTime(positions[index])}</Grid>
</Grid>
</Grid>
</Paper>
) : (
<Paper elevation={3} className={classes.reportFilterContainer} square>
<ReportFilter handleSubmit={handleSubmit} fullScreen showOnly>
<Grid item xs={6}>
<TextField
fullWidth
label={t('reportPlaybackPerMinute')}
value={playbackSpeed}
onChange={(e) => setPlaybackSpeed(e.target.value)}
variant="filled"
/>
</Grid>
<Grid item xs={6}>
<FormControlLabel
classes={{ root: classes.formControlLabel }}
control={(
<Switch
checked={isPlaying}
onChange={(e) => setIsPlaying(e.target.checked)}
color="primary"
edge="start"
/>
)}
label={t('reportAutoPlay')}
labelPlacement="start"
/>
</Grid>
</ReportFilter>
</Paper>
)}
</Grid>
</Grid>
</div>
</div>
);
};
export default ReplayPage;
|