Johannes Lumpe

Results 50 comments of Johannes Lumpe

@acdlite squeeze this into 4.0 maybe?

@bdowning `FluxComponent` does not pass `flux` to the `render` method anymore. If you [check here](https://github.com/acdlite/flummox/blob/master/src/addons/FluxComponent.js#L80) you will see that the `flux` prop is excluded from the props that get passed...

@bdowning I noticed this because I have a connected component as a root component - which receives the `flux` prop because I'm passing it in. We should be consistent here....

Here is another one: you could keep a single store and key the data in your store's state based on some id. The source perhaps? Then provide a custom state...

Yes that's right, but you could probably get away with a good shouldComponentUpdate check. It depends all on the performance of the overall system. If this runs 60 times per...

@christophercliff Not sure what you are asking here, can you elaborate a bit?

The HoC does not keep a `ref` to the wrapped child. Because of that you cannot access your wrapped component directly.

I might have been a bit overzealous here. For testing purposes exposing the wrapped component might be a good idea. But that means that you will have to test your...