Refactor 'me' reducer

This commit is contained in:
Alex Gleason 2020-04-17 16:10:55 -05:00
parent 5781d0de07
commit c40fb925e9
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -1,13 +1,12 @@
import { ME_FETCH_SUCCESS, ME_FETCH_FAIL, ME_FETCH_SKIP } from '../actions/me';
import { AUTH_LOGGED_OUT } from '../actions/auth';
import { fromJS } from 'immutable';
const initialState = null;
export default function me(state = initialState, action) {
switch(action.type) {
case ME_FETCH_SUCCESS:
return fromJS(action.me.id);
return action.me.id;
case ME_FETCH_FAIL:
return false;
case ME_FETCH_SKIP: