react-modal-promise
TypeScript icon, indicating that this package has built-in type declarations

1.0.2 • Public • Published

Install

npm install react-modal-promise

or

yarn add react-modal-promise

How to use:

  1. Place ModalContainer in any place of your App, it will emit new modal instances:
import ModalContainer from 'react-modal-promise'

class MyApp extends React.Component {
  render () {
    return (
      <ModalContainer />
    )
  }
}
  1. Create you own modal component:

(You should pass isOpen: boolean flag to you Modal component)

You can resolve or reject Promise with onResolve() or onReject() callback from props:

import { createModal } from 'react-modal-promise'
import { Modal } from 'react-bootstrap'

const MyModal = ({ isOpen, onResolve, onReject }) => (
  <Modal open={isOpen} onHide={() => onReject()}>
    My Super Promised modal
    <button onClick={() => onResolve(/*pass any value*/)}>Confirm modal</button>
    <button onClick={() => onReject(/*throw any error*/)}>Reject modal</button>
  </Modal>
)

And wrap it:

const myPromiseModal = createModal(MyModal)
  1. Use the modal as a Promise everywhere:
myPromiseModal({ /*pass any props there*/ })
  .then(value => {
    // get value that you passed to 'onResolve' function
  }).catch(error => {
    // get error that you passed to 'onReject' function
  })

Examples

Simple:

Edit react-modal-promise-example

With hook and route control:

Edit react-modal-promise-router-example

Use multiple scopes:

Edit react-modal-promise-multiple-scopes-example

Features

You can use react-modal-promise with any theming (Bootstrap or material-ui, styled-components, or other), all instances work great!

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
1.0.222,465latest

Version History

VersionDownloads (Last 7 Days)Published
1.0.222,465
1.0.13
1.0.059
0.7.6376
0.7.53
0.7.43
0.7.33
0.7.26
0.7.13
0.7.04
0.6.011
0.5.31,194
0.5.278
0.5.13
0.5.03
0.4.03
0.3.411
0.3.33
0.3.2190
0.3.192
0.3.03
0.2.23
0.2.13
0.2.03
0.1.94
0.1.890
0.1.73
0.1.63
0.1.53
0.1.43
0.1.33
0.1.23
0.1.14
0.1.03
0.0.73
0.0.63
0.0.53
0.0.43
0.0.33
0.0.23
0.0.13

Package Sidebar

Install

npm i react-modal-promise

Weekly Downloads

11,018

Version

1.0.2

License

MIT

Unpacked Size

58 kB

Total Files

16

Last publish

Collaborators

  • cudr