aboutsummaryrefslogtreecommitdiff
path: root/src/store/drivers.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/store/drivers.js')
-rw-r--r--src/store/drivers.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/store/drivers.js b/src/store/drivers.js
new file mode 100644
index 00000000..d62bd476
--- /dev/null
+++ b/src/store/drivers.js
@@ -0,0 +1,17 @@
+import { createSlice } from '@reduxjs/toolkit';
+
+const { reducer, actions } = createSlice({
+ name: 'drivers',
+ initialState: {
+ items: {},
+ },
+ reducers: {
+ refresh(state, action) {
+ state.items = {};
+ action.payload.forEach((item) => state.items[item.uniqueId] = item);
+ },
+ },
+});
+
+export { actions as driversActions };
+export { reducer as driversReducer };