aboutsummaryrefslogtreecommitdiff
path: root/modern/src/store/computedAttributes.js
blob: d9e353195ab3f6d131a5e0b6cff3ca1cd47c60e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { createSlice } from '@reduxjs/toolkit';

const { reducer, actions } = createSlice({
  name: 'computedAttributes',
  initialState: {
    items: {},
  },
  reducers: {
    update(state, action) {
      action.payload.forEach(item => state.items[item['id']] = item);
    },
  }
});

export { actions as computedAttributesActions };
export { reducer as computedAttributesReducer };