????

Your IP : 216.73.217.117


Current Path : /home/arabianr/public_html/wp-content/plugins/extendify/src/AutoLaunch/hooks/
Upload File :
Current File : /home/arabianr/public_html/wp-content/plugins/extendify/src/AutoLaunch/hooks/useWarnOnLeave.js

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

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