-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
962 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
node_modules | ||
build |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,286 @@ | ||
# react-side-navbar | ||
Side Navbar is an additional navigation component that provides extensive support and a clear way for navigating through complex websites with hundreds of links and subpages. | ||
|
||
Check out [React Side Navbar Documentation](https://mdbootstrap.com/docs/react/extended/side-navbar/) for detailed instructions & even more examples. | ||
|
||
## Basic example | ||
|
||
![React Side Navbar](https://mdbootstrap.com/img/Marketing/github/side-navbar/basic.png) | ||
|
||
```js | ||
import React, { useState } from 'react'; | ||
import { | ||
MDBContainer, | ||
MDBNavbar, | ||
MDBNavbarBrand, | ||
MDBNavbarToggler, | ||
MDBIcon, | ||
MDBNavbarNav, | ||
MDBNavbarItem, | ||
MDBNavbarLink, | ||
MDBDropdown, | ||
MDBDropdownToggle, | ||
MDBDropdownMenu, | ||
MDBDropdownItem, | ||
MDBDropdownLink, | ||
MDBCollapse, | ||
MDBRipple, | ||
MDBBadge, | ||
MDBInput, | ||
MDBListGroup, | ||
MDBListGroupItem | ||
} from 'mdb-react-ui-kit'; | ||
|
||
export default function Basic() { | ||
const [showShow, setShowShow] = useState(false); | ||
|
||
const toggleShow = () => setShowShow(!showShow); | ||
|
||
return ( | ||
<> | ||
<link | ||
href="https://use.fontawesome.com/releases/v5.15.1/css/all.css" | ||
rel="stylesheet" | ||
/> | ||
<MDBCollapse show={showShow} tag="nav" className="d-lg-block bg-white sidebar"> | ||
<div className="position-sticky"> | ||
<MDBListGroup flush className="mx-3 mt-4"> | ||
|
||
<MDBRipple rippleTag='span'> | ||
<MDBListGroupItem tag='a' href='#' action className='border-0 border-bottom rounded rounded'> | ||
<MDBIcon fas icon="tachometer-alt me-3" /> | ||
Main Dashboard | ||
</MDBListGroupItem> | ||
</MDBRipple> | ||
|
||
<MDBRipple rippleTag='span'> | ||
<MDBListGroupItem tag='a' href='#' action className='border-0 border-bottom rounded' active aria-current='true'> | ||
<MDBIcon fas icon="chart-area me-3" /> | ||
Website traffic | ||
</MDBListGroupItem> | ||
</MDBRipple> | ||
|
||
<MDBRipple rippleTag='span'> | ||
<MDBListGroupItem tag='a' href='#' action className='border-0 border-bottom rounded'> | ||
<MDBIcon fas icon="lock me-3" /> | ||
Password | ||
</MDBListGroupItem> | ||
</MDBRipple> | ||
|
||
<MDBRipple rippleTag='span'> | ||
<MDBListGroupItem tag='a' href='#' action className='border-0 border-bottom rounded'> | ||
<MDBIcon fas icon="chart-line me-3" /> | ||
Analitics | ||
</MDBListGroupItem> | ||
</MDBRipple> | ||
|
||
<MDBRipple rippleTag='span'> | ||
<MDBListGroupItem tag='a' href='#' action className='border-0 border-bottom rounded'> | ||
<MDBIcon fas icon="chart-pie me-3" /> | ||
SEO | ||
</MDBListGroupItem> | ||
</MDBRipple> | ||
|
||
<MDBRipple rippleTag='span'> | ||
<MDBListGroupItem tag='a' href='#' action className='border-0 border-bottom rounded'> | ||
<MDBIcon far icon="chart-bar me-3" /> | ||
Orders | ||
</MDBListGroupItem> | ||
</MDBRipple> | ||
|
||
<MDBRipple rippleTag='span'> | ||
<MDBListGroupItem tag='a' href='#' action className='border-0 border-bottom rounded'> | ||
<MDBIcon fas icon="globe me-3" /> | ||
International | ||
</MDBListGroupItem> | ||
</MDBRipple> | ||
|
||
<MDBRipple rippleTag='span'> | ||
<MDBListGroupItem tag='a' href='#' action className='border-0 border-bottom rounded'> | ||
<MDBIcon fas icon="building me-3" /> | ||
Partners | ||
</MDBListGroupItem> | ||
</MDBRipple> | ||
|
||
<MDBRipple rippleTag='span'> | ||
<MDBListGroupItem tag='a' href='#' action className='border-0 border-bottom rounded'> | ||
<MDBIcon fas icon="calendar me-3" /> | ||
Calendar | ||
</MDBListGroupItem> | ||
</MDBRipple> | ||
|
||
<MDBRipple rippleTag='span'> | ||
<MDBListGroupItem tag='a' href='#' action className='border-0 border-bottom rounded'> | ||
<MDBIcon fas icon="users me-3" /> | ||
User | ||
</MDBListGroupItem> | ||
</MDBRipple> | ||
|
||
<MDBRipple rippleTag='span'> | ||
<MDBListGroupItem tag='a' href='#' action className='border-0 rounded'> | ||
<MDBIcon fas icon="money-bill me-3" /> | ||
Sales | ||
</MDBListGroupItem> | ||
</MDBRipple> | ||
</MDBListGroup> | ||
</div> | ||
</MDBCollapse> | ||
|
||
<MDBNavbar expand='lg' light bgColor='light'> | ||
<MDBContainer fluid> | ||
<MDBNavbarNav className="d-flex flex-row align-items-center w-auto"> | ||
<MDBNavbarToggler | ||
type='button' | ||
aria-label='Toggle navigation' | ||
onClick={toggleShow} | ||
> | ||
<MDBIcon icon='bars' fas /> | ||
</MDBNavbarToggler> | ||
<MDBNavbarBrand href='#'> | ||
<img | ||
src='https://mdbootstrap.com/img/logo/mdb-transaprent-noshadows.webp' | ||
height='30' | ||
alt='' | ||
loading='lazy' | ||
/> | ||
</MDBNavbarBrand> | ||
|
||
<MDBCollapse navbar> | ||
<MDBNavbarItem className="d-flex align-items-center"> | ||
<MDBInput label='Search (ctrl + "/" to focus)' id='form1' type='text' /> | ||
<MDBIcon fas icon="search mx-2" /> | ||
</MDBNavbarItem> | ||
</MDBCollapse> | ||
|
||
|
||
</MDBNavbarNav> | ||
<MDBNavbarNav className="d-flex flex-row justify-content-end w-auto"> | ||
|
||
<MDBNavbarItem className='me-3 me-lg-0 d-flex align-items-center'> | ||
<MDBDropdown> | ||
|
||
<MDBDropdownToggle tag="a" href="#!" className="hidden-arrow nav-link"> | ||
<MDBIcon fas icon="bell" /> | ||
<MDBBadge color='danger' notification pill> | ||
1 | ||
</MDBBadge> | ||
</MDBDropdownToggle> | ||
|
||
<MDBDropdownMenu> | ||
<MDBDropdownItem> | ||
<MDBDropdownLink href="#">Some news</MDBDropdownLink> | ||
</MDBDropdownItem> | ||
<MDBDropdownItem> | ||
<MDBDropdownLink href="#">Another news</MDBDropdownLink> | ||
</MDBDropdownItem> | ||
<MDBDropdownItem> | ||
<MDBDropdownLink href="#">Something else here</MDBDropdownLink> | ||
</MDBDropdownItem> | ||
</MDBDropdownMenu> | ||
</MDBDropdown> | ||
</MDBNavbarItem> | ||
|
||
|
||
<MDBNavbarItem className='me-3 me-lg-0'> | ||
<MDBNavbarLink href='#'> | ||
<MDBIcon fas icon='fill-drip' /> | ||
</MDBNavbarLink> | ||
</MDBNavbarItem> | ||
<MDBNavbarItem className='me-3 me-lg-0'> | ||
<MDBNavbarLink href='#'> | ||
<MDBIcon fab icon='github' /> | ||
</MDBNavbarLink> | ||
</MDBNavbarItem> | ||
|
||
<MDBNavbarItem className='me-3 me-lg-0 d-flex align-items-center'> | ||
<MDBDropdown> | ||
|
||
<MDBDropdownToggle tag="a" href="#!" className="hidden-arrow nav-link"> | ||
<img src="https://mdbootstrap.com/img/Photos/Avatars/img (31).jpg" className="rounded-circle" height="22" alt="" loading="lazy" /> | ||
</MDBDropdownToggle> | ||
|
||
<MDBDropdownMenu> | ||
<MDBDropdownItem> | ||
<MDBDropdownLink href="#">My profile</MDBDropdownLink> | ||
</MDBDropdownItem> | ||
<MDBDropdownItem> | ||
<MDBDropdownLink href="#">Settings</MDBDropdownLink> | ||
</MDBDropdownItem> | ||
<MDBDropdownItem> | ||
<MDBDropdownLink href="#">Logout</MDBDropdownLink> | ||
</MDBDropdownItem> | ||
</MDBDropdownMenu> | ||
</MDBDropdown> | ||
</MDBNavbarItem> | ||
</MDBNavbarNav> | ||
|
||
</MDBContainer> | ||
</MDBNavbar> | ||
</> | ||
); | ||
} | ||
``` | ||
|
||
```css | ||
body { | ||
background-color: #fbfbfb; | ||
} | ||
|
||
@media (min-width: 992px) { | ||
.sidebar { | ||
height: unset!important; | ||
} | ||
} | ||
|
||
/* Sidebar */ | ||
.sidebar { | ||
position: fixed; | ||
top: 0; | ||
bottom: 0; | ||
left: 0; | ||
padding: 58px 0 0; | ||
/* Height of navbar */ | ||
box-shadow: 0 2px 5px 0 rgb(0 0 0 / 5%), 0 2px 10px 0 rgb(0 0 0 / 5%); | ||
width: 240px; | ||
/* z-index: 600; */ | ||
} | ||
|
||
.sidebar.show { | ||
height: 100vh; | ||
} | ||
|
||
@media (max-width: 992px) { | ||
.sidebar { | ||
width: 100%; | ||
} | ||
} | ||
|
||
.sidebar .active { | ||
border-radius: 5px; | ||
box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%); | ||
} | ||
|
||
.sidebar-sticky { | ||
position: relative; | ||
top: 0; | ||
height: calc(100vh - 48px); | ||
padding-top: 0.5rem; | ||
overflow-x: hidden; | ||
overflow-y: auto; | ||
/* Scrollable contents if viewport is shorter than content. */ | ||
} | ||
``` | ||
|
||
## How to use? | ||
|
||
1. Download MDB React - free UI KIT | ||
|
||
2. Choose your favourite customized component and click on the image | ||
|
||
3. Copy & paste the code into your MDB project | ||
|
||
[▶️ Subscribe to YouTube channel for web development tutorials & resources](https://www.youtube.com/MDBootstrap?sub_confirmation=1) | ||
|
||
## More examples | ||
|
||
[React Side Navbar Collapse: | ||
![React Side Navbar Collapse](https://mdbootstrap.com/img/Marketing/github/side-navbar/collapse.png)](https://mdbootstrap.com/docs/react/extended/side-navbar/#section-collapse) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"name": "@mdbootstrap/react-side-navbar", | ||
"version": "1.0.0", | ||
"description": "Side Navbar is an additional navigation component that provides extensive support and a clear way for navigating through complex websites with hundreds of links and subpages.", | ||
"dependencies": { | ||
"mdb-react-ui-kit": "^4.0.0", | ||
"react": "^18.1.0", | ||
"react-dom": "^18.1.0", | ||
"react-router-dom": "^6.3.0", | ||
"react-scripts": "5.0.1", | ||
"web-vitals": "^2.1.4" | ||
}, | ||
"scripts": { | ||
"start": "react-scripts start", | ||
"build": "react-scripts build", | ||
"test": "react-scripts test", | ||
"eject": "react-scripts eject" | ||
}, | ||
"keywords": [ | ||
"bootstrap", | ||
"navigation", | ||
"bootstrap5", | ||
"menu", | ||
"sidebar", | ||
"responsive-design", | ||
"bootstrap-template", | ||
"bootstrap-navigation", | ||
"bootstrap-slidebar", | ||
"bootstrap-sidenav", | ||
"template", | ||
"react" | ||
], | ||
"author": "MDBootstrap", | ||
"license": "MIT", | ||
"browserslist": { | ||
"production": [ | ||
">0.2%", | ||
"not dead", | ||
"not op_mini all" | ||
], | ||
"development": [ | ||
"last 1 chrome version", | ||
"last 1 firefox version", | ||
"last 1 safari version" | ||
] | ||
} | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<meta name="theme-color" content="#000000" /> | ||
<meta | ||
name="description" | ||
content="Web site created using create-react-app" | ||
/> | ||
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" /> | ||
<link | ||
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" | ||
rel="stylesheet" | ||
/> | ||
<link | ||
href="https://use.fontawesome.com/releases/v5.15.1/css/all.css" | ||
rel="stylesheet" | ||
/> | ||
|
||
<!-- | ||
manifest.json provides metadata used when your web app is installed on a | ||
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/ | ||
--> | ||
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> | ||
<!-- | ||
Notice the use of %PUBLIC_URL% in the tags above. | ||
It will be replaced with the URL of the `public` folder during the build. | ||
Only files inside the `public` folder can be referenced from the HTML. | ||
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will | ||
work correctly both with client-side routing and a non-root public URL. | ||
Learn how to configure a non-root public URL by running `npm run build`. | ||
--> | ||
<title>MDBReact5 Template App</title> | ||
</head> | ||
<body> | ||
<noscript>You need to enable JavaScript to run this app.</noscript> | ||
<div id="root"></div> | ||
<!-- | ||
This HTML file is a template. | ||
If you open it directly in the browser, you will see an empty page. | ||
You can add webfonts, meta tags, or analytics to this file. | ||
The build step will place the bundled scripts into the <body> tag. | ||
To begin the development, run `npm start` or `yarn start`. | ||
To create a production bundle, use `npm run build` or `yarn build`. | ||
--> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.