项目作者: LUKKIEN

项目描述 :
🎁 Wrapping everyday data to your containers in need 🎁
高级语言: JavaScript
项目地址: git://github.com/LUKKIEN/redux-needs.git
创建时间: 2017-07-05T09:14:59Z
项目社区:https://github.com/LUKKIEN/redux-needs

开源协议:Other

下载


redux-needs · Build Status codecov david-dm

🎁 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

Usage

Simple binding

Dispatch the ping action when MyComponent is mounted.

  1. import React from 'react';
  2. import needs from 'redux-needs';
  3. const ping = () => ({
  4. type: 'PING',
  5. });
  6. const MyComponent = () => (
  7. <h1>Hello, world!</h1>
  8. );
  9. export default needs([ ping ])(MyComponent);

Complex binding

Dispatch the ping action when MyComponent is mounted and again every
time the value of the name property changes.

  1. import React from 'react';
  2. import needs from 'redux-needs';
  3. const ping = () => ({
  4. type: 'PING',
  5. });
  6. const MyComponent = ({ name }) => (
  7. <h1>Hello, { name }!</h1>
  8. );
  9. MyComponent.defaultProps = {
  10. name: 'world',
  11. };
  12. export default needs({
  13. props: [ 'name' ],
  14. action: ping,
  15. })(MyComponent);

API

const binder = needs(bindings);

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

Bindings

Simple 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

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 creator
  • props - 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:

  1. {
  2. "a": [
  3. { "b": { "c": 3 } },
  4. { "b": { "c": 4 } }
  5. ],
  6. "d": 5
  7. };

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:

  1. {
  2. "a": [
  3. { "b": { "c": 3 }
  4. ]
  5. }

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.

Installation

With npm installed, run

  1. $ npm install redux-needs

Or with yarn installed, run

  1. $ yarn add redux-needs

Peer dependencies

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

License

The redux-needs package is distributed under the 3-Clause BSD License.
Check the LICENSE file for details.