blob: f01a35c0086cc411ab303733227b885f8a3dd8bd (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import { createContext, useContext } from 'react'
import { RootStore } from './root-store'
/**
* Create a context we can use to
* - Provide access to our stores from our root component
* - Consume stores in our screens (or other components, though it's
* preferable to just connect screens)
*/
const RootStoreContext = createContext<RootStore>({} as RootStore)
/**
* The provider our root component will use to expose the root store
*/
export const RootStoreProvider = RootStoreContext.Provider
/**
* A hook that screens can use to gain access to our stores, with
* `const { someStore, someOtherStore } = useStores()`,
* or less likely: `const rootStore = useStores()`
*/
export const useStores = () => useContext(RootStoreContext)
|