Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
react-redux-dynamic-reducer
Advanced tools
This library provides React bindings for redux-dynamic-reducers, enabling reducers to be attached when components are mounted.
import { combineReducers } from 'redux'
import { createStore } from 'redux-dynamic-reducer'
...
const reducer = combineReducers({ staticReducer1, staticReducer2 })
const store = createStore(reducer)
Please refer to the redux-dynamic-reducer for more details on creating the store.
The withReducer
higher-order component (HOC) can be used to bundle a reducer into a component that will automatically be attached into the store when mounted. This method will also mount the component within a subspace for easy access to it's reducer. Please refer to the redux-subspace documentation for configuring the subspace to work with any middleware, enhancers or other extensions you are using.
import { withReducer } from 'react-redux-dynamic-reducer'
export default withReducer(myReducer, 'defaultKey')(MyComponent)
import MyComponent from './MyComponent'
<Provider store={store}>
...
<MyComponent />
...
</Provider>
Multiple instances of the same component can be added, as long as the have unique instance identifiers:
import MyComponent from './MyComponent'
...
const MyComponent1 = MyComponent.createInstance('myInstance1')
const MyComponent2 = MyComponent.createInstance('myInstance2')
...
<Provider store={store}>
<MyComponent1 />
<MyComponent2 />
</Provider>
Additional state can be mapped for the component or an instance of the component my providing an additional mapper:
export default withReducer(myReducer, 'defaultKey', { mapExtraState: (state, rootState) => ({ /* ... */ }) })(MyComponent)
...
const MyComponentInstance = MyComponent
.createInstance('instance')
.withExtraState((state, rootState) => ({ /* ... */ }) })
...
const MyComponentInstance = MyComponent
.createInstance('instance')
.withOptions({ mapExtraState: (state, rootState) => ({ /* ... */ }) })
The extra state is merged with the bundled reducer's state.
By default, the components are namespaced. If namespacing is not wanted for a component or and instance of the component, an options object can be provided to prevent it:
export default withReducer(myReducer, 'defaultKey', { namespaceActions: false })(MyComponent)
...
const MyComponentInstance = MyComponent.createInstance('instance').withOptions({ namespaceActions: false })
Combined components and reducers can be nested as deep as required, but note, the nested reducer will appear at the top level of the redux state.
Examples can be found here.
FAQs
react-redux Provider extension for redux-subspace
The npm package react-redux-dynamic-reducer receives a total of 7 weekly downloads. As such, react-redux-dynamic-reducer popularity was classified as not popular.
We found that react-redux-dynamic-reducer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.