postFeed-reducer.js 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. import React from 'react'
  2. export const postsFeedReducer = (state = {}, { type, findId, newResult, userData = {}, count = null }) => {
  3. const { posts } = state
  4. const types = {
  5. //=== Array.isArray(newResult)
  6. 'ADD-POSTS-FEED': () => ({
  7. ...state,
  8. posts: Array.isArray(newResult)
  9. ? [...posts, ...newResult]
  10. : { ...posts, ...newResult },
  11. count
  12. }),
  13. 'GET-POST': () => ({ ...state, posts: { ...newResult } }),
  14. 'ADD-PROFILE-DATA': () => ({
  15. ...state,
  16. posts: !!posts ? [...posts, ...newResult] : [...newResult],
  17. userData,
  18. count
  19. }),
  20. 'REMOVE-POSTS-FEED': () => ({
  21. ...state,
  22. posts: [],
  23. userData: {},
  24. count: 0,
  25. subComments: {},
  26. }),
  27. 'ADD-POST-LIKE': () => ({
  28. ...state,
  29. posts: Array.isArray(posts)
  30. ? posts.map(p => p._id === findId ? p = { ...p, likes: [...newResult] } : p)
  31. : { ...state.posts, likes: [...newResult] },
  32. }),
  33. 'REMOVE-POST-LIKE': () => ({
  34. ...state,
  35. posts: Array.isArray(posts)
  36. ? posts.map(p => p._id === findId ? p = { ...p, likes: [...newResult] } : p)
  37. : { ...state.posts, likes: [...newResult] },
  38. }),
  39. 'ADD-COMMENT': () => ({
  40. ...state, posts: { ...state.posts, comments: [...newResult] }
  41. }),
  42. 'UPDATE-SUBCOMMENT': () => {
  43. const recursiya = (commentList, id, nR) => {
  44. return commentList.map(c => {
  45. if (c._id === id) {
  46. return { ...c, answers: [...nR] }
  47. } else if (c?.answers?.length) {
  48. return ({
  49. ...c,
  50. answers: recursiya(c.answers, id, nR)
  51. })
  52. } else {
  53. return ({ ...c })
  54. }
  55. })
  56. }
  57. return ({
  58. ...state, posts: { ...state.posts, comments: recursiya(posts.comments, findId, newResult) }
  59. })
  60. },
  61. 'ADD-LIKE-COMMENT': () => ({
  62. ...state,
  63. posts: {
  64. ...state.posts,
  65. comments: posts.comments.map(c => c._id === findId ? c = { ...c, likes: [...newResult] } : c)
  66. }
  67. }),
  68. 'REMOVE-LIKE-COMMENT': () => ({
  69. ...state,
  70. posts: {
  71. ...state.posts,
  72. comments: posts.comments.map(c => c._id === findId ? c = { ...c, likes: [...newResult] } : c)
  73. }
  74. }),
  75. 'UPDATE-FOLLOWERS': () => ({
  76. ...state,
  77. userData: { ...state.userData, followers: [...newResult] }
  78. }),
  79. }
  80. if (type in types) {
  81. return types[type]()
  82. }
  83. return state
  84. }