
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@flive/react-navigation-drawer
Advanced tools
This module displays a navigation drawer that appears as an overlay, it extend react-kit Modal
.
npm install @flive/react-navigation-drawer
Simple example with menuLinks
, navigation tree as a json for generating accordions.
<NavigationDrawer
title="Menu"
onChange={({ state }) => console.log({ state })}
toggle={
<Button variant="secondary" type="button">
Simple example
</Button>
}
userProfile={{
avatarIdentifier: 'my@email.com',
content: 'First name, Last name',
linkComponent: 'a'
}}
menuLinks={[
{
label: 'Link label 1',
key: 'link1',
children: [
{ label: 'Link label 2', key: 'link2', linkComponent: 'a' },
{ label: 'Link label 3', key: 'link3' }
]
},
{
label: 'Link label 2',
key: 'link2',
children: [
{ label: 'Link label 2', key: 'link2' },
{
label: 'Link label 3',
key: 'link3',
children: [{ label: 'Link label 4', key: 'link4' }]
}
]
},
{ label: 'Link label 3', key: 'link3' },
{ label: 'Link label 4', key: 'link4' }
]}
/>
Custom example with a child as function
<NavigationDrawer
title="Menu"
onChange={({ state }) => console.log({ state })}
toggle={
<Button variant="secondary" type="button">
Custom render
</Button>
}
userProfile={{
avatarImgSource:
'https://www.gravatar.com/avatar/205e460b479e2e5b48aec07710c08d50',
content: 'Helena Brauer'
}}
>
{({ handleClose }) => (
<Accordion margin="none" boxShadow="none">
<AccordionItem label="Level 1 label">
<Accordion>
<AccordionLink onClick={handleClose}>Accordion link 1</AccordionLink>
<AccordionLink onClick={handleClose}>Accordion link 2</AccordionLink>
<AccordionLink onClick={handleClose}>Accordion link 3</AccordionLink>
<AccordionItem label="Level 2 label">
<Accordion>
<AccordionLink onClick={handleClose}>
Accordion link 4
</AccordionLink>
<AccordionLink onClick={handleClose}>
Accordion link 5
</AccordionLink>
<AccordionLink onClick={handleClose}>
Accordion link 6
</AccordionLink>
<AccordionItem label="Level 3 label">
<AccordionLink onClick={handleClose}>
Accordion link 6
</AccordionLink>
</AccordionItem>
</Accordion>
</AccordionItem>
</Accordion>
</AccordionItem>
<AccordionLink onClick={handleClose}>Accordion link 2</AccordionLink>
<AccordionLink onClick={handleClose}>Accordion link 3</AccordionLink>
</Accordion>
)}
</NavigationDrawer>
This project is licensed under a custom license. See the LICENSE file for details.
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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.