Add support for preload media to ReactDOM#28635
Merged
gnoff merged 1 commit intofacebook:mainfrom Mar 28, 2024
Merged
Conversation
614dea8 to
e8bcaa8
Compare
e8bcaa8 to
281a48c
Compare
EdisonVan
pushed a commit
to EdisonVan/react
that referenced
this pull request
Apr 15, 2024
This PR adds support for `media` option to `ReactDOM.preload()`, which is needed when images differ between screen sizes (for example mobile vs desktop)
This was referenced Apr 24, 2024
|
This feature is still not available for react-dom 18.3.1. Will it be part of the 19's updates? |
Collaborator
|
These new APIs are part of the React 19 release and will not be available on any 18.x release. React 19 was originally intended to be released shortly after React conf but we decided to include a change to sibling rendering which has not landed yet but should soon |
|
Can we have this released in 18? It's a fully backward compatible change |
|
Looks like 'media' has not been added to the PreloadOption type on "@types/react-dom@19.0.2". preload(
"https://src",
{
as: "image",
fetchPriority: "high",
imageSizes: "100vw",
imageSrcSet: "https://srcest",
type: "image/webp",
...{ media: "screen and (orientation: portrait)" },
}
) |
3 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds support for
mediaoption toReactDOM.preload(), which is needed when images differ between screen sizes (for example mobile vs desktop).Tests copied from #27129 (thanks @damnsamn!)
How did you test this change?
Ran the tests from #27129 before:
After: