Skip to content

A react library for managing the state of your modals.

License

Notifications You must be signed in to change notification settings

luisiacc/react-use-modal

Repository files navigation

react-use-modal

A react library for managing the state of your modals

Install

npm install --save react-use-modal

Quick notes

The library doesn't care how you render your modal, it just handles the state to render it, and optionally pass data to it if required, sort of like react-query does on queries.

Usage

This is just a showcase, please refer to the docs to see how to cover most use cases

import React from "react"

import SomeModal from "some-modal"; // I'm just making this up, imagine is a real modal
import { useModal, ModalController } from "react-use-modal"

function Example(props: any) {
  const modals = useModal()

  const doSomething = (data: any) => {
    // ...
  }

  return (
    <>
      <button onClick={() => modals.push("some-modal")}>Show something</button>
      <ModalController name="some-modal" render={modal => (
        <SomeModal visible onCancel={modal.cancel} onSave={(someData: any) => {
          doSomething(someData)
          modal.submit();
        }}>
      )} />
    </>
  )
}

About

A react library for managing the state of your modals.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published