Skip to content
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

Merged
merged 1 commit into from
Apr 4, 2025

Conversation

TheNando
Copy link
Contributor

@TheNando TheNando commented Apr 3, 2025

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):
image

After:

image

Types of changes

  • Bug fix (non-breaking change which fixes an issue)

Checklist:

Copy link

github-actions bot commented Apr 3, 2025

CLA Assistant Lite bot All contributors have signed the CLA ✍️ ✅

@TheNando TheNando added bug Something isn't working user interface A pull request containing changes affecting the UI code. labels Apr 3, 2025
@TheNando
Copy link
Contributor Author

TheNando commented Apr 3, 2025

I have read the CLA Document and I hereby sign the CLA

@TheNando TheNando force-pushed the BED-5576--virtualized-node-list-overflow branch from 95c06f3 to ec4535b Compare April 3, 2025 21:45
Copy link
Contributor

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?

Copy link
Contributor

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.

Copy link
Contributor

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!

Copy link
Contributor Author

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.

Copy link
Contributor Author

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.

@TheNando TheNando force-pushed the BED-5576--virtualized-node-list-overflow branch 4 times, most recently from 052383a to c8376ef Compare April 4, 2025 19:04
@TheNando TheNando force-pushed the BED-5576--virtualized-node-list-overflow branch from c8376ef to 3ee38b5 Compare April 4, 2025 19:33
@TheNando TheNando merged commit a85bd35 into main Apr 4, 2025
8 checks passed
@TheNando TheNando deleted the BED-5576--virtualized-node-list-overflow branch April 4, 2025 20:48
@github-actions github-actions bot locked and limited conversation to collaborators Apr 4, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Something isn't working user interface A pull request containing changes affecting the UI code.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants