Thursday, February 22, 2018
reactjs - Is it More Performant to Pass Props From Parent Component Or Listen to State Change In Flux Store?
Answer
Answer
Let's say I have the following parent -> child relationship(s) inside of a react component:
...
...
... // And so on
Assuming I'm getting data from a Flux store, is it more performant to have
get its state from / listen for changes on the Flux store and then pass the relevant data down to its children as props
or is it more performant to have each <..child>
component listen to the store directly for any updates to its state?
Answer
Performance would likely depend on your specific program. Is there a reason youre concerned with performance between these two practices? I must imagine its an extremely minimal difference.
that being said, idiomatic react greatly favors stateful components housing stateless components. unless theres a good reason for a child component to manage itself (that is manage its own state and not let its parent manage it), you should be composing your site with as few stateful components as possible that contain many stateless children.
tl;dr pass in props from your parent
plot explanation - Why did Peaches' mom hang on the tree? - Movies & TV
In the middle of the movie Ice Age: Continental Drift Peaches' mom asked Peaches to go to sleep. Then, she hung on the tree. This parti...
-
This question attempts to collect the few pearls among the dozens of bad C++ books that are published every year. Unlike many other programm...
-
I need to do the following: My current address looks like: https://www.domain.com I want to redirect with htaccess: www.domain.com TO https:...
-
using namespace std; So far in my computer science courses, this is all we have been told to do. Not only that, but it's all tha...
No comments:
Post a Comment