This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-01-09 03:37:15 -08:00
|
|
|
import { STORE_HYDRATE } from '../actions/store';
|
2016-10-30 07:06:43 -07:00
|
|
|
import Immutable from 'immutable';
|
2016-08-26 10:12:19 -07:00
|
|
|
|
2017-01-09 03:37:15 -08:00
|
|
|
const initialState = Immutable.Map({
|
|
|
|
access_token: null,
|
|
|
|
me: null
|
|
|
|
});
|
2016-08-26 10:12:19 -07:00
|
|
|
|
|
|
|
export default function meta(state = initialState, action) {
|
|
|
|
switch(action.type) {
|
2017-01-09 03:37:15 -08:00
|
|
|
case STORE_HYDRATE:
|
|
|
|
return state.merge(action.state.get('meta'));
|
|
|
|
default:
|
|
|
|
return state;
|
2016-08-26 10:12:19 -07:00
|
|
|
}
|
2016-09-12 10:20:55 -07:00
|
|
|
};
|