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/reducer.ts
2019-03-03 11:39:40 +01:00

106 lines
2.3 KiB
TypeScript

import * as Actions from './actions';
import { ActionType, getType, StateType } from 'typesafe-actions';
import RemoteState from './RemoteState';
export type FirstFactorAction = ActionType<typeof Actions>;
enum Result {
NONE,
SUCCESS,
FAILURE,
}
interface State {
lastResult: Result;
loading: boolean;
error: string | null;
remoteState: RemoteState | null;
remoteStateLoading: boolean;
remoteStateError: string | null;
logoutLoading: boolean;
logoutSuccess: boolean | null;
logoutError: string | null;
}
const initialState: State = {
lastResult: Result.NONE,
loading: false,
error: null,
remoteState: null,
remoteStateLoading: false,
remoteStateError: null,
logoutLoading: false,
logoutError: null,
logoutSuccess: null,
}
export type PortalState = StateType<State>;
export default (state = initialState, action: FirstFactorAction) => {
switch(action.type) {
case getType(Actions.authenticate):
return {
...state,
loading: true,
error: null
};
case getType(Actions.authenticateSuccess):
return {
...state,
lastResult: Result.SUCCESS,
loading: false,
error: null,
};
case getType(Actions.authenticateFailure):
return {
...state,
lastResult: Result.FAILURE,
loading: false,
error: action.payload,
};
case getType(Actions.fetchState):
return {
...state,
remoteState: null,
remoteStateError: null,
remoteStateLoading: true,
};
case getType(Actions.fetchStateSuccess):
return {
...state,
remoteState: action.payload,
remoteStateLoading: false,
};
case getType(Actions.fetchStateFailure):
return {
...state,
remoteStateError: action.payload,
remoteStateLoading: false,
};
case getType(Actions.logout):
return {
...state,
logoutLoading: true,
logoutSuccess: null,
logoutError: null,
};
case getType(Actions.logoutSuccess):
return {
...state,
logoutLoading: false,
logoutSuccess: true,
};
case getType(Actions.logoutFailure):
return {
...state,
logoutLoading: false,
logoutError: action.payload,
}
}
return state;
}