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