Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. {
  2. list: {
  3. '0': {
  4. id: 0,
  5. dueDate: 'By May 28th I Will have: ',
  6. goals: [
  7. {
  8. 0: {...}
  9. 1: {...}
  10. 3: {...}
  11. }
  12. ]
  13. }
  14. '1':{
  15. id: 0,
  16. dueDate: 'By June 31st I Will have: ',
  17. goals: [
  18. {
  19. 2: {...}
  20. 4: {...}
  21. }
  22. }
  23.  
  24. return {
  25. ...state,
  26. [action.payload.keyName]: {
  27. ...state[action.payload.keyName],
  28. goals: [
  29. { ...state[action.payload.keyName].goals, ...action.payload.goal },
  30. ...state[action.payload.keyName].goals.slice(1, state[action.payload.keyName].goals.length)
  31. ]
  32. }
  33. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement