460e380d38
This is a functionality similar to one implemented in Pawoo: https://github.com/pixiv/mastodon/commit/21a3c70f8083b1347d2b8420ed7001b78c2c9620
23 lines
521 B
JavaScript
23 lines
521 B
JavaScript
import { Iterable, fromJS } from 'immutable';
|
|
import { hydrateCompose } from './compose';
|
|
|
|
export const STORE_HYDRATE = 'STORE_HYDRATE';
|
|
export const STORE_HYDRATE_LAZY = 'STORE_HYDRATE_LAZY';
|
|
|
|
const convertState = rawState =>
|
|
fromJS(rawState, (k, v) =>
|
|
Iterable.isIndexed(v) ? v.toList() : v.toMap());
|
|
|
|
export function hydrateStore(rawState) {
|
|
return dispatch => {
|
|
const state = convertState(rawState);
|
|
|
|
dispatch({
|
|
type: STORE_HYDRATE,
|
|
state,
|
|
});
|
|
|
|
dispatch(hydrateCompose());
|
|
};
|
|
};
|