🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

react-collapse-animated

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-collapse-animated

react component which animates from height zero to required height and vice versa

1.0.1
latest
Source
npm
Version published
Maintainers
1
Created
Source

react-collapse-animated

React component which can be used for any kind of collapsible content. It can be used for an accordion or a 'show more' section or a dropdown menu.

The height changes from zero to content height and vice versa are animated. The animation duration and type are customizable.

Example usage to build and individual Collapsible with a header -

// the open/close state of Collapse is controlled from the consumer
render() {
    const { heading } = this.props;
    const { isOpen } = this.state;

    return (
      <div role="button" className='collapsible-section'>
        <button
          className='collapsible-label'
          onClick={this.handleClick}
          aria-expanded={isOpen}
          aria-controls={this.getCollapsibleId()}
        >
          <span className=label-text'>{heading}</span>
        </button>
        <Collapse
          open={isOpen}
          id={this.getCollapsibleId()}
          style={{ marginBottom: isOpen ? 10 : 0 }}
        >
          {this.props.children}
        </Collapse>
      </div>
    );
  }

How to install react-collapse-animated?

On your command line, type

npm install react-collapse-animated --save

or, if you use yarn for installing dependencies, type

yarn add react-collapse-animated

And in your react component -

import Collapse from 'react-collapse-animated'

// then somewhere in your jsx
<Collapse
  open={isOpen}
  id={this.getCollapsibleId()}
  style={{ maxHeight: 300 }}
>
  {this.props.children}
</Collapse>

Keywords

react

FAQs

Package last updated on 12 Nov 2018

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