File size: 13,523 Bytes
c2ea5ed
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
import React, { useRef, useState, useEffect, useMemo } from "react";
import { Editor } from "@monaco-editor/react";
import type { editor } from "monaco-editor";
import { Button } from "@/components/ui/button";
import { ChevronUp, ChevronDown } from "lucide-react";

// Add interface for range - export for reuse
export interface Range {
  start: number;
  end: number;
}

interface LineMapping {
  originalLineNumber: number;
  startChar: number;
  endChar: number;
  content: string;
}

interface MonacoEditorWithHighlightsProps {
  numberedLines: string[]; // each already prefixed with <L#>
  highlightRanges: Range[];
  showNavigationControls?: boolean;
  height?: string;
  theme?: string;
  className?: string;
}

export const MonacoEditorWithHighlights: React.FC<
  MonacoEditorWithHighlightsProps
> = ({
  numberedLines,
  highlightRanges,
  showNavigationControls = true,
  height = "100%",
  theme = "vs-dark",
  className = "",
}) => {
  const editorRef = useRef<editor.IStandaloneCodeEditor | null>(null);
  const [currentHighlightIndex, setCurrentHighlightIndex] = useState(0);
  const [decorations, setDecorations] = useState<string[]>([]);

  // Parse numbered lines and reconstruct original content
  const { reconstructedContent, characterRanges } = useMemo(() => {
    const mapping: LineMapping[] = [];

    // Parse each numbered line and extract line numbers
    const parsedLines: {
      lineNumber: number;
      content: string;
      index: number;
    }[] = [];

    for (let i = 0; i < numberedLines.length; i++) {
      const line = numberedLines[i];
      if (!line) continue;

      const match = line.match(/^<L(\d+)>\s*(.*)$/);
      if (!match) continue;

      const [, lineNumber, content] = match;
      if (!lineNumber || content === undefined) continue;

      parsedLines.push({
        lineNumber: parseInt(lineNumber),
        content,
        index: i,
      });
    }

    // Sort by line number to ensure proper order
    parsedLines.sort((a, b) => a.lineNumber - b.lineNumber);

    // Simple concatenation - just join all content together
    let rawContent = "";
    for (let i = 0; i < parsedLines.length; i++) {
      const currentLine = parsedLines[i];
      if (!currentLine) continue;

      // Track character mapping for highlighting
      const startChar = rawContent.length;
      rawContent += currentLine.content;
      const endChar = rawContent.length;

      mapping.push({
        originalLineNumber: currentLine.lineNumber,
        startChar,
        endChar,
        content: currentLine.content,
      });
    }

    // Process the raw content for better formatting
    let processedContent = rawContent;

    // Convert literal \\n to actual line breaks
    processedContent = processedContent.replace(/\\n/g, "\n");

    // Convert literal \\t to actual tabs
    processedContent = processedContent.replace(/\\t/g, "\t");

    // Try to detect and format JSON content (handle multiple JSON objects)
    const jsonRegex = /\{[^{}]*(?:\{[^{}]*\}[^{}]*)*\}/g;
    const jsonMatches = processedContent.match(jsonRegex);

    if (jsonMatches) {
      jsonMatches.forEach((jsonStr) => {
        try {
          const parsed = JSON.parse(jsonStr);
          const formatted = JSON.stringify(parsed, null, 2);
          processedContent = processedContent.replace(jsonStr, formatted);
        } catch (e) {
          // If JSON parsing fails, keep original content
        }
      });
    }

    // Clean up excessive whitespace but preserve intentional formatting
    processedContent = processedContent
      .replace(/[ \t]+/g, " ") // Multiple spaces/tabs to single space
      .replace(/\n\s*\n\s*\n/g, "\n\n") // Multiple newlines to double newline max
      .trim(); // Remove leading/trailing whitespace

    // Update character mapping based on content transformation
    const contentLengthDiff = processedContent.length - rawContent.length;

    // Convert line-based ranges to character-based ranges
    const charRanges = highlightRanges
      .map((range) => {
        const startMapping = mapping.find(
          (m) => m.originalLineNumber === range.start + 1
        );
        const endMapping = mapping.find(
          (m) => m.originalLineNumber === range.end + 1
        );

        if (!startMapping || !endMapping) {
          return { startChar: 0, endChar: 0 };
        }

        // Adjust for content transformation
        let adjustedStartChar = startMapping.startChar;
        let adjustedEndChar = endMapping.endChar;

        // Simple adjustment - this might need refinement for complex cases
        if (contentLengthDiff > 0) {
          const adjustmentRatio = processedContent.length / rawContent.length;
          adjustedStartChar = Math.floor(
            startMapping.startChar * adjustmentRatio
          );
          adjustedEndChar = Math.floor(endMapping.endChar * adjustmentRatio);
        }

        return {
          startChar: adjustedStartChar,
          endChar: adjustedEndChar,
        };
      })
      .filter((range) => range.startChar !== range.endChar);

    return {
      reconstructedContent: processedContent,
      characterRanges: charRanges,
    };
  }, [numberedLines, highlightRanges]);

  // Sort ranges by start position for navigation
  const sortedRanges = [...characterRanges].sort(
    (a, b) => a.startChar - b.startChar
  );

  // Scroll to specific highlighted range in Monaco Editor
  const scrollToHighlight = (rangeIndex: number) => {
    if (!editorRef.current || sortedRanges.length === 0) return;

    const range = sortedRanges[rangeIndex];
    if (!range) return;

    try {
      const model = editorRef.current.getModel();
      if (!model) {
        // If model isn't ready, retry after a short delay
        setTimeout(() => scrollToHighlight(rangeIndex), 100);
        return;
      }

      const startPosition = model.getPositionAt(range.startChar);

      // Scroll to the position with animation
      editorRef.current.revealPositionInCenter(startPosition, 1); // 1 = animated

      // Update decorations to highlight current range
      updateHighlightDecorations();
    } catch (error) {
      console.warn("Error scrolling to highlight:", error);
      // Retry once after a delay
      setTimeout(() => {
        try {
          const startPosition = editorRef
            .current!.getModel()!
            .getPositionAt(range.startChar);
          editorRef.current!.revealPositionInCenter(startPosition, 1);
          updateHighlightDecorations();
        } catch (retryError) {
          console.warn("Retry failed for scrolling to highlight:", retryError);
        }
      }, 200);
    }
  };

  // Navigation handlers
  const goToNextHighlight = () => {
    if (sortedRanges.length === 0) return;
    const nextIndex = (currentHighlightIndex + 1) % sortedRanges.length;
    setCurrentHighlightIndex(nextIndex);
    scrollToHighlight(nextIndex);
  };

  const goToPreviousHighlight = () => {
    if (sortedRanges.length === 0) return;
    const prevIndex =
      currentHighlightIndex === 0
        ? sortedRanges.length - 1
        : currentHighlightIndex - 1;
    setCurrentHighlightIndex(prevIndex);
    scrollToHighlight(prevIndex);
  };

  // Keyboard navigation
  useEffect(() => {
    const handleKeyDown = (e: KeyboardEvent) => {
      if (
        e.target instanceof HTMLInputElement ||
        e.target instanceof HTMLTextAreaElement
      ) {
        return; // Don't interfere with input fields
      }

      if (e.key === ">" || (e.key === "ArrowDown" && e.ctrlKey)) {
        e.preventDefault();
        goToNextHighlight();
      } else if (e.key === "<" || (e.key === "ArrowUp" && e.ctrlKey)) {
        e.preventDefault();
        goToPreviousHighlight();
      }
    };

    document.addEventListener("keydown", handleKeyDown);
    return () => document.removeEventListener("keydown", handleKeyDown);
  }, [currentHighlightIndex, sortedRanges.length]);

  // Scroll first highlighted range into view on initial load or when ranges change
  useEffect(() => {
    if (sortedRanges.length > 0) {
      setCurrentHighlightIndex(0);
      // Add a small delay to ensure Monaco editor is fully rendered
      const timeoutId = setTimeout(() => {
        scrollToHighlight(0);
      }, 150);

      return () => clearTimeout(timeoutId);
    }
    // Return undefined when no cleanup is needed
    return undefined;
  }, [highlightRanges]);

  // Update decorations when current highlight changes
  useEffect(() => {
    updateHighlightDecorations();
  }, [currentHighlightIndex, characterRanges]);

  // Handle Monaco Editor mount
  const handleEditorDidMount = (editor: editor.IStandaloneCodeEditor) => {
    editorRef.current = editor;

    // Apply initial decorations for highlights
    updateHighlightDecorations();

    // Configure editor options
    editor.updateOptions({
      readOnly: true,
      minimap: { enabled: false },
      scrollBeyondLastLine: false,
      wordWrap: "on",
      lineNumbers: "on",
      folding: false,
      renderWhitespace: "selection",
      fontSize: 12,
      fontFamily: "'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', monospace",
      lineHeight: 18,
      letterSpacing: 0.5,
      fontWeight: "400",
      renderLineHighlight: "none",
      cursorStyle: "line",
      cursorBlinking: "blink",
      smoothScrolling: true,
    });
  };

  // Update highlight decorations in Monaco Editor
  const updateHighlightDecorations = () => {
    if (!editorRef.current) return;

    // Clear all existing decorations first to prevent old highlights from persisting
    if (decorations.length > 0) {
      editorRef.current.deltaDecorations(decorations, []);
      setDecorations([]);
    }

    const newDecorations: editor.IModelDeltaDecoration[] = [];

    characterRanges.forEach((range, index) => {
      const startPosition = editorRef
        .current!.getModel()!
        .getPositionAt(range.startChar);
      const endPosition = editorRef
        .current!.getModel()!
        .getPositionAt(range.endChar);

      const isCurrentHighlight = index === currentHighlightIndex;

      newDecorations.push({
        range: {
          startLineNumber: startPosition.lineNumber,
          startColumn: startPosition.column,
          endLineNumber: endPosition.lineNumber,
          endColumn: endPosition.column,
        },
        options: {
          className: isCurrentHighlight
            ? "current-highlight-decoration"
            : "highlight-decoration",
          isWholeLine: false,
        },
      });
    });

    // Apply new decorations
    const decorationIds = editorRef.current.deltaDecorations(
      [],
      newDecorations
    );
    setDecorations(decorationIds);
  };

  // Detect language for syntax highlighting
  const detectLanguage = (content: string): string => {
    // Check for JSON content
    if (content.trim().startsWith("{") && content.trim().endsWith("}")) {
      try {
        JSON.parse(content);
        return "json";
      } catch {
        // Not valid JSON, continue checking
      }
    }

    // Check for Python code patterns
    if (/^(import|from|def|class|if __name__|print\()/m.test(content)) {
      return "python";
    }

    // Check for JavaScript/TypeScript patterns
    if (/^(import|export|function|const|let|var|console\.log)/m.test(content)) {
      return "javascript";
    }

    // Check for shell/bash patterns
    if (
      /^(#!\/bin\/|cd |ls |mkdir |rm |pip install|npm install)/m.test(content)
    ) {
      return "shell";
    }

    // Check for SQL patterns
    if (/^(SELECT|INSERT|UPDATE|DELETE|CREATE|DROP|ALTER)/im.test(content)) {
      return "sql";
    }

    // Default to plain text
    return "text";
  };

  const detectedLanguage = useMemo(
    () => detectLanguage(reconstructedContent),
    [reconstructedContent]
  );

  return (
    <div className={`flex flex-col h-full ${className}`}>
      {/* Navigation controls */}
      {showNavigationControls && sortedRanges.length > 0 && (
        <div className="flex items-center justify-center gap-2 p-2 border-b bg-muted/10">
          <Button
            variant="ghost"
            size="sm"
            className="h-6 w-6 p-0"
            onClick={goToPreviousHighlight}
            title="Previous highlight (<)"
          >
            <ChevronUp className="h-3 w-3" />
          </Button>
          <span className="text-xs text-muted-foreground">
            {currentHighlightIndex + 1} / {sortedRanges.length}
          </span>
          <Button
            variant="ghost"
            size="sm"
            className="h-6 w-6 p-0"
            onClick={goToNextHighlight}
            title="Next highlight (>)"
          >
            <ChevronDown className="h-3 w-3" />
          </Button>
        </div>
      )}

      {/* Monaco Editor */}
      <div className="flex-1">
        <Editor
          height={height}
          defaultLanguage={detectedLanguage}
          value={reconstructedContent}
          onMount={handleEditorDidMount}
          theme={theme}
          options={{
            readOnly: true,
            minimap: { enabled: false },
            scrollBeyondLastLine: false,
            wordWrap: "on",
            lineNumbers: "on",
            folding: false,
            renderWhitespace: "selection",
            fontSize: 12,
            fontFamily:
              "'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', monospace",
            padding: { top: 10, bottom: 10 },
          }}
        />
      </div>
    </div>
  );
};