1.0.2 • Published 9 years ago
sh-react-sidebar v1.0.2
sh-react-sidebar
A configurable sidebar ReactJS component written in TypeScript.
Usage
For browser use:
Include the minified JavaScript file in your HTML after inclusion of React library. Assuming React and ReactDOM are loaded before the Sidebar.
<link rel="stylesheet" href="__PATH_TO_CSS__/sidebar.min.css"></script>
<script type="text/javascript" src="__PATH_TO_LIB__/sidebar.min.js"></script>
<script type="text/javascript">
var sidebar = null;
var items = [{
label:'item-1',
key:'item-1',
href:'#item-1'
},{
label:'item-2',
key:'item-2',
href:'#item-2'
},{
label:'item-3',
key:'item-3',
href:'#item-3'
}];
function update(selected:item){
ReactDOM.render(
sidebar = React.createElement(ShReact.Sidebar,{
className:'my-class',
items:items,
selected:selected,
onItemClick:onClick,
}),document.getElementById('SidebarContainer'));
}
function onClick(item,index){
update(item);
}
sidebar = ReactDOM.render(
React.createElement(ShReact.Sidebar,{
className:'my-class',
items:items,
selected:items[0],
onItemClick:onClick,
}),document.getElementById('SidebarContainer'));
</script> For webpack use:
const React = require('react');
const ReactDOM = require('react-dom');
const Sidebar = require('sh-react-sidebar').Sidebar;
var items = [{
label:'item-1',
key:'item-1',
href:'#item-1'
},{
label:'item-2',
key:'item-2',
href:'#item-2'
},{
label:'item-3',
key:'item-3',
href:'#item-3'
}];
function onClick(item,index){
console.log(item);
}
let sidebar = ReactDOM.render(<Sidebar
items={items}
selected={items[0]}
onItemClick={onClick} />,
document.getElementById('SidebarContainer')); For JSPM use:
import * as React from 'react';
import * as ReactDOM from 'react-dom';
import {Sidebar} from 'sh-react-sidebar';
var items = [{
label:'item-1',
key:'item-1',
href:'#item-1'
},{
label:'item-2',
key:'item-2',
href:'#item-2'
},{
label:'item-3',
key:'item-3',
href:'#item-3'
}];
function onClick(item,index){
console.log(item);
}
let sidebar = ReactDOM.render(<Sidebar
items={items}
selected={items[0]}
onItemClick={onClick} />,
document.getElementById('SidebarContainer')); Available Options
itemsan array of items to be used as the source of information for the sidebar. By default each item is expected to implement the following interface.
interface ItemDef {
key:string;
label:string;
href:string;
}Alternatively, an array of arbitrary object can be provided, given that getLabelForItem and getKeyForItem are provided.
getLabelForItem(item,index)is a function that will be called for every item in the array to get its label.getKeyForItem(item,index)is a function that will be called for every item in the array to get its key.classNamean optional class name to be added to the slider root DOMElement.hasSearchan optional boolean, when set to true, a search field will be added to the sidebar.placeholderan optional string to be used for the search field.emptyLinean optional string to be used when no items match the search string.isLoadingan optional boolean that states whether the sidebar is ready to show the items or it is loading. This is useful for ajax populated sidebars.preloaderStringan optional string to be used while in loading mode.preloaderan optional that can be either a function that returns a ReactElement or a react element to be shown when in loading mode.selectedthe currently selected item from the list of items.onItemClicka function that gets passed the clicked item and its index.getViewForIteman optional that is when provided will be used to generate views for items, the function gets called with theitemand itsindex.