Skip to content

Releases: acdlite/redux-rx

Redux 1.0 compatibility

Choose a tag to compare

@acdlite acdlite released this 26 Aug 21:54

This update supports the Redux 1.0 API. It also updates its react-rx-component dependency to v0.5.0.

Preparing for Redux 1.0

Pre-release

Choose a tag to compare

@acdlite acdlite released this 22 Jul 22:21

v0.4.0-alpha is a prerelease version, updated for compatibility with upcoming Redux 1.0 release.

npm install redux-rx@prerelease

Thanks to @frederickfogerty (#4)

createConnector()

Choose a tag to compare

@acdlite acdlite released this 07 Jul 19:47

This release includes a new function createConnector(), which allows you to create Connector-like React components by transforming sequences of props and the store state (and a sequence of dispatchs, for correctness).

(props$, state$, dispatch$) => childProps$

createConnector() is actually a thin layer on top of react-rx-component, which is a generalized form of the same concept.

Also new is a special version of bindActionCreators() that accepts either a dispatch function or a sequence of dispatch functions, useful for inside createConnector().

import { createConnector } from 'redux-rx/react';
import { bindActionCreators } from 'redux-rx;