Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 | 'use client' import { useCallback, useEffect, useMemo } from 'react' import { Z_INDEX } from '@/constants/zIndex' import { css } from '../../../styled-system/css' export interface DebugContentModalProps { /** Modal title */ title: string /** Content to display (raw text) */ content: string /** Whether the modal is open */ isOpen: boolean /** Callback when modal should close */ onClose: () => void /** Content type for syntax highlighting */ contentType?: 'text' | 'json' | 'markdown' } /** * Simple JSON syntax highlighter using regex * Returns HTML with spans for different token types */ function highlightJson(json: string): string { // Escape HTML entities first const escaped = json.replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>') // Apply syntax highlighting return ( escaped // Strings (including property names in quotes) .replace(/"([^"\\]|\\.)*"/g, (match) => `<span class="json-string">${match}</span>`) // Numbers .replace(/\b(-?\d+\.?\d*([eE][+-]?\d+)?)\b/g, '<span class="json-number">$1</span>') // Booleans and null .replace(/\b(true|false|null)\b/g, '<span class="json-literal">$1</span>') ) } /** * DebugContentModal - Fullscreen modal for viewing raw debug content * * Shows the original text content with syntax highlighting for JSON. * Does NOT render markdown - shows the raw text as-is. */ export function DebugContentModal({ title, content, isOpen, onClose, contentType = 'text', }: DebugContentModalProps) { // Handle escape key useEffect(() => { if (!isOpen) return const handleKeyDown = (e: KeyboardEvent) => { if (e.key === 'Escape') { onClose() } } window.addEventListener('keydown', handleKeyDown) return () => window.removeEventListener('keydown', handleKeyDown) }, [isOpen, onClose]) // Prevent body scroll when modal is open useEffect(() => { if (isOpen) { document.body.style.overflow = 'hidden' } else { document.body.style.overflow = '' } return () => { document.body.style.overflow = '' } }, [isOpen]) const handleBackdropClick = useCallback( (e: React.MouseEvent) => { if (e.target === e.currentTarget) { onClose() } }, [onClose] ) // Memoize highlighted content const highlightedContent = useMemo(() => { if (contentType === 'json') { return highlightJson(content) } // For text/markdown, just escape HTML return content.replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>') }, [content, contentType]) if (!isOpen) return null return ( <div data-component="debug-content-modal" className={css({ position: 'fixed', inset: 0, backgroundColor: 'rgba(0, 0, 0, 0.9)', display: 'flex', flexDirection: 'column', zIndex: Z_INDEX.MODAL + 10, // Above other modals padding: 4, })} onClick={handleBackdropClick} > {/* Header */} <div className={css({ display: 'flex', alignItems: 'center', justifyContent: 'space-between', padding: 4, borderBottom: '1px solid', borderColor: 'gray.600', backgroundColor: 'gray.800', borderRadius: 'lg lg 0 0', flexShrink: 0, })} > <h2 className={css({ fontSize: 'lg', fontWeight: 'semibold', color: 'white', })} > {title} </h2> <div className={css({ display: 'flex', alignItems: 'center', gap: 3, })} > <span className={css({ fontSize: 'sm', color: 'gray.400', fontFamily: 'mono', })} > {content.length.toLocaleString()} chars </span> <button type="button" onClick={onClose} className={css({ padding: 2, borderRadius: 'md', backgroundColor: 'gray.700', color: 'gray.300', border: 'none', cursor: 'pointer', fontSize: 'lg', lineHeight: 1, _hover: { backgroundColor: 'gray.600', color: 'white', }, })} aria-label="Close" > ✕ </button> </div> </div> {/* Content - Raw text display */} <div className={css({ flex: 1, overflow: 'auto', backgroundColor: '#1a1a2e', // Dark blue-ish background for code borderRadius: '0 0 lg lg', })} onClick={(e) => e.stopPropagation()} > <pre className={css({ margin: 0, padding: 4, fontFamily: 'mono', fontSize: 'sm', lineHeight: 1.6, whiteSpace: 'pre-wrap', wordBreak: 'break-word', color: '#e0e0e0', // Light gray text // JSON syntax highlighting colors '& .json-string': { color: '#a8e6a3', // Light green for strings }, '& .json-number': { color: '#f4a460', // Orange for numbers }, '& .json-literal': { color: '#87ceeb', // Light blue for true/false/null }, })} dangerouslySetInnerHTML={{ __html: highlightedContent }} /> </div> {/* Footer hint */} <div className={css({ textAlign: 'center', padding: 2, fontSize: 'xs', color: 'gray.500', })} > Press Esc to close </div> </div> ) } |