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