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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@terrahq/modal

v0.0.9

Published

A lightweight and extensible modal library designed for modern front-end workflows. It provides **simple configuration**, **robust callbacks**, and **debugging tools** out of the box.

Readme

🪟 Modal.js — by Terra

A lightweight and extensible modal library designed for modern front-end workflows.
It provides simple configuration, robust callbacks, and debugging tools out of the box.


✨ Features

  • 🧩 Plug & Play: Works with minimal setup and clean HTML attributes.
  • ⚙️ Configurable: Customize triggers, class names, and behaviors.
  • 🔁 Lifecycle Hooks: Use callbacks (beforeOpen, onShow, beforeClose, onClose) to extend functionality.
  • 🔒 Scroll Locking: Prevent background scroll when modals are open.
  • 🪶 Lightweight: No dependencies, framework-agnostic.
  • 🐞 Debug Mode: Console feedback for easy testing and troubleshooting.

📦 Installation

Using npm

npm install @terrahq/modal

Or via CDN

<script src="https://unpkg.com/@terrahq/modal/dist/modal.umd.js"></script>

🚀 Quick Start

<!-- Trigger -->
<button data-modal-open="my-modal">Open Modal</button>

<!-- Modal -->
<div id="my-modal" class="c--modal-a" aria-hidden="true">
  <div class="c--modal-a__overlay" data-modal-close></div>
  <div class="c--modal-a__item" role="dialog" aria-modal="true" aria-labelledby="modal-title">
    <h2 id="modal-title">Basic Modal</h2>
    <p>This is a simple modal example.</p>
    <button data-modal-close>Close</button>
  </div>
</div>

JS

import Modal from "@terrahq/modal";

const modal = new Modal({
  selector: document.getElementById('my-modal'),
  debug: true,
  onShow: (modal, trigger) => console.log(`Modal ${modal.id} is now visible`, trigger),
  onClose: (modal, trigger) => console.log(`Modal ${modal.id} is now hidden`, trigger),
});

⚙️ Constructor Parameters

| Option | Type | Default | Description | | --------------- | ------------------ | --------------------- | ------------------------------------------------------------------------------- | | selector | HTMLElement | — (required) | The DOM element representing the modal container (Element only, no strings). | | onShow | Function \| null | null | Callback executed after the modal is opened. (modal, triggerInfo) => void | | onClose | Function \| null | null | Callback executed after the modal is closed. (modal, triggerInfo) => void | | beforeOpen | Function \| null | null | Callback executed before opening. (modal, triggerInfo) => boolean \| void | | beforeClose | Function \| null | null | Callback executed before closing. (modal, triggerInfo) => boolean \| void | | openTrigger | string | data-modal-open | Attribute used on buttons/links that open the modal. | | closeTrigger | string | data-modal-close | Attribute used on buttons/links that close the modal. | | openClass | string | c--modal-a--is-open | Class added to the modal element when it is open. | | disableScroll | boolean | true | Prevents <body> scrolling while the modal is open. | | debug | boolean | false | Enables helpful console logs for debugging and testing. |

🧪 Programmatic Control

Open / Close / Toggle

const myModal = new Modal({ selector: document.getElementById('my-modal') });

// Using the instance’s own element:
myModal.open();
myModal.close();
myModal.toggle();

With custom trigger info (analytics/debug)

document.querySelector('.js--fire').addEventListener('click', (e) => {
  e.preventDefault();
  myModal.open(undefined, {
    type: 'custom',
    element: e.currentTarget,
    source: 'js--fire',
    method: 'click'
  });
});

🔁 Lifecycle Hooks (quick examples)

new Modal({
  selector: document.getElementById('modal-hooks'),
  beforeOpen: (modal, trigger) => {
    console.log('beforeOpen', trigger);
  },
  onShow: (modal, trigger) => {
    console.log('onShow', trigger);
  },
  beforeClose: (modal, trigger) => {
    console.log('beforeClose', trigger);
  },
  onClose: (modal, trigger) => {
    console.log('onClose', trigger);
  },
});

Callbacks are wrapped safely. If a callback throws, it logs an error but won’t break the modal.

🧯 Destroy (SPA / transitions)

const m = new Modal({ selector: document.getElementById('modal-spa') });
// ...
m.destroy(); // removes all listeners, ESC binding, etc.
// Safe to call multiple times; subsequent calls do nothing.

🧱 Minimal CSS (example)

.c--modal-a {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  display: grid;
  place-items: center;
}
.c--modal-a--is-open {
  opacity: 1;
  pointer-events: auto;
}
.c--modal-a__overlay {
  position: absolute;
  inset: 0;
}
.c--modal-a__item {
  position: relative;
  background: #fff;
  padding: 1.25rem;
  border-radius: .5rem;
  max-width: 560px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  max-height: 80vh;
  overflow: auto;
}

ChangeLog

0.0.09 – Enhanced Error Handling & Stability

  • Added safe error handling when opening or closing modals. The instance no longer throws runtime errors if the selector is invalid or null; instead, a clear console message is displayed (e.g., “No modal Element found...”).
  • Added internal _report() helper to produce readable error messages and optionally trigger onError.
  • Added _disabled flag to safely prevent actions when initialization fails.
  • open() and close() now validate the provided modal element before accessing its properties.
  • All logic remains backward-compatible with previous versions.
  • Refactored Escape key handling so that the listener is only attached while the modal is open, improving performance and preventing leaks.

0.0.08 - All callback functions (onShow, onClose, beforeOpen, beforeClose) receive two parameters:

  • modal: The modal element
  • triggerInfo: Object containing information about what triggered the modal action

0.0.07 - Refactor doc

0.0.05 - Refactor callbacks

0.0.04 - Version update

0.0.03 - Update dist from custom triggers

0.0.02 - Update callbacks when using custom triggers

0.0.01 - First Release