0.4.1 • Published 5 years ago

react-sider v0.4.1

Weekly downloads
9
License
MIT
Repository
github
Last release
5 years ago

react-sider

npm v npm dm

Inspired by Ant Design Pro.

Lightweight Ant Design Pro like <Sider /> component integrated with Ant Design Menu.

Features

  • Zero work on CSS.
  • Minimum configuration and 100% data driven.
  • Easy integration with any React app architectures. Only depends on react, react-router-dom, lodash & antd.
  • Native nested menu and pathname support.
  • Automatical menu openKeys & selectKeys match based on current page pathname.

Installation

yarn add react-sider react react-router-dom lodash antd

Preview

npm.io

Usage

Sider

PropertyDescriptionTypeDefault
classNameclassName of containerstring''
stylestyle of containerobject{ }
appNamename of applicationstring''
appLogoimg src of application logostring''
appBaseUrlhref of sider headerstring'/'
widthsider container widthnumber256
menuDatadata of sider menuarrayOf(MenuItem)
pathnamecurrent page pathnamestring'/'

MenuItem

PropertyDescriptionTypeDefault
namemenu item name in textstring-
pathmenu item path (see below example for details)string-
iconmenu item antd iconstring-
childrensub menu itemsarrayOf(MenuItem)-

Example

import ReactSider from 'react-sider';
import 'react-sider/lib/index.css';
import logo from 'assets/logo.svg';

const menuData = [{
  // MenuItem name
  name: 'Dashboard',
  // MenuItem icon (antd icon)
  icon: 'dashboard',
  // MenuItem relative path
  path: 'dashboard',
  // SubMenu
  children: [{
    name: 'Analysis',
    path: 'analysis',
    children: [{
      name: 'Real-time',
      path: 'realtime',
    }, {
      name: 'Offline',
      path: 'offline',
    }],
  },
  {
    name: 'Monitor',
    path: 'monitor',
  },
  {
    name: 'Workplace',
    path: 'workplace',
  }],
}, {
  name: 'Marketing',
  icon: 'table',
  path: 'marketing',
}, {
  name: 'Settings',
  icon: 'setting',
  path: 'settings',
  children: [{
    name: 'Users Management',
    path: 'users',
  }],
}];

const Sider = () => (
  <ReactSider
    appName="React App Pro"
    appLogo={logo}
    menuData={menuData}
    // better to sync pathname with the router in your application
    pathname={this.props.location.pathname}
  />
)

export default Sider;

Notes

  • react-sider will automatically format nested menu path with / based on menuData structure.
  • Remember to config less-loader within your application building process since react-sider directly imports antd components styles.
0.4.1

5 years ago

0.4.0

5 years ago

0.3.4

6 years ago

0.3.3

6 years ago

0.3.2

6 years ago

0.3.1

6 years ago

0.3.0

6 years ago

0.2.5

6 years ago

0.2.4

6 years ago

0.2.3

6 years ago

0.2.2

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.3

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago