-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
fix: remove gap if its last element in line #1188
Closed
intergalacticspacehighway
wants to merge
3
commits into
facebook:main
from
intergalacticspacehighway:fix/remove-gap-last-element
Closed
Changes from 2 commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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.
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.
This is a good catch! I was looking for ages what the culprit might be.
I'm still trying to fully grok this step - but my feeling is the
betweenMainDim
should never be applied on the first child. I.e. on these lines:-yoga/yoga/Yoga.cpp
Lines 2593 to 2601 in 60dd791
I think there was always a bug here, and
collectedFlexItemsValues.mainDim
would be too large in the case any sort of justification. It would include one morebetweenMainDim
than it should have.However, I think we got away with it because either justification is only going to do something (i.e. set
betweenMainDim
to something bigger than zero) when the container has its size defined - and when its size is defined, we probably don't usecollectedFlexItemsValues.mainDim
.So in the case you did
justify-content: space-between
and the container only gets sized by its contents, the children wouldn't be justified, andbetweenMainDim
would be zero.In the case it had an explicit size and
betweenMainDim
was not zero, the explicit size was used instead, so it never really mattered that themainDim
was too large.Maybe we could do
const float appliedBetweenMainDim = i != 0 ? betweenMainDim : 0
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.
@NickGerleman does that make sense to you?
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.
@jacobp100 that makes sense to me!
But
collectedFlexItemsValues.mainDim
is also used to layout child items here. If we don't addbetweenMainDim
for the first item, there won't be a gap between first and second child. Also, verified by testing it.I am trying to run tests but getting below error on running buck test //:yoga
No build file at BUCK when resolving target //:yoga.
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.
Ah yeah - that makes sense. Maybe here (before the child is moved) we could add:-
Then remove that from the
mainDim
calculations belowThere's an issue around this code where
auto
margins turn negative. But assuming the fix gets merged, we need to be careful that if you have a gap and an auto margin, the gap is still applied. I.e. these two views should never be less than 10px apartThere 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.
okay, yeah. Just wanted to try a simple fix without touching too many things 😅. Should be easier to make changes once we have tests running. Do you think there's an issue with the approach of removing the gap for the last item?
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.
Just added #1189 - I really just wanna see what happens after running on CI
Did the stuff I said about the how we were always over-shooting the
mainDim
make sense? Assuming it doesn't cause extra issues to fix, it'd be nice to fix so we're less likely to see regressions laterThere 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.
Reading through this, is this a correct summary?
betweenMainDim
controls space between items (both gap, and justifications which add space between children)We can run through an example, where a container has size 100px, we have two children of size 25px, no gap, and
YGJustifySpaceEvenly
. We would expect spacing to take a total of 50px extra in total then. Per-item, we would addleadingMainDim
andbetweenMainDim
of the following:So I am seeing the same issue where we are over-counting
betweenMainDim
during justification.Separately, if we have
YGJustifyCenter
, we undercount by quite a bit since we only sum the leading gap, but never the trailing gap.In the block @intergalacticspacehighway mentions, we position the item based on the accumulated offset, and the leading space for the current item. So, positioning the second item correctly would assume
betweenMainDim
, has already been added.So I agree that omitting it for the first child does not seem to be correct.edit: I see, we are adding to the main dim before positioning in the proposed change.I think fixing up this logic to be more consistently correct would be worth doing, but also I think it might be a little risky unless we can super-conclusively determine the incorrect
collectedFlexItemsValues.mainDim
would never come into place during justification. And given the current timing around the holidays, I would be weary to make that sort of change at this specific moment.So, I think instead, we should stick with the fix @intergalacticspacehighway has for now of not adding gap to
betweenMainDim
when we are the last item. Though, as a matter of style, I agree with the note in the description that mutating the value is a bit unclear. So I think it would be better to instead have separate variables for justification gap, and gap derived gap, so that we could declarebetweenMainDim
once in the inner scope.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.
@NickGerleman My understanding is:-
Previously,
betweenMainDim
acted as a gap, but was only used for justification purposesWe were adding we were adding a total
betweenMainDim * children.length
tomainDim
- but since this is a distance between children, we should add a totalbetweenMainDim * (children.length - 1)
.I believe this was never noticed this bug because for justification to do anything - meaning
betweenMainDim != 0
- the container needs an explicit main axis size. So even thoughmainDim
was too big, it was just ignoredWhen the container did not have an explicit axis size,
betweenMainDim
was0
, so adding one too manybetweenMainDim
s, did not have an effectThe
gap
property leveragedbetweenMainDim
, so now in the case that a container does not have an explicit axis size, it's possible forbetweenMainDim
to be greater than zero, and suddenly it does matterI think the real fix is to not include
betweenMainDim
for the last child at all - not just subtract thegap
portion ofbetweenMainDim
for the last childHope that makes sense 😅