-
-
Save tol-is/fd18448be6c2d1570aa0d3c4b83f035e to your computer and use it in GitHub Desktop.
How to make a custom Prompt (using getUserConfirmation) for React Router v4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// use Prompt like normal... magic happens in getUserConfirmation | |
class App extends Component { | |
render () { | |
return ( | |
<Router getUserConfirmation={getUserConfirmation}> | |
{...} | |
<Prompt | |
when={formIsHalfFilledOut} | |
message="Are you sure you want to leave?" | |
/> | |
</Router> | |
) | |
} | |
} | |
ReactDOM.render( | |
<App />, | |
document.getElementById('root') | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// default behavior uses window.confirm | |
const getUserConfirmation = (message, callback) => { | |
const modal = document.createElement('div') | |
document.body.appendChild(modal) | |
const withCleanup = (answer) => { | |
ReactDOM.unmountComponentAtNode(modal) | |
document.body.removeChild(modal) | |
callback(answer) | |
} | |
ReactDOM.render( | |
<UserConfirmation | |
message={message} | |
onCancel={() => withCleanup(false)} | |
onConfirm={() => withCleanup(true)} | |
/>, | |
modal | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment