-
Notifications
You must be signed in to change notification settings - Fork 160
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
BED-5576: Unset overflow when FixedSizeList has fewer than 2 nodes #1312
Conversation
CLA Assistant Lite bot All contributors have signed the CLA ✍️ ✅ |
I have read the CLA Document and I hereby sign the CLA |
95c06f3
to
ec4535b
Compare
packages/javascript/bh-shared-ui/src/components/VirtualizedNodeList.tsx
Outdated
Show resolved
Hide resolved
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.
There is a margin being applied by the List component on lines 40-42 - perhaps another solution would be to simply remove that margin?
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.
We have implemented a similar virtualized list in our <InfiniteScrollingTable>
- this list does not have the top margin. I am not super clear on how these lists are receiving their styles but by removing the top margin from this <VirtualizedNodeList>
component we could make the two slightly more uniform.
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.
But either solution works so I'll approve your changes and let you decide if you prefer this approach instead!
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.
I'll dig in a little deeper to compare. Removing the top margin was my first instinct as well. I'll compare the solutions. I know it's tiny issue, but should only take a few mins to compare.
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.
The margin solution is much cleaner and still has the advantage of applying the fix for all implementations. I think this is probably the better call, though there would still be a potential for a very minor visual regression without checking all places this component is used. But it shouldn't affect functionality and still address this issue.
052383a
to
c8376ef
Compare
c8376ef
to
3ee38b5
Compare
Description
This PR adds a conditional styling override to VirtualizedNodeList. If there are fewer than 2 nodes, overflow will not be applied.
Motivation and Context
This PR addresses: BED-5576
Our VirtualizedNodeList components will display the scrollbar even if single node is rendered. This components uses React Window's FixedSizeList component, which unconditionally applies an 'auto' overflow, causing the scrollbar to always be displayed.
How Has This Been Tested?
Manually tested using demo data set.
Screenshots:
Before (notice

DC01.PHANTOM.CORP
is slightly cut off at bottom):After:
Types of changes
Checklist: