Giter Site home page Giter Site logo

Comments (31)

ide avatar ide commented on May 18, 2024 16

I think of it as a matter of grouping related code or concerns together. In contrast, consider an approach like Relay's where many components are connected and the components and their data requirements (ex: a Redux selector or Relay query) exhibit high cohesion.

Imagine if a site like GitHub were implemented with Redux and React. The component hierarchy would likely be many levels deep. For example, the IssueCommentHeader component would be quite far away from the root component. If only the root component were connected to the store, the root would need to know that the IssueCommentHeader—very far away—needs the user's username and profile picture.

What if you change IssueCommentHeader so that it needs the user's online/offline presence, like a chat app? Now you need to modify IssueCommentHeader's owner, and its owner, and so on until you've modified every component up to the root so that it threads the user's presence data down this deep component hierarchy.

In summary it's not scalable for your productivity, let alone a team's productivity, to put all of the data-retrieving functionality in the root component. This was a real problem when building the liking & commenting UI on Facebook—it looks like a small component but there's a lot of complexity hiding inside it and for its root component to need to know all the data wanted by its leaves deep down was hard to write code for and maintain. What we really wanted is for components at many levels of the hierarchy to specify the data they needed so that related code was grouped together.

from redux.

idibidiart avatar idibidiart commented on May 18, 2024 2

@ide

I researched these questions by Dan himself (on S.O.) and users of Redux grappling with the same exact issue, so I am glad I'm not the first to ask.

reduxjs/react-redux#145

http://stackoverflow.com/questions/25701168/at-what-nesting-level-should-components-read-entities-from-stores-in-flux

I think the answer on S.O. is not ideal... leaving it to the programmer is not a cozy solution

@gaearon have you any updated insight?

from redux.

acdlite avatar acdlite commented on May 18, 2024 1

@gaearon Here ya go! https://github.com/acdlite/redux-batched-updates

from redux.

gaearon avatar gaearon commented on May 18, 2024

Thanks for posting this. Keeping this open for now. I'll revisit after ReactEurope.
If somebody wants to help tackle this please write here :-)

from redux.

ide avatar ide commented on May 18, 2024

If you run into someone from Relay it could be good to get their input since this is the kind of performance problem faced by a big website with many components reading from the same stores.

from redux.

johanneslumpe avatar johanneslumpe commented on May 18, 2024

@ide some good thoughts there, it would definitely be a welcome improvement, as performance increases are always a good thing :)

from redux.

gaearon avatar gaearon commented on May 18, 2024

If you run into someone from Relay it could be good to get their input since this is the kind of performance problem faced by a big website with many components reading from the same stores.

Related: facebook/react#3920 (comment)

from redux.

gaearon avatar gaearon commented on May 18, 2024

Can't we just wrap the subscription notification in React.addons.batchedUpdates by the way?

from redux.

johanneslumpe avatar johanneslumpe commented on May 18, 2024

@ide that's what you suggested to me the other day in regard to flummox, right?

from redux.

ide avatar ide commented on May 18, 2024

I don't know the behavior of batchedUpdates across components though it may solve this problem. Will have to look at its source.

In flummox's case one component might subscribe to multiple stores that each emit a change in response to the same action, so batching that component's setState calls is useful. With redux components have just one subscription to the redux instance and all the stores update before the component is notified once per action.

from redux.

gaearon avatar gaearon commented on May 18, 2024

I don't know the behavior of batchedUpdates across components though it may solve this problem. Will have to look at its source.

It reaches into React's internals and tells it that setState shouldn't immediately update but instead should wait until the callback is over. This is exactly what React already does when dispatching DOM events.

Isn't this the kind of thing you were talking about? Both parent and child are invalidated, but the DOM changes are not cascading and instead applied in one pass.

Perhaps @spicyj can confirm if that's indeed how batchedUpdates works.

from redux.

sophiebits avatar sophiebits commented on May 18, 2024

Yes, that's what batchedUpdates does. Parents will reconcile first so that the children render only once (with the newest props from their parent and their newest state).

from redux.

gaearon avatar gaearon commented on May 18, 2024

Thanks!

The un-nice thing about it is that it's an addon, which means we can't get it from React. We can't get the internal ReactUpdates from React either. Ugh..

I wonder if 0.14 solves that somehow.

from redux.

sophiebits avatar sophiebits commented on May 18, 2024

You'll be able to require react/addons/batchedUpdates (and avoid packaging the other addons) but there's no way to get it from the React object, sorry. I think @sebmarkbage may have wanted to move it to React sometime though?

from redux.

gaearon avatar gaearon commented on May 18, 2024

Can a library depend on anything from react/addons/*? I think that wouldn't work if the user aliases react to a precompiled file, would it?

from redux.

sophiebits avatar sophiebits commented on May 18, 2024

That's right, it wouldn't.

from redux.

gaearon avatar gaearon commented on May 18, 2024

It's unfortunate batchedUpdates is not on React itself then. An addon by definition, in my opinion, should be implementable outside the library, but batchedUpdates is privileged to expose an internal.

from redux.

sophiebits avatar sophiebits commented on May 18, 2024

We think of it slightly differently – addons use React internals (which is why we package them at all instead of letting someone else write it), but their API is liable to change more frequently.

from redux.

gaearon avatar gaearon commented on May 18, 2024

OK, thanks for explaining!

from redux.

ide avatar ide commented on May 18, 2024

Parents will reconcile first so that the children render only once (with the newest props from their parent and their newest state).

Cool - sounds like batchedUpdates addresses this then.

I made a little demo with two nested components that read the same store data and to my surprise the updates already appear batched (the child gets its new props and new state together). https://gist.github.com/ide/1da8a70a14535835da30

from redux.

gaearon avatar gaearon commented on May 18, 2024

@ide I think this is because React batches updates coming from events by default.
@acdlite Sounds like batchedUpdates is a great fit for a middleware that wraps inner dispatch calls in it.

from redux.

acdlite avatar acdlite commented on May 18, 2024

@gaearon Would there be any downside in a middleware that wraps all dispatches in batchedUpdates?

from redux.

gaearon avatar gaearon commented on May 18, 2024

@acdlite I don't think so, that's what I'd do.

from redux.

ide avatar ide commented on May 18, 2024

@gaearon You're right -- React Native wasn't the best environment to test in because it batches messages from the bridge :P

from redux.

gaearon avatar gaearon commented on May 18, 2024

@ide React will also batch for DOM events. But it won't for AJAX callbacks etc.

from redux.

mindjuice avatar mindjuice commented on May 18, 2024

NuclearJS just added a batch() function, since React was previously notified after EVERY action: optimizely/nuclear-js@de35e19

from redux.

sebmarkbage avatar sebmarkbage commented on May 18, 2024

There are some unsolved issues with batching such as with controlled components. The plan is likely to move to batching by default with an opt-out for difficult cases.

from redux.

acdlite avatar acdlite commented on May 18, 2024

@sebmarkbage Great to hear, that sounds sensible.

Closing this since the extension I posted above addresses the issue.

from redux.

acdlite avatar acdlite commented on May 18, 2024

On second thought let's keep this open until we have docs surrounding it.

from redux.

gaearon avatar gaearon commented on May 18, 2024

Added to docs in 13058f0.

from redux.

idibidiart avatar idibidiart commented on May 18, 2024

@ide @gaearon i know this is closed but for educational purposes what are the reasons someone would want to connect the child components rather than push the root parent state as props down the component tree? This way only the root parent is connected. This is heirarchical composition, so descendants should all be stateless components, no? For example, a calendar date selection component would have one stateful parent and a bunch of stateless components as descendants. Connected state is pushed down via read only props from calendar elemt root component to the statelsss descendants. What am I missing?

from redux.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.