
Research
npm Malware Targets Telegram Bot Developers with Persistent SSH Backdoors
Malicious npm packages posing as Telegram bot libraries install SSH backdoors and exfiltrate data from Linux developer machines.
@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
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 36 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.
Research
Malicious npm packages posing as Telegram bot libraries install SSH backdoors and exfiltrate data from Linux developer machines.
Security News
pip, PDM, pip-audit, and the packaging library are already adding support for Python’s new lock file format.
Product
Socket's Go support is now generally available, bringing automatic scanning and deep code analysis to all users with Go projects.