So i'm writing a React-Redux web app, and i call dispatch from my react components like this :
this.props.dispatch(someAction());
Now i need to call dispatch from a javascript function that is not a React Component, so how do i import the dispatch function and use it in this case ?
Thank you.
The dispatch
function is a member of your redux store. If you created and exported your store in a module, it would be as easy as importing the store in your module and calling the dispatch
function.
Example:
// store.js
import { createStore } from 'redux'
export default createStore(reducers)
// somefile.js
import store from './store'
store.dispatch(someAction)
The dispatch method is one of the store's methods. react-redux makes dispatch
available to components as props via the provider
, and mapDispatchToProps
.
You can dispatch directly from the store:
store.dispatch(action)