2017-01-09 06:37:15 -05:00
|
|
|
import { STORE_HYDRATE } from '../actions/store';
|
2017-07-10 19:00:14 -04:00
|
|
|
import { Map as ImmutableMap } from 'immutable';
|
2016-08-26 13:12:19 -04:00
|
|
|
|
2017-07-10 19:00:14 -04:00
|
|
|
const initialState = ImmutableMap({
|
2017-04-14 20:32:42 -04:00
|
|
|
streaming_api_base_url: null,
|
2017-01-09 06:37:15 -05:00
|
|
|
access_token: null,
|
|
|
|
});
|
2016-08-26 13:12:19 -04:00
|
|
|
|
|
|
|
export default function meta(state = initialState, action) {
|
|
|
|
switch(action.type) {
|
2017-01-09 06:37:15 -05:00
|
|
|
case STORE_HYDRATE:
|
|
|
|
return state.merge(action.state.get('meta'));
|
|
|
|
default:
|
|
|
|
return state;
|
2016-08-26 13:12:19 -04:00
|
|
|
}
|
2016-09-12 13:20:55 -04:00
|
|
|
};
|