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
|
import { createSlice } from '@reduxjs/toolkit';
const { reducer, actions } = createSlice({
name: 'session',
initialState: {
server: null,
user: null,
socket: null,
positions: {},
history: {},
},
reducers: {
updateServer(state, action) {
state.server = action.payload;
},
updateUser(state, action) {
state.user = action.payload;
},
updateSocket(state, action) {
state.socket = action.payload;
},
updatePositions(state, action) {
const liveRoutes = state.user.attributes.mapLiveRoutes || state.server.attributes.mapLiveRoutes || 'none';
const liveRoutesLimit = state.user.attributes['web.liveRouteLength'] || state.server.attributes['web.liveRouteLength'] || 10;
action.payload.forEach((position) => {
state.positions[position.deviceId] = position;
if (liveRoutes !== 'none') {
const route = state.history[position.deviceId] || [];
const last = route.at(-1);
if (!last || (last[0] !== position.longitude && last[1] !== position.latitude)) {
state.history[position.deviceId] = [...route.slice(1 - liveRoutesLimit), [position.longitude, position.latitude]];
}
} else {
state.history = {};
}
});
},
},
});
export { actions as sessionActions };
export { reducer as sessionReducer };
|