JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 8
  • Score
    100M100P100Q34057F

simple and convenient modal-controller for react

Package Exports

  • react-simple-modal-controller
  • react-simple-modal-controller/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-simple-modal-controller) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

react-simple-modal-controller

A simple and convenient modal controller for react

React dependency

React >= 16.8.0

Installation

npm install react-simple-modal-controller

Setting

Wrap the top folder with a provider. that's all!

import { ModalProvider } from "react-simple-modal-controller";

const App = () => {
  return <ModalProvider>...</ModalProvider>;
};

Usage

basic modal

import { modal } from "react-simple-modal-controller";

const openModal = () => {
  modal.open(ModalComponent, { title: "test" });
};

const Page = () => {
  return <button onClick={openModal}>modal open</button>;
};

const ModalComponent = ({ title }: { title: string }) => {
  return (
    <div className="modal">
      <h2>{title}</h2>
      <button onClick={modal.close}>ok</button>
      <button onClick={modal.close}>cancel</button>
      <button onClick={openModal}>nesting modal open</button>
    </div>
  );
};

async modal

import { modal } from 'react-simple-modal-controller';

const openAsyncModal = async () => {
  try {
    const isOk = await modal.openAsync<boolean>(AsyncModalComponent, {
      userId: 123,
    });
    if(isOk) {
        ...
    } else {
        ...
    }
  } catch (error) {
    ...
  }
};

const Page = () => {
  return <button onClick={openAsyncModal}>asyncModal open</button>
};

const TestAsyncModal = ({ resolve, userId }: { resolve: ModalResolver<boolean>; userId: number }) => {
  return (
    <div className="modal">
      <h2>{title}</h2>
      <button onClick={() => resolve(true)}>
        ok
      </button>
      <button onClick={() => resolve(false)}>
        cancel
      </button>
    </div>
  );
};

Playground

Edit react-simple-modal-controller