-
Notifications
You must be signed in to change notification settings - Fork 30
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
Use aspect ratio for new containers #12897
Open
Georges-GNM
wants to merge
14
commits into
main
Choose a base branch
from
gl/use-aspect-ratio-prop
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains 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
Size Change: -1 B (0%) Total Size: 958 kB ℹ️ View Unchanged
|
github-actions
bot
removed
the
run_chromatic
Runs chromatic when label is applied
label
Nov 26, 2024
github-actions
bot
removed
the
run_chromatic
Runs chromatic when label is applied
label
Nov 26, 2024
github-actions
bot
removed
the
run_chromatic
Runs chromatic when label is applied
label
Nov 26, 2024
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.
What does this change?
Makes use of the aspect ratio prop now getting passed by frontend.
This PR has been limited to adding it to the new containers - the majority of the PR is effectively just drilling the prop - with the older ones still using the existing logic determining the aspect ratio on those pictures, meaning those should remain unchanged.
Couple of points to flag:
the value is optional, but there is a point where it needs to become defined so it doesn't fall back on an unwanted aspect ratio. As such, I've added a
decideFallbackAspectRatio
in case frontend doesn't send anything over - it might feel like it defeats the purpose of passing the data through, but at some point in the future it should be possible to delete that logic.there is a test in the frontend project to ensure the aspect ratio is getting correctly set for various containers, however in terms of DCR, to ensure the stories still render properly, I've hardcoded the correct value in each container's story.
Why?
Part of this ticket
Screenshots