-
Notifications
You must be signed in to change notification settings - Fork 8.5k
[SharedUX Project Navigation] Fix issue with items in panel openers when side nav is collapsed #227705
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
Merged
Merged
[SharedUX Project Navigation] Fix issue with items in panel openers when side nav is collapsed #227705
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
cb4cadb
refactor navigation_panel to use @emotion/react
tsullivan de53c5e
Fix root cause
tsullivan d8b8d71
add unit test for fix
tsullivan d3de7e0
Merge branch 'main' into fix/227616
tsullivan 85ff614
fix and consolidate tests
tsullivan 0f6c643
Merge branch 'main' into fix/227616
tsullivan 8b9a74a
Merge branch 'main' into fix/227616
tsullivan 67e858f
Merge branch 'main' into fix/227616
tsullivan d45de7a
Merge branch 'main' into fix/227616
tsullivan 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
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 |
|---|---|---|
|
|
@@ -13,14 +13,13 @@ import { | |
| EuiPanel, | ||
| EuiWindowEvent, | ||
| keys, | ||
| useEuiTheme, | ||
| } from '@elastic/eui'; | ||
| import React, { useCallback, type FC } from 'react'; | ||
| import classNames from 'classnames'; | ||
|
|
||
| import type { PanelSelectedNode } from '@kbn/core-chrome-browser'; | ||
| import { usePanel } from './context'; | ||
| import { getNavPanelStyles, getPanelWrapperStyles } from './styles'; | ||
| import { navPanelStyles, panelWrapperStyles } from './styles'; | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Initially, I thought the bug was caused by styling, so I cleaned up styles in this component to use |
||
|
|
||
| const getTestSubj = (selectedNode: PanelSelectedNode | null): string | undefined => { | ||
| if (!selectedNode) return; | ||
|
|
@@ -33,7 +32,6 @@ const getTestSubj = (selectedNode: PanelSelectedNode | null): string | undefined | |
| }; | ||
|
|
||
| export const NavigationPanel: FC = () => { | ||
| const { euiTheme } = useEuiTheme(); | ||
| const { isOpen, close, getContent, selectedNode, selectedNodeEl } = usePanel(); | ||
|
|
||
| // ESC key closes PanelNav | ||
|
|
@@ -68,22 +66,21 @@ export const NavigationPanel: FC = () => { | |
| [close, selectedNodeEl] | ||
| ); | ||
|
|
||
| const panelWrapperClasses = getPanelWrapperStyles(); | ||
| const sideNavPanelStyles = getNavPanelStyles(euiTheme); | ||
| const panelClasses = classNames('sideNavPanel', 'eui-yScroll', sideNavPanelStyles); | ||
|
|
||
| if (!isOpen) { | ||
| return null; | ||
| } | ||
|
|
||
| const panelClasses = classNames('sideNavPanel', 'eui-yScroll'); | ||
|
|
||
| return ( | ||
| <> | ||
| <EuiWindowEvent event="keydown" handler={onKeyDown} /> | ||
| <div className={panelWrapperClasses}> | ||
| <EuiFocusTrap autoFocus css={{ height: '100%' }}> | ||
| <div css={panelWrapperStyles}> | ||
| <EuiFocusTrap autoFocus style={{ height: '100%' }}> | ||
| <EuiOutsideClickDetector onOutsideClick={onOutsideClick}> | ||
| <EuiPanel | ||
| className={panelClasses} | ||
| css={navPanelStyles} | ||
| hasShadow | ||
| borderRadius="none" | ||
| paddingSize="none" | ||
|
|
||
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
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 the actual fix