cspace-ui
Version:
CollectionSpace user interface for browsers
41 lines (37 loc) • 1.13 kB
JavaScript
import Immutable from 'immutable';
import {
RESET_LOGIN,
LOGIN_STARTED,
LOGIN_FULFILLED,
LOGIN_REJECTED,
} from '../constants/actionCodes';
export default (state = Immutable.Map(), action) => {
switch (action.type) {
case RESET_LOGIN:
return state.clear().set('username', action.meta.username);
case LOGIN_STARTED:
return state
.set('isPending', true)
.delete('isSuccess')
.set('username', action.meta.username)
.delete('error');
case LOGIN_FULFILLED:
return state
.delete('isPending')
.set('isSuccess', true)
.delete('username')
.delete('error');
case LOGIN_REJECTED:
return state
.delete('isPending')
.delete('isSuccess')
.set('username', action.meta.username)
.set('error', Immutable.fromJS(action.payload));
default:
return state;
}
};
export const isPending = state => state.get('isPending');
export const isSuccess = state => state.get('isSuccess');
export const getUsername = state => state.get('username');
export const getError = state => state.get('error');