Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Warn for using a React owned node as a Container if it also has text content #32774

Merged
merged 1 commit into from
Apr 1, 2025

Conversation

sebmarkbage
Copy link
Collaborator

The problem with setting both children or dangerouslySetInnerHTML and also using a ref on a DOM node to either manually append children or using it as a Container for createRoot or createPortal is that it's ambiguous which children should win. Ideally you use one of the four options to control children. Meaning that ideally you always use a leaf container for refs like this.

Unfortunately it's very common to use a React owned thing with children as a Container of a Portal. For example document.body can have both regular React children and be used as a Portal container. This isn't really fully supported and has some undefined behavior like relative order isn't guaranteed but still very common.

It is extra bad if the children are a string/number or if dangerouslySetInnerHTML is set. Because then when ever that reactively updates it'll clear out any manually added DOM nodes. When this happens isn't guaranteed. It's always happening as far as the reactivity is concerned. See #31600

Therefore, we should warn for this specific pattern. This still allows non-text children as a compromise even though that behavior is also somewhat undefined.

@react-sizebot
Copy link

Comparing: 8039f1b...98b1eef

Critical size changes

Includes critical production bundles, as well as any change greater than 2%:

Name +/- Base Current +/- gzip Base gzip Current gzip
oss-stable/react-dom/cjs/react-dom.production.js = 6.68 kB 6.68 kB = 1.83 kB 1.83 kB
oss-stable/react-dom/cjs/react-dom-client.production.js = 515.13 kB 515.14 kB = 91.78 kB 91.78 kB
oss-experimental/react-dom/cjs/react-dom.production.js = 6.69 kB 6.69 kB = 1.83 kB 1.83 kB
oss-experimental/react-dom/cjs/react-dom-client.production.js = 615.31 kB 615.31 kB = 108.87 kB 108.87 kB
facebook-www/ReactDOM-prod.classic.js = 647.04 kB 647.04 kB = 114.37 kB 114.36 kB
facebook-www/ReactDOM-prod.modern.js = 637.32 kB 637.32 kB = 112.79 kB 112.80 kB

Significant size changes

Includes any change greater than 0.2%:

Expand to show
Name +/- Base Current +/- gzip Base gzip Current gzip
test_utils/ReactAllWarnings.js +0.78% 64.16 kB 64.66 kB +0.59% 16.12 kB 16.22 kB

Generated by 🚫 dangerJS against 98b1eef

@sebmarkbage sebmarkbage merged commit e5dd82a into facebook:main Apr 1, 2025
243 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
CLA Signed React Core Team Opened by a member of the React Core Team
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants