aboutsummaryrefslogtreecommitdiff
path: root/modern/src/store/devices.js
diff options
context:
space:
mode:
authorAnton Tananaev <anton@traccar.org>2023-02-02 11:41:55 -0800
committerAnton Tananaev <anton@traccar.org>2023-02-02 11:41:55 -0800
commitcdfa3e5a8fca1b3b8ed59881adcaa8c3d686de50 (patch)
treebffb269cfcbd2b6ebc75bddf700bcd92648bf912 /modern/src/store/devices.js
parentac45c888702bb5ca2d12d974875d101d3e60dd49 (diff)
downloadtrackermap-web-cdfa3e5a8fca1b3b8ed59881adcaa8c3d686de50.tar.gz
trackermap-web-cdfa3e5a8fca1b3b8ed59881adcaa8c3d686de50.tar.bz2
trackermap-web-cdfa3e5a8fca1b3b8ed59881adcaa8c3d686de50.zip
Unified device selection
Diffstat (limited to 'modern/src/store/devices.js')
-rw-r--r--modern/src/store/devices.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/modern/src/store/devices.js b/modern/src/store/devices.js
index 9cfde0a8..1bae6d91 100644
--- a/modern/src/store/devices.js
+++ b/modern/src/store/devices.js
@@ -5,6 +5,7 @@ const { reducer, actions } = createSlice({
initialState: {
items: {},
selectedId: null,
+ selectedIds: [],
},
reducers: {
refresh(state, action) {
@@ -17,6 +18,14 @@ const { reducer, actions } = createSlice({
select(state, action) {
state.selectedId = action.payload;
},
+ selectId(state, action) {
+ state.selectedId = action.payload;
+ state.selectedIds = [state.selectedId];
+ },
+ selectIds(state, action) {
+ state.selectedIds = action.payload;
+ [state.selectedId] = state.selectedIds;
+ },
remove(state, action) {
delete state.items[action.payload];
},