Last active
October 27, 2022 19:05
-
-
Save sibelius/60a4e11da1f826b8d60dc3975a1ac805 to your computer and use it in GitHub Desktop.
Prompt user before leaving route or reload
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 { useEffect, useRef } from 'react'; | |
import { useHistory } from 'react-router-dom'; | |
export const usePrompt = (when: boolean, message: string = 'Are you sure you want to quit without saving your changes?') => { | |
const history = useHistory(); | |
const self = useRef(null); | |
const onWindowOrTabClose = event => { | |
if (!when) { | |
return; | |
} | |
if (typeof event == 'undefined') { | |
event = window.event; | |
} | |
if (event) { | |
event.returnValue = message; | |
} | |
return message; | |
}; | |
useEffect(() => { | |
if (when) { | |
self.current = history.block(message); | |
} else { | |
self.current = null; | |
} | |
window.addEventListener('beforeunload', onWindowOrTabClose); | |
return () => { | |
if (self.current) { | |
self.current(); | |
self.current = null; | |
} | |
window.removeEventListener('beforeunload', onWindowOrTabClose); | |
} | |
}, [message, when]); | |
}; |
Any update for react-router v6.4.1?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, thanks for this hook. Saved my life at work!
I'm using a mod version: https://gist.github.com/Hfreitas/505d5820d26b1455d37e9ec1d0f0f413
Please, give me feedbacks.