- Notifications
You must be signed in to change notification settings - Fork44
Releases: acdlite/redux-rx
Redux 1.0 compatibility
This update supports the Redux 1.0 API. It also updates its react-rx-component dependency to v0.5.0.
Assets2
Uh oh!
There was an error while loading.Please reload this page.
Preparing for Redux 1.0
v0.4.0-alpha is a prerelease version, updated for compatibility with upcoming Redux 1.0 release.
npm install redux-rx@prereleaseThanks to@frederickfogerty (#4)
Assets2
Uh oh!
There was an error while loading.Please reload this page.
createConnector()
This release includes a new functioncreateConnector(), which allows you to create Connector-like React components by transforming sequences of props and the store state (and a sequence ofdispatchs, for correctness).
(props$, state$, dispatch$) => childProps$createConnector() is actually a thin layer on top ofreact-rx-component, which is a generalized form of the same concept.
Also new is a special version ofbindActionCreators() that accepts either a dispatch function or a sequence of dispatch functions, useful for insidecreateConnector().
import{createConnector}from'redux-rx/react';import{bindActionCreators}from 'redux-rx;
Assets2
Uh oh!
There was an error while loading.Please reload this page.