1.0.3 • Published 2 years ago

@soeunlee/reactjs-modal v1.0.3

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

Modal dialog component for React.JS

Installation

To install, you can use npm :

$ npm install --save @soeunlee/reactjs-modal

Features

  • Provides a straightforward implementation of a modal interface, featuring a dark background, a body section, and a footer that includes a close button.
  • Enhance the customization of the modal by assigning classnames to the modal content, button, and individual containers, allowing for personalized styling and layout adjustments.
  • Seamlessly integrate with widely adopted CSS frameworks such as Tailwind and Bootstrap to leverage their extensive styling capabilities and streamline the development process.

스크린샷 2023-07-11 17 41 30

Mandatory props

NameTypeDescription
onCloseMouseEventHandlerA function to handle the close event of the modal when the close button is clicked.
setModalOpenbooleanA boolean value indicating whether the modal should be open or closed.
childrenReact.ReactNodeThe content or components that will be displayed inside the modal.
btnLabelstringA string representing the label or text content of the close button.

Optional props for customization

NameTypeDescription
backgroundClassstring (optional)A string representing additional CSS class names for the background element of the modal.
containerClassstring (optional)A string representing additional CSS class names for the container element of the modal.
bodyClassstring (optional)A string representing additional CSS class names for the body element of the modal.
footerClassstring (optional)A string representing additional CSS class names for the footer element of the modal.
btnClassstring (optional)A string representing additional CSS class names for the close button of the modal.
btnLabelClassstring (optional)A string representing additional CSS class names for the label or text content of the close button.

Basic examples

Here is a simple example of react-modal being used in an app with some custom classnames to style the modal

import React, { useState } from 'react';
import { Modal } from '@soeunlee/reactjs-modal';

function App() {
  const [isModalOpen, setIsModalOpen] = useState < boolean > false;

  return (
    <>
      <button onClick={() => setIsModalOpen(true)}>Click to open Modal</button>
      <Modal
        onClose={() => setIsModalOpen(false)}
        setModalOpen={isModalOpen}
        children={
          <div>
            <h1>Modal is opened!</h1>
          </div>
        }
        btnLabel="close"
      />
    </>
  );
}

export default App;
1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago