New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

mscodepl-react-sidebar

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mscodepl-react-sidebar

compitable with react js and next js.

latest
Source
npmnpm
Version
4.14.0
Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

React Sidebar

compitable with react js and next js.

Installation Commands

npm install react-icons mscodepl-react-sidebar

How to use

  • import css in index.js/ts or app.jsx or app.tsx.
import 'mscodepl-react-sidebar/react-sidebar/dist/react-sidebar.css';
  • 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

Keywords

typescript

FAQs

Package last updated on 30 May 2023

Did you know?

Socket

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.

Install

Related posts