hydrate
A companion method for serialize. Hydrates provided values into corresponding stores within a provided domain or scope. The main purpose is an application state hydration on the client side after SSR.
hydrate(domainOrScope: Domain | Scope, { values: Map<Store<any>, any> | {[sid: string]: any} }): void
Arguments
domainOrScope
: domain or scope which will be filled with givenvalues
values
: a mapping from store sids to store values or a Map where keys are store objects and values contains initial store value
警告
You need to make sure, that the store is created beforehand, otherwise, the hydration might fail. This could be the case, if you store initialization / hydration scripts separate from stores' creation.
Example
Populate store with a predefined value
import {createStore, createDomain, fork, serialize, hydrate} from 'effector'
const domain = createDomain()
const $store = domain.createStore(0)
hydrate(domain, {
values: {
[$store.sid]: 42,
},
})
console.log($store.getState()) // 42