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
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 Page = () => {
const openModal = () => {
modal.open(ModalComponent, { title: "test" });
};
...
return <button onClick={openModal}>modal open</button>;
};
const ModalComponent = ({ title }: { title: string }) => {
return (
<div className="modal">
<h2>{title}</h2>
<button
onClick={() => {
// something work
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 Page = () => {
const openAsyncModal = async () => {
try {
const isOk = await modal.openAsync<boolean>(AsyncModalComponent, {
userId: 123,
});
if(isOk) {
...
} else {
...
}
} catch (error) {
...
}
};
...
return <button onClick={openAsyncModal}>asyncModal open</button>
};
const AsyncModalComponent = ({ resolve, userId }: { resolve: (value: boolean) => void; userId: number }) => {
return (
<div className="modal">
<button onClick={() => resolve(true)}>
ok
</button>
<button onClick={() => resolve(false)}>
cancel
</button>
</div>
);
};