UNPKG

astro-simple-modal

Version:

Highly customizable modal for Astro โ€” simple to use and easy to style.

154 lines (120 loc) โ€ข 4.2 kB
# ๐Ÿš€ Astro Simple Modal A **simple** and **highly customizable** modal for Astro โ€” minimal setup, full styling control. ## ๐Ÿงพ Overview Astro Simple Modal is a lightweight modal component built specifically for Astro. It renders a simple overlay modal with fade-in and fade-out behavior. It includes no default titles, buttons, or layout โ€” leaving the full content and structure under the developer's control. Refer to [this documentation page](https://kurilabs.com/projects/astro-simple-modal/) for live demo. ## โœ… Features - Super easy to install and use - Highly customizable and flexible usage - Effortless to style ## ๐Ÿ“ฆ Installation ```bash npm install astro-simple-modal # or yarn add astro-simple-modal # or pnpm add astro-simple-modal ``` ## โš™๏ธ Usage ### Basic usage ```javascript --- import SimpleModal from 'astro-simple-modal'; --- <button type="button" id="modal-open-btn">Open modal</button> <SimpleModal id="my-modal"> <h2>Modal Title</h2> <p>This is a basic modal.</p> <button type="button" id="modal-close-btn">Close modal</button> </SimpleModal> <script> import {modalHandler} from "astro-simple-modal" document.querySelector("#modal-open-btn").addEventListener("click", () => { modalHandler.open("my-modal") }) document.querySelector("#modal-close-btn").addEventListener("click", () => { modalHandler.close("my-modal") }) </script> ``` ### Modal handler Use the **ID of each modal** along with the `modalHandler` methods to control them. The `open` and `close` methods return a promise that resolves once the fade-in or fade-out transition is complete. ```javascript import { modalHandler } from "astro-simple-modal" // Use the open and close methods with the modal ID as the only argument document.querySelector("#my-modal-open-btn").addEventListener("click", () => { modalHandler.open('my-modal').then(() => { console.log('Modal opened - .then promise handle') }) }) document.querySelector("#my-modal-close-btn").addEventListener("click", async () => { await modalHandler.close('my-modal') console.log('Modal closed - async handle') }) ``` Use `onOpen` and `onClose` to register global callbacks. ```javascript import { modalHandler } from "astro-simple-modal" // onOpen(modal-id, callback) modalHandler.onOpen('my-modal', () => { console.log('Modal opened - global event handler') }) // onClose(modal-id, callback) modalHandler.onClose('my-modal', () => { console.log('Modal closed - global event handler') }) ``` ### Customize styles ```jsx <SimpleModal id="custom-styles-modal" styles={{ backgroundOpacity: 0.8, transitionDuration: '.8s', backgroundColor: '#042940', contentBackgroundColor: '#DBF227', contentPadding: '1rem 3rem', borderRadius: '9999px', color: '#005C53', zIndex: 100 }}> <span>Content</span> </SimpleModal> ``` ## โš ๏ธ Common Issues & Solutions ### Z-index Overlapping Issues The modal is positioned using `position: fixed`, so if there are no other fixed-position elements on your page, the modal shouldn't have overlapping problems. However, if there are other fixed-position elements, you can check their z-index value and assign a higher one to the modal via `{styles = {zIndex: number}}`. ```jsx <SimpleModal id="higher-z-index" styles={{ zIndex: 1000 }}> <!-- content --> </SimpleModal> ``` ### Large Content Issues: Astro Simple Modal doesn't have built-in scroll handling for content that exceeds its default boundaries. Since it's positioned as fixed and has no size limits, if the content is larger than the viewport, it will overflow and become hidden without any way to view it. To solve this, you need to place the content in a wrapper container and manage it accordingly. ```jsx <SimpleModal id="big-content"> <div class="big-content-container"> <div style={{ width: '2500px', marginBottom: "1rem" }}> Very wide box </div> <div style={{ height: '2500px', width: 'fit-content', margin: "0 auto" }}> Very tall box </div> </div> </SimpleModal> <style> .big-content-container{ max-height: 90vh; max-width: 90vw; overflow: auto; } </style> ```