
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
@radix-ui/react-menu
Advanced tools
@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
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.