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

stimulus-reveal

v1.4.2

Published

Toggle elements with Stimulus and transitions

Downloads

17,759

Readme

Stimulus Reveal

Stimulus controller to hide/show elements with optional transitions

Installation

$ yarn add stimulus-reveal

Usage

Register the controller with Stimulus:

// application.js
import { Application } from 'stimulus';
import RevealController from 'stimulus-reveal'

const application = Application.start()
application.register('reveal', RevealController)

Initialize the controller on a container element, add an action to toggle elements, and add data-reveal attributes to elements you want to toggle:

<div data-controller="reveal">
  <button type="button" data-action="reveal#toggle">Click me</button>
  <div hidden data-reveal>I toggle</div>
</div>

Deprecations

  • Using stimulus-reveal on <a> tags will no longer prevent the default event chain. If you are using <a> tags, consider changing to <button type="button">.

Options

Top Level options

data-reveal-target-selector-value (default: [data-reveal])

Setting this attribute to a selector will allow you to change the selector pattern for toggling elements.

data-reveal-toggle-keys-value

Setting this attribute to a comma separated list of lower-case key names will toggle the reveal when they're pressed.

Example:

<div data-reveal-toggle-keys-value="a">

data-reveal-show-keys-value

Setting this attribute to a comma separated list of lower-case key names will show the reveal when they're pressed.

Example:

<div data-reveal-toggle-keys-value="?">

data-reveal-hide-keys-value

Setting this attribute to a comma separated list of lower-case key names will close the reveal when they're pressed.

Example:

<div data-reveal-toggle-keys-value="escape">

data-reveal-away-value

Setting this attribute will close the reveal when the user clicks away from the reveal element.

data-reveal-open-value (default: false)

Setting this attribute to "true" will tell the controller that the default state is open for the reveal. The next toggle will close it.

Trigger element options

data-reveal-prevent-default

If set on the trigger element, this will prevent the default action from being handled.

data-reveal-stop-propagation

If set on the trigger element, this will prevent the default action from being propagated.

Element options

You can set options per element to change how each one behaves.

data-transition

If set, this will enable transitions. A default transition will apply:

In:

  • Opacity: 0 -> 1
  • Transform Scale: 95% -> 100%
  • Duration: 200ms

Out:

  • Opacity: 1 -> 0
  • Transform Scale: 100% -> 95%
  • Duration: 150ms
Example
<div data-controller="reveal">
  <button type="button" data-action="reveal#toggle">Click me</button>
  <div hidden data-reveal data-transition>I toggle with transitions</div>
</div>
data-transition-(enter|leave), data-transition-(enter|leave)-start, data-transition-(enter|leave)-end

These options can be used to override the default transitions by setting classes at transition points.

Example
<div data-controller="reveal">
  <button type="button" data-action="reveal#toggle">Click me</button>
  <div hidden data-reveal data-transition
    data-transition-enter="transition transform ease-out duration-200"
    data-transition-enter-start="opacity-0 -translate-y-6 bg-transparent"
    data-transition-enter-end="opacity-100 translate-y-0 bg-transparent"
    data-transition-leave="transition transform ease-out duration-150"
    data-transition-leave-start="opacity-100 translate-y-0 bg-transparent"
    data-transition-leave-end="opacity-0 -translate-y-6 bg-transparent">
    I toggle with custom transitions</div>
</div>
data-(enter|leave)-(start|end)

These attributes allow you to toggle an element before or after the main transition. For instance if you need to unhide and element before an enter transition and hide it after a leave transition.

Example
<div data-controller="reveal">
  <button type="button" data-action="reveal#toggle">Click me</button>
  <div hidden data-reveal data-enter-start data-leave-end>
    <div hidden data-reveal data-transition
      data-transition-enter="transition transform ease-out duration-200"
      data-transition-enter-start="opacity-0 -translate-y-6 bg-transparent"
      data-transition-enter-end="opacity-100 translate-y-0 bg-transparent"
      data-transition-leave="transition transform ease-out duration-150"
      data-transition-leave-start="opacity-100 translate-y-0 bg-transparent"
      data-transition-leave-end="opacity-0 -translate-y-6 bg-transparent">
      I toggle with custom transitions</div>
  </div>
</div>

Methods

show

This will show toggled elements.

Example
<div data-controller="reveal">
  <button type="button" data-action="reveal#show">Click me</button>
  <div hidden data-reveal data-transition>I can't be hidden again</div>
</div>

hide

This will hide toggled elements.

Example
<div data-controller="reveal">
  <button type="button" data-action="reveal#hide">Click me</button>
  <div data-reveal data-transition>I can't be shown again</div>
</div>

toggle

This will toggle toggled elements.

Example
<div data-controller="reveal">
  <button type="button" data-action="reveal#toggle">Click me</button>
  <div hidden data-reveal data-transition>I will show and hide again and again and again</div>
</div>

stop

This will stop the event from bubbling to parent elements.

Example
<div data-controller="reveal existence" data-action="reveal:hidden->existence#remove">
  <!-- reveal:hidden will bubble to here and remove the entire element from the DOM -->
  <button type="button" data-action="reveal#hide">Hide entire outer div</button>
  <div data-reveal>I get hidden along with the inner div when the first button is pressed</div>
  <div data-controller="reveal" data-action="reveal:hidden->reveal#stop">
    <!-- reveal:hidden will bubble to here then stop, preventing the existence#remove action above from happening -->
    <button type="button" data-action="reveal#hide">Hide inner div</button>
    <div data-reveal>I get hidden but the outer div does not hide if the second button is pressed</div>
    <div data-reveal>I also get hidden but the outer div does not hide if the second button is pressed</div>
  </div>
</div>

Events

Stimulus Reveal emits a number of events during the lifecycle of a transition. They are listed below in the order in which they happen:

| Name | Description | | ---- | ----------- | | reveal:show | Emits before the show transition starts, on each target element | | reveal:hide | Emits before the hide transition starts, on each target element | | reveal:shown | Emits at the end of the show transition, on each target element | | reveal:hidden | Emits at the end of the hide transition, on each target element | | reveal:complete | Emits at the end of the transition, regardless of whether it is shown or hidden, on each target element |

Contributing

Fork the project.

Install dependencies

$ yarn install

Write some tests, and add your feature. Send a PR.