4.14.0 • Published 11 months ago

mscodepl-react-sidebar v4.14.0

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

React Sidebar

compitable with react js and next js.

Installation Commands

npm install react-icons mscodepl-react-sidebar

How to use

  1. import css in index.js/ts or app.jsx or app.tsx.
import 'mscodepl-react-sidebar/react-sidebar/dist/react-sidebar.css';
  1. use the component

(React Js Project)

import { FiBox, FiActivity, FiAirplay, FiAperture } from "react-icons/fi";
import { BrowserRouter, Route, Routes } from 'react-router-dom';
import { SidebarWrapper, PageWrapper, createReactNavLink } from 'mscodepl-react-sidebar';

const App=()=>{
  const navItems: (() => JSX.Element)[] = [
    createReactNavLink(NavLink, "Options", "#", <FiBox />, [
      {
        icon: <FiList />,
        title: "List",
        to: "/list"
      }, {
        icon: <FiActivity />,
        title: "Create New",
        to: "/create"
      }, {
        icon: <FiAirplay />,
        title: "Edit Now",
        to: "/edit"
      }
    ]),
    createReactNavLink(NavLink, "About", "/about", <FiAperture />),
  ]

  return <>
      <SidebarWrapper
          logoUrl='https://mscode.pl/assets/img/Sygnet%20Niebieski.png'
          userName='MsCode'
          userEmail='example@gmail.com' // user email for gravatar
          navItems={navItems}
          activeStyle="outline" //fill , outline
          onLogOut={() => { }}
          onLogoClick={() => { }}
          onProfileImgClick={() => { }}
          >
          <BrowserRouter>
              <Routes>
                  <Route path='/' element={<PageWrapper className="bg-green">
                      home page
                  </PageWrapper>} />

                  <Route path='/list' element={<ListPage />} />
                  <Route path='/create' element={<CreateNewPage />} />
                  <Route path='/edit' element={<EditPage />} />

                  <Route path='/about' element={<PageWrapper>
                      about page
                  </PageWrapper>} />
              </Routes>
          </BrowserRouter>
      </SidebarWrapper>
  </>
}

(Next Js Project)

// _App.js file
import 'mscodepl-react-sidebar/dist/react-sidebar.css'
import { SidebarWrapper, createNextNavLink } from 'mscodepl-react-sidebar'
import { FiBox, FiAperture } from 'react-icons/fi'
import NextLink from 'next/link'

function MyApp({ Component, pageProps }) {

  const navItems = [
    createNextNavLink(NextLink, "Home", "/", <FiBox />),
    createNextNavLink(NextLink, "Options", "#", <FiBox />, [
      {
        icon: <FiBox />,
        title: "List",
        to: "/list"
      }, {
        icon: <FiBox />,
        title: "Create Now",
        to: "/create"
      },
    ]),
    createNextNavLink(NextLink, "About", "/about", <FiAperture />),
  ]

  return <SidebarWrapper
    logoUrl='https://mscode.pl/assets/img/Sygnet%20Niebieski.png'
    userName='MsCode'
    userEmail='example@gmail.com' // user email for gravatar
    navItems={navItems}
    activeStyle="outline" //fill , outline
    onLogOut={() => { }}
    onLogoClick={() => { }}
    onProfileImgClick={() => { }}
  >
    <Component {...pageProps} />
  </SidebarWrapper>
}

export default MyApp

in other next js page

// page/about.js
import { PageWrapper } from 'mscodepl-react-sidebar'
import React from 'react'

export default function about() {
    return (
        <PageWrapper className="bg-green">
            <h1>about page</h1>
        </PageWrapper>
    )
}

screenshot

screenshot screenshot screenshot screenshot

THIS IS FORK OF @milon27/react-sidebar

4.14.0

11 months ago

4.13.0

12 months ago

4.12.7

12 months ago

4.12.6

12 months ago

4.12.5

12 months ago

4.12.4

12 months ago

4.12.3

12 months ago

4.12.2

12 months ago

4.12.1

12 months ago

4.12.0

12 months ago