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

Provides decorator for resolving async props in react-router, extremely useful for handling server-side rendering in React

Results 98 redux-connect issues
Sort by recently updated
recently updated
newest added

Hello, I just made an upgrade from react-router v2 to react-router v3 so i find a problem that the router can't render ( elements are for router configuration only and...

Hi! Is it possible to make HOC which wraps asyncConnect'ed component. I can't do this. Because all asyncItems, mapStateToProps and mapDispatchToProps of the Component seem to be dropped. Say, I've...

question

Hi, I have a use case where I need to pass data as prop to component and need to avoid putting it into redux store. Data is coming from asyncItem....

hi, my action is like this ``` import axios from 'axios'; export const FETCH_USER = 'FETCH_USER'; export function fetchUsers(){ return function(dispatch) { axios.get(`http://localhost:3000/api/endpoint`) .then(response => { //return response; dispatch( {...

I am writing test cases for one of my connected component that has asyncConnect in them. # **Component.js** ``` export default asyncConnect([ { promise: ({ location: { query }, store:...

It would be great to have the previous location and params inside *@asyncConnect* to know whether to update some specific part of the page or not. I have a quite...

Can't resolve 'react-router-config/renderRoutes' in node_moduels/redux-connect/lib/components after updating to v7.0.0

Hi, I just figured that asyncConnect does not fire when we do browser back button, can anyone please tell me why this happens. TIA

This [line of code](https://github.com/makeomatic/redux-connect/blob/b4bc64e9b256cced2628ce72dbffa7fdf2cbc5bc/modules/helpers/utils.js#L133) does not catch errors so instead they get lost in the event loop and the component never gets rendered correctly. Additionally, it's hard to catch and...

enhancement
help wanted

I believe this is a problem with asyncConnect containers where updating context does not properly propagate updates to children. I had to create a wrapper around react-redux's connect to get...

question