Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-clear-modal

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-clear-modal

Simple and lightweight, fully controlled isomorphic (with SSR support) modal component for React.js

  • 2.0.4
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1.3K
increased by23.23%
Maintainers
1
Weekly downloads
 
Created
Source

react-clear-modal

npm version minified + gzip typescript GitHub license

Simple and lightweight, fully controlled isomorphic (with SSR support) modal component for React.js

Table of contents

Installation

npm

npm install react-clear-modal --save

yarn

yarn add react-clear-modal

Usage

Basic Example:
import { useState } from 'react';
import ReactClearModal from 'react-clear-modal';

function ReactClearModalExample() {
  const [isModalOpen, setIsModalOpen] = useState(false);

  const openModal = useCallback(() => {
    setIsModalOpen(true);
  }, []);

  const closeModal =  useCallback(() => {
    setIsModalOpen(false);
  }, []);

  return (
    <div>
      <button type="button" title="Open" onClick={openModal}>Open</button>

      <ReactClearModal
        {/* here you can also pass any other element attributes. */}
        isOpen={isModalOpen}
        onRequestClose={closeModal}
      >
        <div>
          Lorem ipsum dolor sit amet consectetur adipisicing elit. Id beatae quia, neque modi libero quidem ipsum architecto, incidunt molestias culpa, totam accusantium reprehenderit animi voluptas magni alias error commodi ut.
        </div>

        <button type="button" title="Close" onClick={closeModal}>Close</button>
      </ReactClearModal>
    </div>
  );
}

export default ReactClearModalExample;

Props

NameTypeDefault ValueDescription
isOpenbooleanfalseIs the modal open
onRequestClosefunctionThe function that will be called to close the modal window when the ESC button is pressed (if disableCloseOnEsc !== true) or an area outside of the content is clicked (if disableCloseOnBgClick !== true)
closeTimeoutnumberTime period in milliseconds after which the modal close function (onRequestClose prop) will be called
preRenderbooleanfalseWhether the modal window and its content must be present in the DOM when the isOpen property is set to false
contentPropsobject{}DOM props (HTMLAttributes) for modal content wrapper div
parentElementstring|HTMLElementdocument.bodyModal Portal container element (HTMLElement) or css selector (string). Ignored if disableRenderInPortal is set to true
disableCloseOnEscbooleanfalsePrevent modal window from closing when ESC key is pressed
disableCloseOnBgClickbooleanfalsePrevent modal from closing after clicking on modal background
disableBodyScrollOnOpenbooleanfalseSet {overflow: hidden} for document.body when modal is open
disableRenderInPortalbooleanfalsePrevent render modal in portal (if true it will be rendered directly inside parent component)
...object{}DOM props (HTMLAttributes) for modal container div

Demo

Edit react-clear-modal

Keywords

FAQs

Package last updated on 17 Dec 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc