
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
@cloudflare/component-dropdown
Advanced tools
Cloudflare Dropdown Component
Installation with yarn is recommended
$ yarn add @cloudflare/component-dropdown
import React from 'react';
import { Dropdown, DropdownLink, DropdownSeparator } from '../../src';
import { Button, ButtonGroup } from '@cloudflare/component-button';
import { Code } from '@cloudflare/component-code';
class DropdownComponent extends React.Component {
constructor(props) {
super(props);
this.state = {
dropdown1Open: false,
dropdown2Open: false
};
}
render() {
return (
<div>
<ButtonGroup>
<Button
type="primary"
onClick={() => this.setState({ dropdown1Open: true })}
>
Open Dropdown 1
</Button>
{this.state.dropdown1Open && (
<Dropdown onClose={() => this.setState({ dropdown1Open: false })}>
<DropdownLink to="/foo">Link to /foo</DropdownLink>
<DropdownLink to="/bar">Link to /bar</DropdownLink>
<DropdownSeparator />
<DropdownLink to="/baz">Link to /baz</DropdownLink>
<DropdownLink to="/bat">Link to /bat</DropdownLink>
<DropdownLink disabled to="/bad">
Disabled dropdown link
</DropdownLink>
</Dropdown>
)}
<Button
type="success"
onClick={() => this.setState({ dropdown2Open: true })}
>
Open Dropdown 2
</Button>
{this.state.dropdown2Open && (
<Dropdown
align="right"
onClose={() => this.setState({ dropdown2Open: false })}
>
<DropdownLink to="/foo">Link to /foo</DropdownLink>
<DropdownLink to="/bar">Link to /bar</DropdownLink>
<DropdownSeparator />
<DropdownLink to="/baz">Link to /baz</DropdownLink>
<DropdownLink to="/bat">Link to /bat</DropdownLink>
</Dropdown>
)}
</ButtonGroup>
<p>
{`You can also optionally pass an align prop with either "left" or
"right"`}
</p>
<Code isCodeBlock={true}>{`<Dropdown align="right" ...>`}</Code>
<p>
<Code>{`<DropdownLink/>`}</Code> just wraps cf-component-link so you
can use either to to specify a route or pass an onClick handler.
</p>
<Code isCodeBlock={true}>{`<DropdownLink to="/my-route"/>`}</Code>
<Code
isCodeBlock={true}
>{`<DropdownLink onClick={this.handleClick}/>`}</Code>
<p>
Note: to requires that you setup cf-util-route-handler prior to
routing.
</p>
</div>
);
}
}
export default DropdownComponent;
FAQs
Cloudflare Dropdown Component
The npm package @cloudflare/component-dropdown receives a total of 2,616 weekly downloads. As such, @cloudflare/component-dropdown popularity was classified as popular.
We found that @cloudflare/component-dropdown demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 37 open source maintainers collaborating on the project.
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
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.