useMenuTriggerState

Manages state for a menu trigger. Tracks whether the menu is currently open, and controls which item will receive focus when it opens.

installyarn add react-stately
version3.17.0
usageimport {useMenuTriggerState} from 'react-stately'

API#


useMenuTriggerState( (props: )):

Interface#


Properties

NameTypeDescription
focusStrategyControls which item will be auto focused when the menu opens.
isOpenbooleanWhether the overlay is currently open.

Methods

MethodDescription
open( (focusStrategy?: null )): voidOpens the menu.
toggle( (focusStrategy?: null )): voidToggles the menu.
setOpen( (isOpen: boolean )): voidSets whether the overlay is open.
close(): voidCloses the overlay.

Example#


See the docs for useMenu in react-aria for an example of useMenuTriggerState.