-
Notifications
You must be signed in to change notification settings - Fork 536
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
TreeView: Use roving tabIndex for focus management #2443
Conversation
Co-authored-by: Josh Black <joshblack@users.noreply.github.com>
🦋 Changeset detectedLatest commit: d7967da The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
size-limit report 📦
|
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.
Nice! From the implementation perspective, it's nice to see how much simpler this becomes. Excited to see how it reads compared to active descendant 👀
<> | ||
<VisuallyHidden role="status" aria-live="polite"> | ||
{ariaLiveMessage} | ||
</VisuallyHidden> | ||
<UlBox | ||
ref={containerRef} | ||
tabIndex={0} |
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.
✨
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.
We appreciate this thank you 😄 !
|
||
case 'ArrowRight': | ||
event.preventDefault() | ||
event.stopPropagation() |
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.
✨
Replaced
aria-activedescendant
with a roving tab index in TreeView based on feedback from the accessibility engineering review.This is not a consumer-facing change. The keyboard navigation should work the same as it did before.
👉 Try it out
CleanShot.2022-10-17.at.15.09.52.mp4
Known issue
If you focus on a loading item and the async request fails, focus is lost after closing the error dialog:
CleanShot.2022-10-17.at.15.14.56.mp4
I'll fix this in a separate PR.
Merge checklist
Take a look at the What we look for in reviews section of the contributing guidelines for more information on how we review PRs.