????

Your IP : 216.73.217.111


Current Path : /proc/self/root/home/arabianr/www/wp-content/plugins/extendify/src/Launch/hooks/
Upload File :
Current File : //proc/self/root/home/arabianr/www/wp-content/plugins/extendify/src/Launch/hooks/useWarnOnLeave.js

import { useEffect } from '@wordpress/element';

export const useWarnOnLeave = (enabled = true) => {
	// Display warning alert if user tries to exit
	useEffect(() => {
		if (!enabled) return;
		const handleUnload = (event) => {
			event.preventDefault();
			event.returnValue = '';
		};
		const opts = { capture: true };
		window.addEventListener('beforeunload', handleUnload, opts);
		return () => {
			window.removeEventListener('beforeunload', handleUnload, opts);
		};
	}, [enabled]);
};