Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6501 | Rev 6745 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
6493 stevensc 1
import { actionsTypes } from './auth.types'
2
 
3
const initialState = {
6501 stevensc 4
  access_usign_social_networks: '',
5
  aes: '',
6
  defaultNetwork: '',
7
  email: '',
8
  favico_url: '',
9
  intro: '',
10
  logo_url: '',
11
  navbar_url: '',
12
  remember: false,
13
  site_key: '',
6513 stevensc 14
  isAuth: false,
6493 stevensc 15
}
16
 
6501 stevensc 17
const AuthReducer = (state = initialState, action) => {
18
  const { type, payload } = action
6499 stevensc 19
 
20
  const actionCases = {
6501 stevensc 21
    [actionsTypes.SET_PERMISSIONS]: { ...state, ...payload },
6513 stevensc 22
    [actionsTypes.LOGIN]: { ...state, isAuth: true },
23
    [actionsTypes.LOGOUT]: { ...state, isAuth: false },
6493 stevensc 24
  }
6499 stevensc 25
 
6500 stevensc 26
  return actionCases[type] || state
6493 stevensc 27
}
6496 stevensc 28
 
29
export default AuthReducer