Comments (5)
Here is the full text of the set state optimization [as at 13th April]:
If the new value you provide is identical to the current state, as determined by an Object.is comparison, React will skip re-rendering the component and its children. This is an optimization. Although in some cases React may still need to call your component before skipping the children, it shouldn’t affect your code.
I think that wording the caveat that the re-render optimization is skipped "in some cases" implies that the de-optimization should only occur in outlier circumstances (eg nested set states in an effect), and not for standard happy path cases.
I think that skipping the re-render optimization for a happy path case is a bug.
I appreciate that component renders should be pure, and so an additional re-render should not cause any functional problems. However, I still think that this current behaviour is incorrect.
The current behaviour hurt me when I was trying to write a test to assert that a component should not render after a particular event, but a render did occur. It would be fair to ask: "Why assert render behaviour in a test?". I think it is fair to assert re-rendering behaviour given that re-rendering can be expensive with react
from react.
Might be a duplicate of #18098
from react.
On the linked documentation page it literally says that this is expected:
Although in some cases React may still need to call your component before skipping the children, it shouldn’t affect your code
from react.
It could be a joke but... Have you tried to remove the StictMode?
https://react.dev/reference/react/StrictMode
from react.
I can confirm that this bug appears without strict mode on
from react.
Related Issues (20)
- [DevTools Bug]: shows "This page doesn't appear to be using React" for every react website on Firefox 115.0.2 HOT 13
- Bug: "Uncaught runtime error" after react-script upgrade
- Feature Request (react-hooks/exhaustive-deps): `ignoreObjectReferences` flag
- Bug: [React 18] componentWillReceiveProps causes Suspense to go into an infinite loop with React.lazy HOT 2
- [DevTools Bug]: Devtools extension build failing in windows and ubuntu HOT 1
- feature: make react more reactive (feedback for future) HOT 3
- Bug: Using Nullish Coalescing Operator(param??'123') in useState
- Bug: the type of ReactDOM.prefetchDNS does not exist. HOT 3
- Bug: performance.mark is not a function HOT 1
- #usahomesforrent HOT 1
- Bug: Multiple React.Suspense breaks if all not wrapped in <Suspense> HOT 3
- [React 16] Bug: true and false clauses being rendered simultaneously HOT 6
- Bug: [18.3.0-canary] renderToString hoists some tags to top(working in 18.2) HOT 1
- Feature: Allow creating elements using document.createElement before rendering HOT 2
- Bug: For React/Server the renderToString with Suspense in the tree is not behaving as per what documentation says. HOT 2
- Bug: `eslint-plugin-react-hooks` doesn't work inside `export default () => { ... }` HOT 2
- [DevTools Bug] Cannot add node "1" because a node with that id is already in the Store. HOT 7
- [DevTools Bug] Node "24" was removed before its children. HOT 2
- [DevTools Bug]: Devtool extension build failing in windows and ubuntu HOT 6
- Bug: Devtools extension not building in windows and ubuntu HOT 2
Recommend Projects
-
React
A declarative, efficient, and flexible JavaScript library for building user interfaces.
-
Vue.js
🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.
-
Typescript
TypeScript is a superset of JavaScript that compiles to clean JavaScript output.
-
TensorFlow
An Open Source Machine Learning Framework for Everyone
-
Django
The Web framework for perfectionists with deadlines.
-
Laravel
A PHP framework for web artisans
-
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.
-
Visualization
Some thing interesting about visualization, use data art
-
Game
Some thing interesting about game, make everyone happy.
Recommend Org
-
Facebook
We are working to build community through open source technology. NB: members must have two-factor auth.
-
Microsoft
Open source projects and samples from Microsoft.
-
Google
Google ❤️ Open Source for everyone.
-
Alibaba
Alibaba Open Source for everyone
-
D3
Data-Driven Documents codes.
-
Tencent
China tencent open source team.
from react.