-
Notifications
You must be signed in to change notification settings - Fork 4
Fix a11y issues in sidebar menu component #579
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
fateeand
wants to merge
8
commits into
master
Choose a base branch
from
555-fix-a11y-issues-in-sidebar-menu-component
base: master
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
8 commits
Select commit
Hold shift + click to select a range
5214e63
Fix a11y issues in sidebar menu component
fateeand b41ca2c
fix stale UT
fateeand 5a0673d
update InputModalityService
fateeand 386d8a6
add type
fateeand 299d6bc
remove menubar role
fateeand 3425863
update input modality service name
fateeand 361816b
add doc for CPS_INPUT_MODALITY_SERVICE
fateeand d9379fa
address feedback
fateeand 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
Some comments aren't visible on the classic Files Changed page.
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
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
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
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
120 changes: 74 additions & 46 deletions
120
projects/cps-ui-kit/src/lib/components/cps-sidebar-menu/cps-sidebar-menu.component.html
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 |
|---|---|---|
| @@ -1,50 +1,78 @@ | ||
| <div | ||
| class="cps-sidebar-menu" | ||
| [style.height]="height" | ||
| [ngClass]="{ 'cps-sidebar-menu-collapsed': !isExpanded }"> | ||
| @for (item of items; track item) { | ||
| @if (item.url) { | ||
| <a | ||
| class="cps-sidebar-menu-item" | ||
| [routerLink]="[item.url]" | ||
| routerLinkActive="active" | ||
| [routerLinkActiveOptions]="{ exact: exactRoutes }" | ||
| [ngClass]="{ disabled: item.disabled }"> | ||
| <cps-icon [icon]="item.icon" size="normal"> </cps-icon> | ||
| <span | ||
| class="cps-sidebar-menu-item-label" | ||
| [@onExpand]="isExpanded ? 'expanded' : 'collapsed'"> | ||
| {{ item.title }} | ||
| </span> | ||
| </a> | ||
| [style.height]="cvtHeight()" | ||
| [class.cps-sidebar-menu-collapsed]="!isExpanded"> | ||
| <nav | ||
| class="cps-sidebar-menubar" | ||
| [attr.aria-label]="ariaLabel" | ||
| [attr.aria-description]="`Sidebar ${isExpanded ? 'expanded' : 'collapsed'}`"> | ||
| @for (item of items; track item) { | ||
| @if (item.url) { | ||
| <a | ||
| class="cps-sidebar-menu-item" | ||
| tabindex="0" | ||
| [routerLink]="item.disabled ? null : [item.url]" | ||
| routerLinkActive="active" | ||
| ariaCurrentWhenActive="page" | ||
| [routerLinkActiveOptions]="{ exact: exactRoutes }" | ||
| [class.disabled]="item.disabled" | ||
| [attr.aria-disabled]="item.disabled || null" | ||
| [attr.aria-label]="item.title"> | ||
| <cps-icon [icon]="item.icon" size="normal" aria-hidden="true"> | ||
| </cps-icon> | ||
| <span | ||
| class="cps-sidebar-menu-item-label" | ||
| [@onExpand]="isExpanded ? 'expanded' : 'collapsed'"> | ||
| {{ item.title }} | ||
| </span> | ||
| </a> | ||
| } | ||
| @if (!item.url) { | ||
| <cps-menu | ||
| #popupMenu | ||
| [items]="item.items || []" | ||
| [header]="item.title" | ||
| [focusOnShow]="false" | ||
| showTransitionOptions="0s" | ||
| hideTransitionOptions="0s" | ||
| [withArrow]="false" | ||
| (containerMouseLeave)="leaveMenu($event, popupMenu)"> | ||
| </cps-menu> | ||
| <button | ||
| type="button" | ||
| (mouseenter)="showMenu($event, popupMenu)" | ||
| (mouseleave)="leaveMenu($event, popupMenu)" | ||
| (focusin)="showMenu($event, popupMenu, item)" | ||
| (focusout)="leaveMenu($event, popupMenu)" | ||
| (click)="toggleMenu($event, popupMenu, item)" | ||
| class="cps-sidebar-menu-item menu-trigger" | ||
| [class.active]="isActive(item)" | ||
| [class.menu-open]="popupMenu.isVisible()" | ||
| [class.disabled]="item.disabled" | ||
| [attr.aria-haspopup]="'menu'" | ||
| [attr.aria-expanded]=" | ||
| focusedItemWithMenu === item ? popupMenu.isVisible() : null | ||
| " | ||
| [attr.aria-current]="isActive(item) ? 'page' : null" | ||
| [attr.aria-disabled]="item.disabled || null" | ||
| [attr.aria-label]="item.title"> | ||
| <cps-icon [icon]="item.icon" size="normal" aria-hidden="true"> | ||
| </cps-icon> | ||
| <span | ||
| class="cps-sidebar-menu-item-label" | ||
| [@onExpand]="isExpanded ? 'expanded' : 'collapsed'"> | ||
| {{ item.title }} | ||
| </span> | ||
| </button> | ||
| } | ||
| } | ||
| @if (!item.url) { | ||
| <cps-menu | ||
| #popupMenu | ||
| [items]="item.items || []" | ||
| [header]="item.title" | ||
| showTransitionOptions="0s" | ||
| hideTransitionOptions="0s" | ||
| [withArrow]="false"> | ||
| </cps-menu> | ||
| <div | ||
| (click)="toggleMenu($event, popupMenu)" | ||
| class="cps-sidebar-menu-item menu-trigger" | ||
| [ngClass]="{ | ||
| active: isActive(item), | ||
| 'menu-open': popupMenu.isVisible(), | ||
| disabled: item.disabled | ||
| }"> | ||
| <cps-icon [icon]="item.icon" size="normal"> </cps-icon> | ||
| <span | ||
| class="cps-sidebar-menu-item-label" | ||
| [@onExpand]="isExpanded ? 'expanded' : 'collapsed'"> | ||
| {{ item.title }} | ||
| </span> | ||
| </div> | ||
| } | ||
| } | ||
| <div class="expand-area" (click)="toggleSidebar()"> | ||
| <cps-icon icon="menu-shrink" size="fill"> </cps-icon> | ||
| </div> | ||
| </nav> | ||
| <button | ||
| type="button" | ||
| class="expand-area" | ||
| (click)="toggleSidebar()" | ||
| [attr.aria-label]="isExpanded ? 'Collapse sidebar' : 'Expand sidebar'" | ||
| [attr.aria-expanded]="isExpanded"> | ||
| <cps-icon icon="menu-shrink" size="normal" aria-hidden="true"> </cps-icon> | ||
| </button> | ||
| </div> | ||
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.