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

badger-accordion

v1.2.4

Published

An accessible vanilla JS accordion with extensible API.

Downloads

5,485

Readme

Badger Accordion

Badger Accordion logo An accessible light weight, vanilla JavaScript accordion with an extensible API. Just 8.71kb and Gzipped 2.6kb!


Contents

The idea

  • To make an accessible, animated, accordion with an extensible API.
  • Make it using just plain vanilla JavaScript.
  • Ensure that it has just plain simple css. Enough to get it to work. Not too much that you have to spend ages overwriting it.
  • Ensure that it is accessible as possible.

Key terminologies

  • panel - The section of the accordion than opens and closes
  • header - The button that opens an accordion panel

Basic setup

Download plugin

You can download the plugin using NPM or direct download from Github

You'll need to import the plugin and create a new instance so you can use it. There is a working example in the example directory (shock horror!) if you'd like something to reference.

  1. Create your markup
  2. Include the basic styles (which are in dist/badger-accordion.css or dist/badger-accordion.css)
  3. Import badger-accordion.js
  4. Create new instance of the accordion

Markup

There is no fixed structure required for your markup, in my examples I have used a dl (as the WAI-ARIA Authoring Practices guide used it in their example). You will need to add 5 selectors for the plugin to work. The selectors listed below are the default selectors but can all be over written using the plugins options.

  1. The containing element, dl, .js-badger-accordion
  2. The header element, button, .js-badger-accordion-header
  3. The panel element, dd, .js-badger-accordion-panel
  4. The panel inner element, div, .js-badger-accordion-panel-inner
  5. The panel element for targeting with CSS, div, .badger-accordion__panel .

While you could use the selector from point 3 I would not recommend doing this. For keeping everything nice and separated best to use a different selector for targeting with CSS & JS.

<dl class="js-badger-accordion">
    <dt>
        <button class="js-badger-accordion-header">
            Header Content
        </button>
    </dt>
    <dd class="badger-accordion__panel js-badger-accordion-panel">
        <div class="js-badger-accordion-panel-inner">
            Panel Content
        </div>
    </dd>
</dl>

Styles

I have created some simple CSS styles to help you with creating an accordion which are in dist/badger-accordion-demo.css or dist/badger-accordion-demo.scss. If you'd like some additional styles checkout the example dir.

.badger-accordion__panel {
    max-height: 75vh;
    overflow: hidden;
}

.badger-accordion__panel.-ba-is-hidden {
    max-height: 0 !important;
    visibility: hidden;
}

.badger-accordion--initialized .badger-accordion__panel {
    transition: all ease-in-out 0.2s;
}

Create new instance of Badger Accordion

You just import Badger Accordion. Then you can either pass in a DOM node or CSS Selector. Passing in a DOM node as in the first example below is the best way to create a new instance.

Please note that currently the Array.from polyfill is being included as standard (but wrapped in a conditional check). If this is an issue for you or you have an awesome idea of how to include it please get in touch.

import BadgerAccordion from 'badger-accordion';

// Creating a new instance of the accordion
const accordionDomNode = document.querySelector('.js-badger-accordion');

const accordion = new BadgerAccordion(accordionDomNode);

Create multiple instances of Badger Accordion

If you want to have multiple instances of the accordion in the same document you could do it like this by looping over the collection of DOM nodes.

<!-- HTML -->
<dl class="badger-accordion js-badger-accordion">
    <!-- Your markup -->
</dl>

<dl class="badger-accordion js-badger-accordion">
    <!-- Your markup -->
</dl>

<dl class="badger-accordion js-badger-accordion">
    <!-- Your markup -->
</dl>
// Importing accordion
import BadgerAccordion from 'dist/badger-accordion';

const accordions = document.querySelectorAll('.js-badger-accordion');

Array.from(accordions).forEach((accordion) => {
    const ba = new BadgerAccordion(accordion);

    // console.log(ba.getState([0]));
});

Create a nested accordion

With release 1.2.0 you can now created nested accordions. You don't need to do anything for this to work. Currently is you close a parent accordion then the child accordion will retain the previous state. Eg. if your child accordion has it's second item open, you close the parent then reopen the child accordion again it will have it's second item still open.

Options

The accordion has a selection of options that you can overwrite. For example if you wanted to open the first and 4th panel when the accordion is initialized;

new BadgerAccordion('.js-badger-accordion', {
    openHeadersOnLoad: [0, 3],
    roles: {
        region: true
    }    
});

| Option | Type | Default | Description | |--- |--- |--- |--- | | headerClass | String | .js-badger-accordion-header | Class for panel's header | | panelClass | String | .js-badger-accordion-panel | Class for panel | | panelInnerClass | String | .js-badger-accordion-panel-inner | Class for panel inner container | | hiddenClass | String | -ba-is-hidden | Class added to panels that are hidden | | initializedClass | String | badger-accordion--initialized | Class add to accordion when it has initialized | | headerDataAttr | String | data-badger-accordion-header-id | Data attribute on each header | | openMultiplePanels | Boolean | false | Give you the ability to have mutiple panels open at one time. By default this is disabled | | roles | Boolean or Object | true | Controls setting presentation role on the container element & region on the panel. By using a boolean value you will set both attributes. By settings this as an object you will be explicitly setting only that role. Any roles not included in the object will not be set. In the example above only the region role will be set. | | addListenersOnInit | Boolean | false | If set to true EventListeners will not be added to each accordion header on initialization | | hidenClass | @Deprecated | @Deprecated | This was a spelling mistake and has been deprecated. If you have used in from version < 1.0.29 then hiddenClass is now equal to hidenClass | | headerOpenLabel | @Deprecated | @Deprecated | Aria lable has been removed see Changelog.md 1.1.5 | | headerCloseLabel | @Deprecated | @Deprecated | Aria lable has been removed see Changelog.md 1.1.5 |

Methods

The accordion has a series of methods allowing you to have full control over extending the plugin. For example if you wanted to close all your accordion's panels;

accordion.closeAll();

| Method | Arguments | Description | Example | |--- |--- |--- |--- | | init() | | Fires off all methods needed to initialise the accordion. Can be used again after to re-initialise || | getState() | headerId/s - array | Returns the state of a panel/s by passing in the node item index/s as an array. | Getting a single Id. accordion.getState([0]). Getting multiple header's state accordion.getState([0, 1, 2]) | | open() | headerIndex | Opens a given panel using its headerIndex. Eg; accordion.open( 0 ); || | close() | headerIndex | Closes a given panel using its headerIndex. Eg; accordion.close( 0 ); || | togglePanel() | animationAction, headerIndex | Toggles panel into opening or closing. animationAction is either open or closed || | openAll() | | Opens all accordion panels || | closeAll() | | Closes all accordion panels || | calculatePanelHeight() | | Calculates and sets a single panels height || | calculateAllPanelsHeight() | | Calculates and sets all panels height ||

Sponsors

A massive thanks to BrowserStack for supporting me by allowing me to use their platform for free. BrowserStack is a cloud based testing tool that lets you test websites on a wide range web browsers and real mobiles devices. This removes all the hassle of installing chunky VM's. BrowserStack has some great tools such as automated testing, testing local sites (via a browser extension) and taking screenshots. BrowserStack logo

Contributors

I've had some awesome people help me out building the accordion. I worked in part on this while working at Mr B & Friends big shout out to the digital team there. This wouldn't be anywhere near as good if it wasn't for the wise words of Dave Smith. Finally my favourite digital designer Taavi Kelle who created the AWESOME logo and gave my demo styles some love Steve Richardson™.

Also to the following awesome people who have submitted PR's

Roadmap

  • General performance & naming review
  • Create some mixins to help making custom themes quicker & easier
  • Create option for callback methods on each public method
  • Export an IE9 safe version in the repo
  • Create horizontal accordion option