1
0
mirror of https://github.com/0rangebananaspy/authelia.git synced 2024-09-14 22:47:21 +07:00
authelia/client-react/src/reducers/Portal/ResetPassword/reducer.ts
2019-03-03 11:39:40 +01:00

44 lines
893 B
TypeScript

import * as Actions from './actions';
import { ActionType, getType } from 'typesafe-actions';
export type Action = ActionType<typeof Actions>;
interface State {
loading: boolean;
success: boolean | null;
error: string | null;
}
const initialState: State = {
loading: false,
success: null,
error: null,
}
export default (state = initialState, action: Action): State => {
switch(action.type) {
case getType(Actions.resetPasswordRequest):
return {
...state,
loading: true,
error: null
};
case getType(Actions.resetPasswordSuccess):
return {
...state,
success: true,
loading: false,
error: null,
};
case getType(Actions.resetPasswordFailure):
return {
...state,
success: false,
loading: false,
error: action.payload,
};
}
return state;
}