
Security News
TC39 Advances 11 Proposals for Math Precision, Binary APIs, and More
TC39 advances 11 JavaScript proposals, with two moving to Stage 4, bringing better math, binary APIs, and more features one step closer to the ECMAScript spec.
@radix-ui/react-menu
Advanced tools
This is an internal utility, not intended for public usage.
@radix-ui/react-menu is a set of accessible, unstyled components for building menus in React applications. It provides a flexible and customizable way to create dropdown menus, context menus, and other types of menu interfaces.
Basic Menu
This code demonstrates a basic menu with three items. When an item is selected, an alert is shown.
import { Menu, MenuTrigger, MenuContent, MenuItem } from '@radix-ui/react-menu';
function BasicMenu() {
return (
<Menu>
<MenuTrigger>Open Menu</MenuTrigger>
<MenuContent>
<MenuItem onSelect={() => alert('Item 1 selected')}>Item 1</MenuItem>
<MenuItem onSelect={() => alert('Item 2 selected')}>Item 2</MenuItem>
<MenuItem onSelect={() => alert('Item 3 selected')}>Item 3</MenuItem>
</MenuContent>
</Menu>
);
}
Submenu
This code demonstrates a menu with a submenu. The submenu contains two items, and selecting any item triggers an alert.
import { Menu, MenuTrigger, MenuContent, MenuItem, MenuSub, MenuSubTrigger, MenuSubContent } from '@radix-ui/react-menu';
function Submenu() {
return (
<Menu>
<MenuTrigger>Open Menu</MenuTrigger>
<MenuContent>
<MenuItem onSelect={() => alert('Item 1 selected')}>Item 1</MenuItem>
<MenuSub>
<MenuSubTrigger>Submenu</MenuSubTrigger>
<MenuSubContent>
<MenuItem onSelect={() => alert('Subitem 1 selected')}>Subitem 1</MenuItem>
<MenuItem onSelect={() => alert('Subitem 2 selected')}>Subitem 2</MenuItem>
</MenuSubContent>
</MenuSub>
<MenuItem onSelect={() => alert('Item 2 selected')}>Item 2</MenuItem>
</MenuContent>
</Menu>
);
}
Context Menu
This code demonstrates a context menu that appears on right-click. The menu contains two items, and selecting any item triggers an alert.
import { Menu, MenuTrigger, MenuContent, MenuItem } from '@radix-ui/react-menu';
function ContextMenu() {
return (
<div onContextMenu={(e) => { e.preventDefault(); document.getElementById('context-menu-trigger').click(); }}>
Right-click here
<Menu>
<MenuTrigger id='context-menu-trigger' style={{ display: 'none' }} />
<MenuContent>
<MenuItem onSelect={() => alert('Context Item 1 selected')}>Context Item 1</MenuItem>
<MenuItem onSelect={() => alert('Context Item 2 selected')}>Context Item 2</MenuItem>
</MenuContent>
</Menu>
</div>
);
}
react-menu is a lightweight, accessible menu component for React. It provides similar functionality to @radix-ui/react-menu, including support for nested menus and context menus. However, it may not offer the same level of customization and flexibility as @radix-ui/react-menu.
react-aria is a library of React hooks that provides accessible UI primitives, including menu components. It offers a high degree of flexibility and accessibility, similar to @radix-ui/react-menu, but requires more manual setup and styling.
react-bootstrap is a popular library that provides Bootstrap components for React, including dropdown menus. While it offers a more opinionated and styled approach compared to @radix-ui/react-menu, it is less flexible in terms of customization.
react-menu
This is an internal utility, not intended for public usage.
FAQs
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
TC39 advances 11 JavaScript proposals, with two moving to Stage 4, bringing better math, binary APIs, and more features one step closer to the ECMAScript spec.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.