Created
December 7, 2017 21:17
-
-
Save jacobwallenberg/e19c62748a471a6b5f6b7f1b759955d3 to your computer and use it in GitHub Desktop.
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
import React from 'react' | |
import { | |
BrowserRouter as Router, | |
Route, | |
Link, | |
Prompt | |
} from 'react-router-dom' | |
const PreventingTransitionsExample = () => ( | |
<Router> | |
<div> | |
<ul> | |
<li><Link to="/">Form</Link></li> | |
<li><Link to="/one">One</Link></li> | |
<li><Link to="/two">Two</Link></li> | |
</ul> | |
<Route path="/" exact component={Form}/> | |
<Route path="/one" render={() => <h3>One</h3>}/> | |
<Route path="/two" render={() => <h3>Two</h3>}/> | |
</div> | |
</Router> | |
) | |
class Form extends React.Component { | |
state = { | |
isBlocking: false | |
} | |
render() { | |
const { isBlocking } = this.state | |
return ( | |
<form | |
onSubmit={event => { | |
event.preventDefault() | |
event.target.reset() | |
this.setState({ | |
isBlocking: false | |
}) | |
}} | |
> | |
<Prompt | |
when={isBlocking} | |
message={location => ( | |
`Are you sure you want to go to ${location.pathname}` | |
)} | |
/> | |
<p> | |
Blocking? {isBlocking ? 'Yes, click a link or the back button' : 'Nope'} | |
</p> | |
<p> | |
<input | |
size="50" | |
placeholder="type something to block transitions" | |
onChange={event => { | |
this.setState({ | |
isBlocking: event.target.value.length > 0 | |
}) | |
}} | |
/> | |
</p> | |
<p> | |
<button>Submit to stop blocking</button> | |
</p> | |
</form> | |
) | |
} | |
} | |
export default PreventingTransitionsExample |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment