react-modal-mrl

1.2.1 • Public • Published

react-modal-mrl

Codacy Badge license downloads Netlify Status

Simple modal component for React apps

Features

  • Keyboard focus, accessibility friendly
  • Customizable trigger
  • Dynamic title and content (children)
  • Customizable close icon (otherwise default icon)

getting started guide

Requirements specification

  • React 17.0.2

Download

react-modal-mrl

Installation

  • npm i react-modal-mrl
    or
  • yarn add react-modal-mrl

Usage

Import it in your React component

import { Modal } from "react-modal-mrl";

3 props required to work: show, close and title
And create a function to change the state of the modal, ex: trigger()

1.Exemple

  const [modal, setModal] = useState(false);
  const trigger = () => setModal(!modal);

  <button className="click-me" onClick={() => trigger()}>
    Click me
  </button>

  <Modal show={modal} close={trigger} title="Modal title"></Modal>

2.Exemple

1 optional prop is available to use a customizable close icon: closeIcon
And addition of children possible

  const [modal, setModal] = useState(false);
  const trigger = () => setModal(!modal);

  <button className="click-me" onClick={() => trigger()}>
    Click me
  </button>

  <Modal
    show={modal}
    close={trigger}
    closeIcon={closeIcon}
    title="Successfully registered">
    // Modal containing an example of children
    <ul>
      <li>{user.firstName}</li>
      <li>{user.lastName}</li>
      <li>{user.department}</li>
    <ul/>
    <Link to="/user-profile">User profile</Link>
  </Modal>

Package Sidebar

Install

npm i react-modal-mrl

Weekly Downloads

1

Version

1.2.1

License

MIT

Unpacked Size

9.63 kB

Total Files

6

Last publish

Collaborators

  • maximerobillepretre