create-store.js |
This creates a dispatcher with all the standard middleware in place
that all code requires. It can also be optionally configured in
various ways, such as logging and recording.
@param {object} opts:
- enableTaskMiddleware: if true, include the task middleware
- log: log all dispatched actions to console
- middleware: array of middleware to be included in the redux store
- thunkOptions: object that will be spread within a {dispatch, getState} object,
that will be passed in each thunk action.
|
2597 |
middleware |
|
|
moz.build |
|
416 |
subscriber.js |
|
491 |
visibilityHandlerStore.js |
Redux store object wrapper to temporarily disable the store update notifications
while the panel is hidden. The Redux actions are still dispatched and the reducers
will be updating, but the changes are not communicated to connected components.
i.e. redux's `connect` method won't be calling `mapStateToProps` function of all connected components.
|
2355 |