-
Notifications
You must be signed in to change notification settings - Fork 26.3k
feat(common): automatically use sizes auto in NgOptimizedImage #57479
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
Conversation
Prepend 'auto' to value of the `sizes` prop generated by NgOptimizedImage, when image has a responsive srcset and is lazy-loaded.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks!
Caretaker note: presubmit is "green" for this PR, the PR is ready for merge. |
This PR was merged into the repository by commit 50f08e6. The changes were merged into the following branches: main |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
This PR updates NgOptimizedImage so that the 'sizes' prop is prepended with "auto" when the following conditions are met:
sizes
value or has used the NgSrcset attribute)priority
attribute or suppliedloading="eager"
sizes="auto"
is fairly new feature, supported in Chromium and Edge, which uses the actual CSS size of lazy-loaded images to select an image from the srcset, rather than relying on the values manually provided by the user. It will always be at least as accurate as the user's sizes value, and will often be more accurate. In cases where the user has erroneously fallen back tosizes="100vw"
, usingsizes="auto"
could reduce image download by 50% or more.On browsers which do not support sizes="auto", it is simply ignored, and srcset selection behavior will be unchanged.
When browser adoption for
sizes="auto"
increases, the behavior of NgOptimizedImage could be changed to rely onsizes="auto"
completely for lazy loaded images, without requiring the user to providesizes
at all. However, give the current partial state of adoption, I think this smaller change is the best option--it improves loading performance in some cases, and never makes it worse.CC: @AndrewKushnir @kara