2022-04-29 12:50:28 +03:00

22 lines
538 B
JavaScript

import { createContext } from 'react';
import { RootStore } from './root';
/** @type{RootStore} */
let store;
export const StoreContext = createContext(store);
export function initializeStore(initialData) {
const _store = store ?? new RootStore();
if (initialData) {
const { user = null, calculationValues = {} } = initialData;
_store.$user.hydrate(user);
_store.$calculation.$values.hydrate(calculationValues);
}
if (typeof window === 'undefined') return _store;
if (!store) store = _store;
return _store;
}