import './modal.css'; import { createPortal } from 'preact/compat'; import { useEffect, useRef } from 'preact/hooks'; import { useHotkeys } from 'react-hotkeys-hook'; import useCloseWatcher from '../utils/useCloseWatcher'; const $modalContainer = document.getElementById('modal-container'); function Modal({ children, onClose, onClick, class: className, minimized }) { if (!children) return null; const modalRef = useRef(); useEffect(() => { let timer = setTimeout(() => { const focusElement = modalRef.current?.querySelector('[tabindex="-1"]'); if (focusElement) { focusElement.focus(); } }, 100); return () => clearTimeout(timer); }, []); const supportsCloseWatcher = window.CloseWatcher; const escRef = useHotkeys( 'esc', () => { setTimeout(() => { onClose?.(); }, 0); }, { enabled: !supportsCloseWatcher && !!onClose, // Using keyup and setTimeout above // This will run "later" to prevent clash with esc handlers from other components keydown: false, keyup: true, }, [onClose], ); useCloseWatcher(onClose, [onClose]); useEffect(() => { const $deckContainers = document.querySelectorAll('.deck-container'); if (minimized) { // Similar to focusDeck in focus-deck.jsx // Focus last deck const page = $deckContainers[$deckContainers.length - 1]; // last one if (page && page.tabIndex === -1) { page.focus(); } } else { if (children) { $deckContainers.forEach(($deckContainer) => { $deckContainer.setAttribute('inert', ''); }); } else { $deckContainers.forEach(($deckContainer) => { $deckContainer.removeAttribute('inert'); }); } } return () => { $deckContainers.forEach(($deckContainer) => { $deckContainer.removeAttribute('inert'); }); }; }, [children, minimized]); const Modal = (