Rev 94 | Rev 816 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
import { actionsTypes } from "./auth.types";
const initialState = {
access_usign_social_networks: "y",
aes: "",
defaultNetwork: "y",
email: "",
favico_url: "",
intro: "",
logo_url: "",
navbar_url: "",
remember: true,
site_key: "",
isAuth: false,
theme_id: "1",
jwt: "",
loading: true,
};
const AuthReducer = (state = initialState, action) => {
const { type, payload } = action;
const actionCases = {
[actionsTypes.SET_PERMISSIONS]: { ...state, ...payload },
[actionsTypes.LOGIN]: { ...state, isAuth: true },
[actionsTypes.LOGOUT]: { ...state, isAuth: false },
[actionsTypes.START_LOADING]: { ...state, loading: true },
[actionsTypes.STOP_LOADING]: { ...state, loading: false },
};
return actionCases[type] || state;
};
export default AuthReducer;