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

Fix unexpected line break of sidebar tab name popover #2716

Merged
merged 1 commit into from Oct 7, 2020

Conversation

HiroyasuNishiyama
Copy link
Member

  • Bugfix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)

Proposed changes

In some cases, popover of sidebar tab is displayed in two line as follows.

スクリーンショット 2020-10-07 9 48 31

This PR tries to fix this problem.

Checklist

  • I have read the contribution guidelines
  • For non-bugfix PRs, I have discussed this change on the forum/slack team.
  • I have run grunt to verify the unit tests pass
  • I have added suitable unit tests to cover the new/changed functionality

@@ -84,6 +84,7 @@ RED.popover = (function() {
var targetHeight = target.outerHeight();
var divHeight = div.height();
var divWidth = div.width();
var paddingRight = 10;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This does fix the one scenario you've highlighted, but I suspect similar issues will exist in all of the different orientations the popover could be used.

An alternative approach would be to use div.outerWidth() and div.outerHeight() in the lines above, so that the padding is accounted for there. But that would then require the deltaSizes magic numbers to be changed as they exist to counter-act padding.

To do this properly will require creating some tests (manual, not automated) that properly verify all of the different pieces of logic. I did have something for that when I wrote this code, but I can't find it now.

So on balance, I'm happy to merge this fix as-is for the given scenario as its the only known instance where the tooltip breaks.

Just noting for the future - some reworking will be need to get rid of the hardcoded numbers.

@knolleary knolleary merged commit 57e4265 into node-red:dev Oct 7, 2020
@HiroyasuNishiyama HiroyasuNishiyama deleted the fix-sidebar-tab-popup branch February 12, 2021 15:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants