-
Notifications
You must be signed in to change notification settings - Fork 85
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(multi-action-button, split-button): ensure screen reader commands can navigate menu popup #7074
base: master
Are you sure you want to change the base?
Conversation
@@ -679,49 +643,6 @@ test("should hide the additional buttons when a 'Escape' keydown event detected | |||
expect(screen.queryByRole("list")).not.toBeInTheDocument(); | |||
}); | |||
|
|||
test("should render with the correct styles when 'align' prop is 'right'", async () => { |
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.
question: are testing this stuff anywhere else? I think PW would be better until we have play functions implemented but unit tests will also be okay in the interim etc
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.
Removed these as they seemed to be pretty much the same as the tests here
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.
Also looks like we have PW tests too
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 one thanks for checking
); | ||
|
||
// check if a child button is focused, if not hide the menu | ||
const checkFocus = useCallback(() => { | ||
const buttonChildren = getButtonChildren(); |
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.
suggestion (non-blocking): You could short-circuit the function or conditionally assign you can avoid checking it's truthyness on line 91
if (!buttonChildren) return;
or
const buttonChildren = getButtonChildren() || [] ;
… can navigate menu popup Fixes issue where screen reader users using VoiceOver could not navigate into the menu buttons using commands VO+Space to open the menu then VO+right to navigate. The first option will now gain focus on open using any interaction method, including onClick, keyboard navigation and screen reader controls. fix #7054
fix #7054
Proposed behaviour
Current behaviour
Checklist
d.ts
file added or updated if requiredQA
Additional context
Testing instructions
Best tested in an example containing several focusable elements e.g.: "Sizes" story.