blob: 504b7d0295fbb0a271cbfd944cb704ef38a643dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import { createSlice } from '@reduxjs/toolkit';
const { reducer, actions } = createSlice({
name: 'geofences',
initialState: {
items: {},
},
reducers: {
refresh(state, action) {
state.items = {};
action.payload.forEach(item => state.items[item['id']] = item);
},
update(state, action) {
action.payload.forEach(item => state.items[item['id']] = item);
},
}
});
export { actions as geofencesActions };
export { reducer as geofencesReducer };
|