Skip to content
Snippets Groups Projects
rolesReducer.ts 580 B
Newer Older
  • Learn to ignore specific revisions
  • Carl Schönfelder's avatar
    Carl Schönfelder committed
    import { AnyAction } from 'redux'
    import Types from '../actions/types'
    
    import { Role } from '../interfaces/ApiModels'
    
    /** Define a type for the role state */
    
    Carl Schönfelder's avatar
    Carl Schönfelder committed
    interface RoleState {
      roles: Role[]
    }
    
    Björn Modée's avatar
    Björn Modée committed
    
    
    /** Define the initial values for the role state */
    
    Carl Schönfelder's avatar
    Carl Schönfelder committed
    const initialState: RoleState = {
      roles: [],
    }
    
    
    /** Intercept actions for roles state and update the state */
    
    Carl Schönfelder's avatar
    Carl Schönfelder committed
    export default function (state = initialState, action: AnyAction) {
      switch (action.type) {
        case Types.SET_ROLES:
          return { ...state, roles: action.payload as Role[] }
        default:
          return state
      }
    }