Skip to content

Improve dump file viewers for faster log inspection#16

Merged
JRoy merged 3 commits into
masterfrom
copilot/fix-issue-14-and-15
May 24, 2026
Merged

Improve dump file viewers for faster log inspection#16
JRoy merged 3 commits into
masterfrom
copilot/fix-issue-14-and-15

Conversation

Copilot AI commented May 24, 2026

Copy link
Copy Markdown
Contributor

Dump file panels were too constrained for log/debug inspection and did not support in-panel keyboard search. This updates the large dump viewers to expose more content at once and makes Ctrl/Cmd + F target the dump panel instead of the browser search.

  • Larger dump panes

    • Increase dump file viewer height from 400px to 600px for both virtualized large-file views and syntax-highlighted file views.
    • This applies consistently across the dump dropdown/file panels so more lines are visible without repeated scrolling.
  • In-view search for large dump files

    • Add a search input to the virtualized dump viewer used for large files such as logs and command maps.
    • Capture Ctrl/Cmd + F when the viewer is active to focus the panel-local search.
    • Track matching lines, scroll to the active result, and highlight matches inline.
  • Keyboard-oriented navigation

    • Enter advances to the next match.
    • Shift + Enter moves to the previous match.
    • Show match counts and platform-specific shortcut hints (Cmd on macOS, Ctrl elsewhere).
<VirtualizedText content={content} maxHeight={600} />

// Inside the viewer:
if ((event.ctrlKey || event.metaKey) && event.key.toLowerCase() === 'f') {
  event.preventDefault();
  searchInputRef.current?.focus();
  searchInputRef.current?.select();
}

Copilot AI and others added 3 commits May 24, 2026 02:11
@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented May 24, 2026

Copy link
Copy Markdown

Deploying with  Cloudflare Workers  Cloudflare Workers

The latest updates on your project. Learn more about integrating Git with Workers.

Status Name Latest Commit Preview URL Updated (UTC)
✅ Deployment successful!
View logs
essentialsx-website baa3f8d Commit Preview URL

Branch Preview URL
May 24 2026, 02:22 AM

@JRoy JRoy marked this pull request as ready for review May 24, 2026 02:24
@JRoy JRoy merged commit aa3190e into master May 24, 2026
2 checks passed
@JRoy JRoy deleted the copilot/fix-issue-14-and-15 branch May 24, 2026 02:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Make the dump dropdown views bigger Add Ctrl + F support to the dump dropdown views

2 participants