npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

sh-react-sidebar

v1.0.2

Published

A configurable sidebar component written in TypeScript.

Downloads

1

Readme

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

  1. items an 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.

  1. getLabelForItem(item,index) is a function that will be called for every item in the array to get its label.

  2. getKeyForItem(item,index) is a function that will be called for every item in the array to get its key.

  3. className an optional class name to be added to the slider root DOMElement.

  4. hasSearch an optional boolean, when set to true, a search field will be added to the sidebar.

  5. placeholder an optional string to be used for the search field.

  6. emptyLine an optional string to be used when no items match the search string.

  7. isLoading an optional boolean that states whether the sidebar is ready to show the items or it is loading. This is useful for ajax populated sidebars.

  8. preloaderString an optional string to be used while in loading mode.

  9. preloader an optional that can be either a function that returns a ReactElement or a react element to be shown when in loading mode.

  10. selected the currently selected item from the list of items.

  11. onItemClick a function that gets passed the clicked item and its index.

  12. getViewForItem an optional that is when provided will be used to generate views for items, the function gets called with the item and its index.