-
-
Notifications
You must be signed in to change notification settings - Fork 39
Fix context submenus overflowing past the bottom edge #1666
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
Open
LuisMend12
wants to merge
4
commits into
Valour-Software:version/0.8.0
Choose a base branch
from
LuisMend12:fix/submenu-bottom-overflow
base: version/0.8.0
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
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
5bf76ed
Extract testable submenu boundary math, add bottom-overflow fix + dem…
LuisMend12 68d268f
Trim comments per review feedback
LuisMend12 4003f10
Update Valour/Tests/Js/context-menu-reposition.test.mjs
LuisMend12 611795c
Update Valour/Client/ContextMenu/ContextMenuRoot.razor.js
LuisMend12 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 hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| import { test } from 'node:test'; | ||
| import assert from 'node:assert/strict'; | ||
|
|
||
| // computeSubmenuTranslate must keep submenus fully inside the viewport on all four edges. | ||
| // Submenus anchor via `bottom: -50%` off their parent button, so one | ||
| // near the bottom edge can open a submenu that extends past the viewport bottom. | ||
| const checks = []; | ||
| const check = (name, actual, expected) => checks.push([name, actual, expected]); | ||
|
|
||
| const { computeSubmenuTranslate } = await import('../../Client/ContextMenu/ContextMenuRoot.razor.js'); | ||
|
|
||
| const windowWidth = 1280; | ||
| const windowHeight = 720; | ||
|
|
||
| check('1. submenu fully in bounds gets no correction', | ||
| computeSubmenuTranslate({ right: 500, top: 100, bottom: 300 }, windowWidth, windowHeight), | ||
| { translateX: 0, translateY: 0 }); | ||
|
|
||
| check('2. submenu overflowing the right edge is pulled left by the overflow plus margin', | ||
| computeSubmenuTranslate({ right: 1300, top: 100, bottom: 300 }, windowWidth, windowHeight), | ||
| { translateX: -30, translateY: 0 }); | ||
|
|
||
| check('3. submenu overflowing the top edge is pushed down by the overflow plus margin', | ||
| computeSubmenuTranslate({ right: 500, top: -15, bottom: 300 }, windowWidth, windowHeight), | ||
| { translateX: 0, translateY: 25 }); | ||
|
|
||
| check('4. submenu overflowing the bottom edge is pulled up by the overflow plus margin', | ||
| computeSubmenuTranslate({ right: 500, top: 650, bottom: 760 }, windowWidth, windowHeight), | ||
| { translateX: 0, translateY: -50 }); | ||
|
|
||
| check('5. right and bottom overflow are corrected independently at once', | ||
| computeSubmenuTranslate({ right: 1320, top: 650, bottom: 780 }, windowWidth, windowHeight), | ||
| { translateX: -50, translateY: -70 }); | ||
|
|
||
| check('6. top-edge overflow takes precedence over bottom-edge overflow', | ||
| computeSubmenuTranslate({ right: 500, top: -5, bottom: 900 }, windowWidth, windowHeight), | ||
| { translateX: 0, translateY: 15 }); | ||
|
|
||
| check('7. custom margin is honored', | ||
| computeSubmenuTranslate({ right: 500, top: 100, bottom: 740 }, windowWidth, windowHeight, 0), | ||
| { translateX: 0, translateY: -20 }); | ||
|
|
||
| for (const [name, actual, expected] of checks) { | ||
| test(name, () => assert.deepEqual(actual, expected)); | ||
| } |
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.
I think it's too much to have a dedicated constant for someting used only once.