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-accordion-composable

v1.0.0

Published

React Accordion component. Decoupled from title and body parts of its sections.

Downloads

15

Readme

React Accordion Composable

React component for Accordion.

Composable because it keeps itself decoupled from content of the Title and Body parts of the sections.

Here is the demo.

Table of Contents

Installation

npm install --save react-accordion-composable

Current Accordion version is using Hooks and implies the React 16.8 of higher. For earlier Reacts one can use the previous major version 0.1.11 (see the Change log):

npm install --save [email protected]

Credits

The architecture and code of this component is greatly inspired and influenced by Accordion example created by Joe Hudson. There I've learnt the elegant way of enhancing the props of child components on the fly during rendering. His code was the starting point and some chunks of his example have stayed almost untouched here.

Ideas

<Accordion> element can hold several <AccordionSection> elements that can have a few child elements. The first child element inside each <AccordionSection> is treated as Title part and is always displayed, while child elements 2,3 etc. altogether are considered a Body part. Mouse clicking on Title part inside a section toggles the visibility of its Body part.

This Accordion is called composable because such a setup separates concerns: <Accordion> and <AccordionSection> stay basically unseen (unless enforced by CSS) with the only responsibility of hiding and showing whatever happen to be stuffed inside sections. The responsibility of providing the contents is handed entirely over the nested elements. I consider this to be a more react-ish way of doing things as compared to when one would have to supply title and body texts through props and <AccordionSection> would also be responsible for displaying and styling those texts.

Usage

Accordion Modes

Accordion component operates in two modes: Accordion On and Accordion Off. In the first mode no more then one section is expanded at a time and selecting a particular section collapses the previously expanded. In Accordion Off mode there is no control - each section can be collapsed or expanded independently.

The default mode is Accordion On.

Basic example

import { Accordion, AccordionSection } from 'react-accordion-composable';

// then inside react component:
// ...
render(
  <div>
    <h1>Accordion goes here:</h1>
    <Accordion>
      <AccordionSection id="1">
        <h3>Title 1</h3>
        <p>Body 1</p>
      </AccordionSection>
      <AccordionSection id="2">
        <div>
          <h3>Title 2</h3>
          <p>title 2 - continues</p>
        </div>
        <p>Body 2</p>
        <div>
          Body 2 - continues as next (sibling) child
          <p>and can be nested further as desired</p>
        </div>
      </AccordionSection>
    </Accordion>
  </div>,
);

This illustrates composability: the title part of section 2 is the first child element inside <AccordionSection> and whatever is there nested inside it is still the title part and going to be displayed.

The body part of section 2 is all the other child elements nested inside <AccordionSection>: its second and third children. Again, one can use as simple or as complex elements here as one likes.

Styling

One can use css classes on both <Accordion> and <AccordionSection>, as internally they are based on <div>-s:

<Accordion className="someClass">
  <AccordionSection className="otherClass" id="1">
// ...

One can use { display: flex; } for <Accordion> e.g. and the sections will obey.

Power features

While <Accordion> component holds its state and operates on its own, one can influence it from outside by sending it a 'message' through a msg prop. For example:

<Accordion msg={ {
  actions: {type:'AccordionOff'},
  ts:'12345'
  } }>

Here we tell Accordion that it should switch to Accordion Off mode. The ts is a timestamp and whenever it changes the Accordion will know the new message came and it should read it and apply.

This message can be set once as an initialization, or, it can be sent on a regular basis (see the demo) if the logic of bigger application needs to manipulate the accordion from outside by changing its mode and/or expanding/collapsing particular sections.

More then one action can be wrapped into a message at a time:

<Accordion msg={ {
  actions: [
    {type:'AccordionOff'},
    {type:'SelectIds', ids: ['3']},
  ]
  ts:'78910'
  } }>

and the order of actions does matter.

This approach is pretty powerful, as it allows one to dispatch actions to Accordion from outside while keeping the Accordion decoupled from external state stores the main application can be using. There is a helper function to compose messages from actions with automatic time-stamping, and one can see a full fledged example in the repo of the demo

Change log

Version 1.0.0

  • Rewritten and now using React Hooks. As Hooks needs React 16.8 or higher, then one might choose to stay with Accordion version 0.1.11.
  • The reducers have moved into a separate module. Action dispatch logic should now be somewhat cleaner.
  • Added prop-types.
  • Otherwise no change in usage and behaviour.

Version 0.1.11

  • Latest version without Hooks. Should work with older version of React.
  • Works with any React version from at least 0.14.0 up to at least ^16.