adminMainPageReducer.js 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. import * as types from "../actionTypes/actionTypes"
  2. import initialState from "../state/addEventInitialValue";
  3. export default (state = initialState, action) => {
  4. switch (action.type) {
  5. case types.EDIT_EVENT: {
  6. const eventFormInitialValue = state.eventList.find(el => el._id === action.payload);
  7. return {
  8. ...state,
  9. eventFormInitialValue: eventFormInitialValue,
  10. editFormFlag: true
  11. };
  12. }
  13. //POST
  14. case types.POST_NEW_EVENT_REQUEST_SUCCESS: {
  15. console.log('reducer add event success', action.payload)
  16. return {
  17. ...state,
  18. addEventMessage: "New event has been added"
  19. }
  20. }
  21. case types.POST_NEW_EVENT_REQUEST_FAIL: {
  22. console.log('reducer add event fail', action.payload)
  23. return { ...state, error: action.payload }
  24. }
  25. //PUT
  26. case types.EDIT_EVENT_REQUEST_SUCCESS: {
  27. console.log('reducer edit event success', action.payload)
  28. return {
  29. ...state,
  30. addEventMessage: "Event has been changed",
  31. // eventFormInitialValue: eventFormInitialValue,
  32. // editFormFlag: false
  33. }
  34. }
  35. case types.EDIT_EVENT_REQUEST_FAIL: {
  36. console.log('reducer edit event fail', action.payload)
  37. return { ...state, error: action.payload }
  38. }
  39. // GET ALL EVENTS
  40. case types.GET_EVENTS_REQUEST: {
  41. return state;
  42. }
  43. case types.GET_EVENTS_REQUEST_SUCCESS: {
  44. const { data } = action.payload;
  45. const eventList = data.events
  46. return { ...state, eventList };
  47. }
  48. case types.GET_EVENTS_REQUEST_FAIL: {
  49. return state;
  50. }
  51. // GET EVENT BY TITLE
  52. case types.GET_EVENT_BY_TITLE: {
  53. return state;
  54. }
  55. case types.GET_EVENT_BY_TITLE_SUCCESS: {
  56. const { data } = action.payload;
  57. console.log('reducer data eventByTitle', data)
  58. const eventByTitle = data
  59. return { ...state, eventByTitle };
  60. }
  61. case types.GET_EVENT_BY_TITLE_FAIL: {
  62. return state;
  63. }
  64. // REMOVE
  65. case types.REMOVE_EVENT_REQUEST: {
  66. return state;
  67. }
  68. case types.REMOVE_EVENT_REQUEST_SUCCESS: {
  69. const { _id } = action.payload;
  70. return {
  71. ...state,
  72. eventList: state.eventList.filter(el => el._id !== _id)
  73. };
  74. }
  75. case types.REMOVE_EVENT_REQUEST_FAIL: {
  76. return state;
  77. }
  78. default:
  79. return state;
  80. }
  81. }