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

Bumps [websocket-extensions](https://github.com/faye/websocket-extensions-node) from 0.1.3 to 0.1.4. Changelog Sourced from websocket-extensions's changelog. 0.1.4 / 2020-06-02 Remove a ReDoS vulnerability in the header parser (CVE-2020-7662, reported by Robert McLaughlin) Change license from...

dependencies

Bumps [acorn](https://github.com/acornjs/acorn) from 5.7.1 to 5.7.4. Commits 6370e90 Mark version 5.7.4 fbc15b1 More rigorously check surrogate pairs in regexp validator 910e62b Mark version 5.7.3 3442a80 Make generate-identifier-regex capable of rewriting...

dependencies

Is there a way to use the routes like this? ```js ReactDOM.render( , document.getElementById('main-container') ) ```

Bumps [macaddress](https://github.com/scravy/node-macaddress) from 0.2.8 to 0.2.9. Release notes *Sourced from [macaddress's releases](https://github.com/scravy/node-macaddress/releases).* > ## v0.2.9 > * Fixes an arbitrary command execution vulnerability (https://github-redirect.dependabot.com/scravy/node-macaddress/pull/16/files) > * Adds support for `freebsd`...

dependencies

Bumps [mixin-deep](https://github.com/jonschlinkert/mixin-deep) from 1.3.1 to 1.3.2. Commits - [`754f0c2`](https://github.com/jonschlinkert/mixin-deep/commit/754f0c20e1bc13ea5a21a64fbc7d6ba5f7b359b9) 1.3.2 - [`90ee1fa`](https://github.com/jonschlinkert/mixin-deep/commit/90ee1fab375fccfd9b926df718243339b4976d50) ensure keys are valid when mixing in values - See full diff in [compare view](https://github.com/jonschlinkert/mixin-deep/compare/1.3.1...1.3.2) Maintainer changes This...

dependencies

Bumps [stringstream](https://github.com/mhart/StringStream) from 0.0.5 to 0.0.6. Commits - [`fee31c5`](https://github.com/mhart/StringStream/commit/fee31c5c4a5efc7c7cc2fde4aee633dedefd6d67) 0.0.6 - [`2f4a9d4`](https://github.com/mhart/StringStream/commit/2f4a9d496f94b0880e01a26857aa266a5a3ef274) Merge pull request [#9](https://github-redirect.dependabot.com/mhart/StringStream/issues/9) from mhart/fix-buffer-constructor-vuln - [`afbc744`](https://github.com/mhart/StringStream/commit/afbc7442220358419e330618e47f3a65fc265b1b) Ensure data is not a number in Buffer constructor -...

dependencies

Bumps [diff](https://github.com/kpdecker/jsdiff) from 3.4.0 to 3.5.0. Changelog *Sourced from [diff's changelog](https://github.com/kpdecker/jsdiff/blob/master/release-notes.md).* > ## v3.5.0 - March 4th, 2018 > - Omit redundant slice in join method of diffArrays - 1023590...

dependencies

Hey, I want to use the component's own prop for the preloaded data action that I send to the `asyncConnect`. Is there a way of doing so? Couldn't find anything...

Hello, I'm getting the following error at the time of SSR. ``` TypeError: Cannot read property 'store' of undefined at Object.children (/home/manvendra/Desktop/projects/my-app/node_modules/redux-connect/lib/components/AsyncConnect.js:160:35) ``` I'm using following version of packages "react-redux":...

I'm exporting my component as follows: ``` export default asyncConnect([{ promise: loadAsyncProps }])( connect( mapStateToProps, mapDispatchToProps, )(MyComponent), ); ``` And using it in router config like this: ``` [ {...