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-semantic-dialog-modal

v1.1.4

Published

A flexible and customizable React component for creating accessible & semantic dialog modals. Offering options for customizing animations, close behaviors, and content - providing a user-friendly experience.

Downloads

25

Readme

React Semantic Dialog Modal

A flexible and customizable React component for creating accessible and semantic dialog modals. It offers options for customizing animations, close behaviors, and content, providing a user-friendly experience.

Installation

React Semantic Dialog Modal is available as an npm package.

npm install react-semantic-dialog-modal

All styles written in CSS and are in Modal.css

Demo

https://joseerobless.github.io/

Usage

import React, { StrictMode, useState } from "react";
import { createRoot } from "react-dom/client";
import { Modal } from "react-semantic-dialog-modal";
import "./path/to/your/override.css"; // To override default styles

const rootElement = document.getElementById("root");

if (rootElement) {
  const root = createRoot(rootElement);

  const App = () => {
    const [showModal, setShowModal] = useState(false);

    const handleModalOpen = () => {
      console.log("Modal opened!");
    };

    const handleModalClose = () => {
      console.log("Modal closed!");
      setShowModal(false);
    };

    return (
      <>
        <button onClick={() => setShowModal(!showModal)}>
          {showModal ? "Hide Modal" : "Show Modal"}
        </button>
        <Modal
          header={<h2>Welcome to my modal</h2>}
          onOpen={handleModalOpen}
          onClose={handleModalClose}
          closeButtonText="Close"
          showCloseButton
          showCloseIcon={false}
          closeOnEscape
          animationOptions={{
            direction: "left",
            speed: "1000ms",
            closeDirections: {
              left: "modalSlideOutBottom",
            },
          }}
          enableAnimation={true}
          open={showModal}
        >
          {(onClose) => (
            <div style={{ display: "flex" }}>
              <p onClick={onClose}>
                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
              </p>
            </div>
          )}
        </Modal>
      </>
    );
  };

  root.render(
    <StrictMode>
      <App />
    </StrictMode>
  );
}

API

props.className

  • String
  • default: undefined
  • A custom className added to the dialog element (can be leveraged for additional specificity for overriding styles).

props.onOpen

  • () => void
  • default: undefined
  • A callback function that is called when the dialog modal opens.

props.onClose

  • () => void
  • default: undefined
  • A callback function that is called when the dialog modal closes.

props.showCloseButton

  • Boolean
  • Default: false
  • If true, shows a button below the footer, with default styles defined in Modal.css.

props.showCloseIcon

  • Boolean
  • default: true
  • If true, shows a close icon in the top-right corner of the modal.

props.closeOnEscape

  • Boolean
  • default: true
  • If true, closes the dialog modal when the escape key is pressed.

props.closeButtonText

  • String
  • default: Close
  • The text of the close button.

props.enableAnimation

  • Boolean
  • default: true
  • Whether the animations defined by the animationOptions prop will be enabled.

props.animationOptions

  • AnimationOptions (See Modal.d.ts)
  • default: { direction: "bottom", speed: "600ms", closeDirections: {}, // Allows you to map a custom closing direction, from the open direction defined above }
  • Animation options for the modal.

props.header

  • ReactNode
  • default: undefined
  • A header element that will render above the children.

props.children

  • ReactNode | ((closeModal: () => void, openModal: () => void, dialogRef: React.RefObject<HTMLDialogElement>) => ReactNode)
  • default: undefined
  • Allows you to pass a ReactNode or a function that uses closeModal, openModal, and dialogRef passed from the component to allow for custom content that can interact directly with the modal (see Usage example).

props.footer

  • ReactNode
  • default: undefined
  • Allows you to render an optional element below the children.

props.defaultIcon

  • ReactNode
  • default:
   <svg
     fill="#000000"
     width="20px"
     height="20px"
     viewBox="0 0 256 256"
     xmlns="http://www.w3.org/2000/svg"
   >
     <path d="M202.82861,197.17188a3.99991,3.99991,0,1,1-5.65722,5.65624L128,133.65723,58.82861,202.82812a3.99991,3.99991,0,0,1-5.65722-5.65624L122.343,128,53.17139,58.82812a3.99991,3.99991,0,0,1,5.65722-5.65624L128,122.34277l69.17139-69.17089a3.99991,3.99991,0,0,1,5.65722,5.65624L133.657,128Z" />
   </svg>
  • Allows you to customize the default close icon for the dialog modal.

props.fullscreen

  • Boolean
  • default: false
  • Allows you to update the dialog modal to be fullscreen.

props.open

  • Boolean
  • default: true
  • Allows you to toggle the dialog modal open and closed.

License

MIT