How add new field into reducer using Immer.js?

482 Views Asked by At

For example,

state = {
  data: {}
}

How can I add a new nested field into an object? I cannot set that field, because have an error Cannot read property 'date' of undefined

const reducer = produce((draft, action) => {
   switch (action.type) {
      case 'ACTION_SUCCESS':
      draft.data.children.date = action.response;
   }
});

As a result I want:

  data: {
     children: {
        data: 'date'
     }
  }
}
2

There are 2 best solutions below

2
On

Normal JS object manipulation rules apply here. You can't write obj.x.y.z = if there is no .y field yet - you have to create that first.

0
On

Have you tried lodash/set?

import set from "lodash/set"

const obj= set({}, "path.to.nested.field", value)