Migrate all 84 frontend files from the old themed/colored design to a monochrome glass-morphism design system. Pure black backgrounds, white text with opacity levels, glass-card components with backdrop-blur, and functional color reserved for status indicators only. Foundation: remap CSS variables to monochrome, simplify Tailwind config, remove theme toggle, convert brand logo/wordmark to white. Pages: all 14 pages updated. Components: all common, library, session, step-library, tree-editor, tree-preview, admin, and subscription components converted. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
104 lines
2.8 KiB
TypeScript
104 lines
2.8 KiB
TypeScript
import { useEffect, useCallback, type ReactNode } from 'react'
|
|
import { X } from 'lucide-react'
|
|
import { cn } from '@/lib/utils'
|
|
|
|
interface ModalProps {
|
|
isOpen: boolean
|
|
onClose: () => void
|
|
title: string
|
|
children: ReactNode
|
|
/** Optional footer content that stays fixed at bottom (doesn't scroll) */
|
|
footer?: ReactNode
|
|
size?: 'sm' | 'md' | 'lg' | 'xl'
|
|
}
|
|
|
|
export function Modal({ isOpen, onClose, title, children, footer, size = 'md' }: ModalProps) {
|
|
// Close on Escape key
|
|
const handleKeyDown = useCallback(
|
|
(e: KeyboardEvent) => {
|
|
if (e.key === 'Escape') {
|
|
onClose()
|
|
}
|
|
},
|
|
[onClose]
|
|
)
|
|
|
|
useEffect(() => {
|
|
if (isOpen) {
|
|
document.addEventListener('keydown', handleKeyDown)
|
|
document.body.style.overflow = 'hidden'
|
|
}
|
|
return () => {
|
|
document.removeEventListener('keydown', handleKeyDown)
|
|
document.body.style.overflow = ''
|
|
}
|
|
}, [isOpen, handleKeyDown])
|
|
|
|
if (!isOpen) return null
|
|
|
|
const sizeClasses = {
|
|
sm: 'max-w-sm',
|
|
md: 'max-w-md',
|
|
lg: 'max-w-full sm:max-w-lg',
|
|
xl: 'max-w-full sm:max-w-4xl',
|
|
}
|
|
|
|
return (
|
|
<div
|
|
className="fixed inset-0 z-50 flex items-end justify-center p-0 sm:items-center sm:p-4"
|
|
role="dialog"
|
|
aria-modal="true"
|
|
aria-labelledby="modal-title"
|
|
>
|
|
{/* Backdrop */}
|
|
<div
|
|
className="absolute inset-0 bg-black/80 backdrop-blur-sm"
|
|
onClick={onClose}
|
|
aria-hidden="true"
|
|
/>
|
|
|
|
{/* Modal Content */}
|
|
<div
|
|
className={cn(
|
|
'relative flex w-full flex-col border border-white/[0.06] bg-[#0a0a0a] shadow-lg',
|
|
'max-h-[100vh] rounded-t-2xl sm:max-h-[85vh] sm:rounded-2xl',
|
|
'animate-scale-in',
|
|
sizeClasses[size]
|
|
)}
|
|
>
|
|
{/* Header - Fixed at top */}
|
|
<div className="flex flex-shrink-0 items-center justify-between border-b border-white/[0.06] px-4 py-3 sm:px-6 sm:py-4">
|
|
<h2 id="modal-title" className="text-lg font-semibold text-white">
|
|
{title}
|
|
</h2>
|
|
<button
|
|
onClick={onClose}
|
|
className={cn(
|
|
'rounded-md p-1.5 text-white/40 transition-colors sm:p-1',
|
|
'hover:bg-white/10 hover:text-white',
|
|
'focus:outline-none focus:ring-2 focus:ring-white/20'
|
|
)}
|
|
aria-label="Close modal"
|
|
>
|
|
<X className="h-5 w-5" />
|
|
</button>
|
|
</div>
|
|
|
|
{/* Body - Scrollable */}
|
|
<div className="flex-1 overflow-y-auto px-4 py-4 sm:px-6">
|
|
{children}
|
|
</div>
|
|
|
|
{/* Footer - Fixed at bottom */}
|
|
{footer && (
|
|
<div className="flex-shrink-0 border-t border-white/[0.06] px-4 py-3 sm:px-6 sm:py-4">
|
|
{footer}
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Modal
|