redux-async-connect icon indicating copy to clipboard operation
redux-async-connect copied to clipboard

It allows you to request async data, store them in redux state and connect them to your react component.

Results 62 redux-async-connect issues
Sort by recently updated
recently updated
newest added
trafficstars

It seems the example in readme.md is not working in `v1.0.0-rc2`, it's very confusing and I don't know how to use this in the right way. :cry: > Uncaught TypeError:...

My use case: I need some actions to dispatch only on the client side. **This includes on first page load.** Right now I have something like: ``` js @asyncConnect([{ promise:...

I use ReduxAsyncConnect with `react-intl` ``` javascript const component = ( !item.deferred} />} history={browserHistory}> {getRoutes(store)} ); ReactDOM.render( {component} , dest); ``` But code in `asyncConnect` run again on the client...

Hei, thanks for great project but i have a issue and im not sure if this is bug or problem with my setup, i have reducer like this https://gist.github.com/tonis2/e39a16d198b689d80a8c now...

If i use reduxAsyncConnect in multiple components that are being rendered, loadState is overwritten in some situations (race condition). Rather than replace loadState as is being done now: ``` js...

bug

Is there a simple way I am overlooking to invoke a client side reload of data gathered by `asyncConnect` decorator?

enhancement

It seems that it take some small amout of time for props to propagate. I think they should be available from the beginning. Compare this two blocks of code. Search...

What about scenario with the refresh button on the page that enables user to grab fresh data without clicking around navigation. I have small idea how this can be achived....

Hey, I've just seen this pr https://github.com/erikras/react-redux-universal-hot-example/pull/833 which looks exactly like what I need to do in my own app as well (redux-router -> redux-simple-router + changing from middleware to...

Hi, I am using `redux-async-connect` with `universal-redux`. I am using it like so: ``` javascript static reduxAsyncConnect(params, store, helpers) { const {dispatch} = store; return dispatch(getData('Product', params.productId)) .then(({name, upc, price,...