| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- import {
- SCHEDULE_APPOINTMENT_SUCCESS,
- SCHEDULE_APPOINTMENT_ERR,
- CLEAR_NOT_SENT_EMAILS_ARRAY,
- } from "../../actions/scheduleAppointment/scheduleAppointmentActionConstants";
- import createReducer from "../../utils/createReducer";
- /* istanbul ignore file */
-
- const initialState = {
- notSentEmails: null,
- errorMessage: "",
- };
-
- export default createReducer(
- {
- [SCHEDULE_APPOINTMENT_SUCCESS]: setStateScheduleAppointment,
- [SCHEDULE_APPOINTMENT_ERR]: setScheduleAppointmentErrorMessage,
- [CLEAR_NOT_SENT_EMAILS_ARRAY]: setNotSentEmailsArrayNull,
- },
- initialState
- );
-
- function setStateScheduleAppointment(state, action) {
- return {
- ...state,
- notSentEmails: action.payload ? [...action.payload.notSentEmails] : null,
- };
- }
-
- function setScheduleAppointmentErrorMessage(state, action) {
- return {
- ...state,
- errorMessage: action.payload,
- };
- }
-
- function setNotSentEmailsArrayNull(state) {
- return {
- ...state,
- notSentEmails: null,
- };
- }
|