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