-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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(docs): resolve keyboard navigation issues on Actions menu #4528
base: canary
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,4 +1,4 @@ | ||||||||||||||||||||||||||||||||
import React from "react"; | ||||||||||||||||||||||||||||||||
import React, {useEffect, useCallback, useState} from "react"; | ||||||||||||||||||||||||||||||||
import {tv} from "tailwind-variants"; | ||||||||||||||||||||||||||||||||
import {clsx} from "@nextui-org/shared-utils"; | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
|
@@ -19,23 +19,48 @@ const windowIconStyles = tv({ | |||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
export const WindowActions: React.FC<WindowActionsProps> = ({title, className, ...props}) => { | ||||||||||||||||||||||||||||||||
const [isMenuVisible, setIsMenuVisible] = useState(true); | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
const handleKeyDown = useCallback((e: KeyboardEvent) => { | ||||||||||||||||||||||||||||||||
if (e.key === "Escape") { | ||||||||||||||||||||||||||||||||
setIsMenuVisible(false); // Close the menu | ||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||
}, []); | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
useEffect(() => { | ||||||||||||||||||||||||||||||||
window.addEventListener("keydown", handleKeyDown); | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
return () => { | ||||||||||||||||||||||||||||||||
window.removeEventListener("keydown", handleKeyDown); | ||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||
}, [handleKeyDown]); | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
if (!isMenuVisible) return null; // Hide component if menu is closed | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
return ( | ||||||||||||||||||||||||||||||||
<div | ||||||||||||||||||||||||||||||||
aria-hidden={!isMenuVisible} // Visibility state | ||||||||||||||||||||||||||||||||
aria-labelledby="window-actions-title" | ||||||||||||||||||||||||||||||||
className={clsx( | ||||||||||||||||||||||||||||||||
"flex items-center sticky top-0 left-0 px-4 z-10 justify-between h-8 bg-code-background w-full", | ||||||||||||||||||||||||||||||||
className, | ||||||||||||||||||||||||||||||||
)} | ||||||||||||||||||||||||||||||||
role="dialog" // Semantic role | ||||||||||||||||||||||||||||||||
{...props} | ||||||||||||||||||||||||||||||||
Comment on lines
+42
to
+48
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. 🛠️ Refactor suggestion Enhance ARIA attributes for better screen reader support Add the following ARIA attributes to improve accessibility:
<div
aria-hidden={!isMenuVisible}
aria-labelledby="window-actions-title"
+ aria-modal="true"
+ aria-describedby="window-actions-description"
+ tabIndex={-1}
role="dialog"
className={clsx(
|
||||||||||||||||||||||||||||||||
> | ||||||||||||||||||||||||||||||||
<div className="flex items-center gap-2 basis-1/3"> | ||||||||||||||||||||||||||||||||
<div className={windowIconStyles({color: "red"})} /> | ||||||||||||||||||||||||||||||||
<div className={windowIconStyles({color: "yellow"})} /> | ||||||||||||||||||||||||||||||||
<div className={windowIconStyles({color: "green"})} /> | ||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||
<div className="flex basis-1/3 h-full justify-center items-center"> | ||||||||||||||||||||||||||||||||
<div className="flex basis-1/3 h-full justify-center items-center" id="window-actions-title"> | ||||||||||||||||||||||||||||||||
{title && <p className="text-white/30 text-xs font-light">{title}</p>} | ||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||
<div className="flex basis-1/3" /> | ||||||||||||||||||||||||||||||||
<div className="flex basis-1/3"> | ||||||||||||||||||||||||||||||||
<button className="ml-auto text-xs text-white/50" onClick={() => setIsMenuVisible(false)}> | ||||||||||||||||||||||||||||||||
Close | ||||||||||||||||||||||||||||||||
</button> | ||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||
Comment on lines
+59
to
+63
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. 🛠️ Refactor suggestion Improve close button accessibility and UX The close button needs the following improvements:
<div className="flex basis-1/3">
<button
+ aria-label="Close window actions menu"
+ aria-keyshortcuts="Escape"
- className="ml-auto text-xs text-white/50"
+ className="ml-auto text-xs text-white/50 hover:text-white/70 focus:text-white/70 focus:outline-none focus:ring-2 focus:ring-white/20 rounded px-2 py-1"
onClick={() => setIsMenuVisible(false)}
>
Close
</button>
</div> 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||
}; |
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.
🛠️ Refactor suggestion
Enhance focus management and initial state handling
Consider the following improvements:
isMenuVisible
tofalse
by default to prevent the menu from being open on mount