member_webapp/@overflow/member/store/container/signup/signup.reducer.ts
crusader 869fcf4e72 ing
2018-05-28 14:41:56 +09:00

36 lines
551 B
TypeScript

import {
Actions,
ActionType,
} from '../../entity/member/member.action';
import {
State,
initialState,
} from './signup.state';
export function reducer(state = initialState, action: Actions): State {
switch (action.type) {
case ActionType.Signup: {
return {
pending: true,
};
}
case ActionType.SignupSuccess: {
return {
pending: false,
};
}
case ActionType.SignupFailure: {
return {
pending: false,
};
}
default: {
return state;
}
}
}