🎁 Wrapping everyday data to your containers in need 🎁
Bind actions to changes in your Redux state based on the needs of your active Redux components.
Usage | API | Installation | License
Dispatch the ping
action when MyComponent
is mounted.
import React from 'react';
import needs from 'redux-needs';
const ping = () => ({
type: 'PING',
});
const MyComponent = () => (
<h1>Hello, world!</h1>
);
export default needs([ ping ])(MyComponent);
Dispatch the ping
action when MyComponent
is mounted and again every
time the value of the name
property changes.
import React from 'react';
import needs from 'redux-needs';
const ping = () => ({
type: 'PING',
});
const MyComponent = ({ name }) => (
<h1>Hello, { name }!</h1>
);
MyComponent.defaultProps = {
name: 'world',
};
export default needs({
props: [ 'name' ],
action: ping,
})(MyComponent);
Returns a new binder method which, when called with a component, will return the component wrapped with the configured bindings. This method is compatible with the Redux compose method.
bindings
(required) - an array containing bindings
Simple bindings will trigger an action only once: when the component is mounted.
To add a simple binding just add an action creator
to the array of bindings. When the component is mounted the action creator will
be called with this.props
and the resulting action will be dispatched.
Go to the example.
Complex bindings will trigger an action when the component is mounted and again when one or more of the bound properties change.
To add a complex binding add an object to array of bindings with two properties:
action
- the action creatorprops
- an array of strings describing the properties of the component to watch
The prop
field can contain nested properties. For example; given the following
object, the c
property with a value of 3
can be bound to using a[0].b.c
:
{
"a": [
{ "b": { "c": 3 } },
{ "b": { "c": 4 } }
],
"d": 5
};
When binding to specific values, the action creator will be called with a subset
of this.props
matching the bound property paths. In the case of the previous
example, this would mean the action creator would be called with the follwing
object:
{
"a": [
{ "b": { "c": 3 }
]
}
Note: the action creators will sometimes be called even if the action will
not be dispatched. As this could potentially be every time componentWillUpdate
is called on your component, your action creators should be lightweigth methods.
Go to the example.
With npm installed, run
$ npm install redux-needs
Or with yarn installed, run
$ yarn add redux-needs
This library uses the following peer dependencies, which will probably already be included in your project if it's uses Redux and React:
- react: 15.5.x
- react-redux: 5.x.x
- redux: 3.7.x
The redux-needs
package is distributed under the 3-Clause BSD License.
Check the LICENSE file for details.