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