Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@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
Navigation drawer displayed in overlay
The npm package @flive/react-navigation-drawer receives a total of 2 weekly downloads. As such, @flive/react-navigation-drawer popularity was classified as not popular.
We found that @flive/react-navigation-drawer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.