diff options
Diffstat (limited to 'modern/src/store')
-rw-r--r-- | modern/src/store/devices.js | 9 | ||||
-rw-r--r-- | modern/src/store/reports.js | 8 |
2 files changed, 9 insertions, 8 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]; }, diff --git a/modern/src/store/reports.js b/modern/src/store/reports.js index 540c4d4e..870a0420 100644 --- a/modern/src/store/reports.js +++ b/modern/src/store/reports.js @@ -4,8 +4,6 @@ import moment from 'moment'; const { reducer, actions } = createSlice({ name: 'reports', initialState: { - deviceId: null, - deviceIds: [], groupIds: [], period: 'today', from: moment().subtract(1, 'hour').locale('en').format(moment.HTML5_FMT.DATETIME_LOCAL), @@ -13,12 +11,6 @@ const { reducer, actions } = createSlice({ button: 'json', }, reducers: { - updateDeviceId(state, action) { - state.deviceId = action.payload; - }, - updateDeviceIds(state, action) { - state.deviceIds = action.payload; - }, updateGroupIds(state, action) { state.groupIds = action.payload; }, |