react-redux
Version:
Official React bindings for Redux
52 lines (49 loc) • 1.45 kB
text/typescript
import { useContext, Context } from 'react'
import { Action as BasicAction, AnyAction, Store } from 'redux'
import {
ReactReduxContext,
ReactReduxContextValue,
} from '../components/Context'
import { useReduxContext as useDefaultReduxContext } from './useReduxContext'
/**
* Hook factory, which creates a `useStore` hook bound to a given context.
*
* @param {React.Context} [context=ReactReduxContext] Context passed to your `<Provider>`.
* @returns {Function} A `useStore` hook bound to the specified context.
*/
export function createStoreHook<
S = unknown,
A extends BasicAction = AnyAction
// @ts-ignore
>(context?: Context<ReactReduxContextValue<S, A>> = ReactReduxContext) {
const useReduxContext =
// @ts-ignore
context === ReactReduxContext
? useDefaultReduxContext
: () => useContext(context)
return function useStore<
State = S,
Action extends BasicAction = A
// @ts-ignore
>() {
const { store } = useReduxContext()!
// @ts-ignore
return store as Store<State, Action>
}
}
/**
* A hook to access the redux store.
*
* @returns {any} the redux store
*
* @example
*
* import React from 'react'
* import { useStore } from 'react-redux'
*
* export const ExampleComponent = () => {
* const store = useStore()
* return <div>{store.getState()}</div>
* }
*/
export const useStore = /*#__PURE__*/ createStoreHook()