12345678910111213141516171819202122232425262728293031323334 |
- import * as actionTypes from '../../../constants/admin';
- import initialState from '../../initialState';
- export default function deleteQuestion(state = initialState.deleteQuestion, {payload, type, error}) {
- switch (type) {
- case actionTypes.DELETE_QUESTION_REQUEST: {
- return {
- ...state,
- isFetching: false,
- payload
- }
- }
- case actionTypes.DELETE_QUESTION_REQUEST_SUCCESS: {
- return {
- ...state,
- isFetching: true,
- payload
- }
- }
- case actionTypes.DELETE_QUESTION_REQUEST_FAILURE: {
- return {
- ...state,
- isFetching: false,
- error
- }
- }
- default: {
- return state;
- }
- }
- }
|