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

react-accordeon

v1.1.1

Published

React Accordeon component with expand/collapse CSS animation. The event trigger can be configured to any component, such in the Navigation and Content

Downloads

12

Readme

React Accordeon

React Accordeon component with expand/collapse CSS animation. The event trigger can be configured to any component, such in the Navigation and Content

  • Components

  • Examples

  • Todo

    Components

    <Accordeon>

    Primary component of React Accordeon. It keeps and handles the state of all the elements.

    Props

    header (optional)

    A valid React component that will be rendered in a <header> html tag. This component will be provided with the two property functions expandAll and collapseAll.

    footer (optional)

    A valid React component that will be rendered in a <footer> html tag. This component will be provided with the two property functions expandAll and collapseAll.

    Example

    import Header from './Header.js';
    import Footer from './Footer.js';
    <Accordeon header={<Header />} footer={<Footer />}>

    <Panel>

    The Panel component is the container for each element in the accordeon. This will create the collapse/expand animation for the Content component.

    Props

    expanded (optional)

    Boolean value to configure an initial state for the Panel. If true, the Panel is expanded. If false, the Panel is collapsed.

    Example

    #####Item expanded

    <Panel key="panel1" expanded>

    #####Item collapsed

    <Panel key="panel1" expanded={false}>

    or the expanded property can also be omitted

    <Panel key="panel1">

    <Nav>

    This component accepts any string or any valid React component to render the Panel Header.

    Props

    This does not require any property at this moment.

    <Content>

    Any string, html tag, or a valid React component

    Props

    This does not require any property at this moment.

    Examples

    Accordeon with plain strings in the Nav and Content

    import React, { PropTypes } from 'react';
    import { Accordeon, Panel, Nav, Content } from 'react-accordeon';
    function ExampleOne(props) {
      return (
        <Accordeon>
          <Panel key="panel1">
            <Nav>Question 1</Nav>
            <Content>
              Lorem Ipsum is simply dummy text of the printing and typesetting industry.
            </Content>
          </Panel>
          <Panel key="panel2">
            <Nav>Question 2</Nav>
            <Content>
              And more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
            </Content>
          </Panel>
        </Accordeon>    
        );
    }

    Demo

    Given valid React Components

    import React, { PropTypes } from 'react';
    import { Accordeon, Panel, Nav, Content } from 'react-accordeon';
    import AnotherReactComponentNav from './Another-react-component-nav.js';
    import AnotherReactComponentContent from './Another-react-component-content.js';
    function ExampleOne(props) {
      return (
        <Accordeon>
          <Panel key="panel1">
            <Nav><AnotherReactComponent /></Nav>
            <Content>
              <AnotherReactComponentContent />
            </Content>
          </Panel>
        </Accordeon>    
        );
    }
    
    // A valid React stateless Component (AnotherReactComponentNav.js)
    // We can configure the 'toggle' trigger in any React supported event (onClick={toggle})
    import React, { PropTypes } from 'react';
    const AnotherReactComponentNav = (props) => {
      const { expanded, toggle } = props;
      return (
        <h2>
          {expanded ? '-' : '+'}
          <button
            onClick={toggle}
            aria-expanded={expanded}
            role="tab"
          >
            Question 1
          </button>
        </h2>
      );
    };
    
    AnotherReactComponentNav.propTypes = {
      toggle: PropTypes.func,
      expanded: PropTypes.bool,
    };
    
    export default Nav;
    
    // A valid React stateless Component (AnotherReactComponentContent.js)
    import React, { PropTypes } from 'react';
    const Content = (props) => {
      const { expanded, toggle } = props;
      return (
        <div>
          It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.
        </div>
      );
    };
    
    Content.propTypes = {
      toggle: PropTypes.func,
      expanded: PropTypes.bool,
    };
    
    export default Content;

    Demo

    With some valid HTML

    import React from 'react';
    import { Accordeon, Panel, Nav, Content } from 'react-accordeon';
    function ExampleOne(props) {
      return (
        <Accordeon>
          <Panel key="panel1">
            <Nav>Item 1</Nav>
            <Content>
              <img src="https://placekitten.com/g/500/500" alt="kitten" />
            </Content>
          </Panel>
        </Accordeon>    
        );
    }

    Demo

    Accordeon with Header and Footer

    import React from 'react';
    import { Accordeon, Panel, Nav, Content } from 'react-accordeon';
    import Header from './Header';
    import Footer from './Footer';
    import NavComponent from './NavComponent';
    import ContentComponent from './ContentComponent';
    <Accordeon header={<Header />} footer={<Footer />}>
      <Panel key="panel1">
        <Nav>Question 1</Nav>
        <Content>
          <div>
            <img src="https://placekitten.com/g/500/500" alt="kittlen" />
          </div>
        </Content>
      </Panel>
      <Panel key="panel2" expanded>
        <Nav><NavComponent /></Nav>
        <Content><ContentComponent /></Content>
      </Panel>
    </Accordeon>
    
    // The Header must be a valid React component (Header.js).
    // Two functions are passed as properties: expandAll, collapseAll
    import React from 'react';
    const Header = (props) => {
      const { expandAll, collapseAll } = props;
      return (
        <div>
          <button onClick={expandAll}>Expand All</button> / <button onClick={collapseAll}>Collapse All</button>
        </div>
      );
    };
    
    Header.propTypes = {
      expandAll: React.PropTypes.func,
      collapseAll: React.PropTypes.func,
    };
    
    export default Header;
    
    // The Footer must be a valid React component (Footer.js).
    // Two functions are also passed as properties: expandAll, collapseAll
    import React from 'react';
    const Footer = (props) => {
      const { expandAll, collapseAll } = props;
      return (
        <div>
          <span onClick={expandAll}>Expand All</span> / <span onClick={collapseAll}>Collapse All</span>
        </div>
      );
    };
    
    Footer.propTypes = {
      expandAll: React.PropTypes.func,
      collapseAll: React.PropTypes.func,
    };
    
    export default Footer;

    Demo

    Nested Accordeons Demo

    Todo

    • Header and Footer error handling
    • Expand/Collapse one Panel at a time