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 modal component for React.js

  • 0.0.3
  • 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 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
onRequestClosefunctionCallback to handle the request to close the modal
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
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

Demo

Edit react-clear-modal

Keywords

FAQs

Package last updated on 26 Oct 2022

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