Add a Diagnostics panel to the UI - #3
Merged
Merged
Conversation
Wires the diagnostics IPC handlers to actual buttons - the gap left open
when logging and crash reporting landed.
- DiagnosticsPanel: collapsed by default, with Collect Diagnostics and
Open Log Folder. A support tool, not something wanted during a show.
- diag on the preload bridge: the main-process handlers already existed,
but nothing exposed them to the renderer, so no UI could reach them.
- Styling built from each app's own CSS tokens.
The collected path is copied to the clipboard as well as shown, and the
folder can be revealed - on macOS logs live under ~/Library/Logs, which
Finder hides by default. A refused clipboard is caught; the path stays on
screen either way.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Wires the diagnostics IPC handlers to actual buttons — the gap left open when logging and crash reporting landed.
What this adds
DiagnosticsPanel— collapsed by default, with Collect Diagnostics and Open Log Folder. It is a support tool, not something anyone needs during a show.diagon the preload bridge —diag:collectanddiag:openLogFolderwere already registered in the main process byinstallElectronDiagnostics(), but nothing exposed them to the renderer, so no UI could reach them.Notes
~/Library/Logs, which Finder hides by default.overflow-wrap: anywhere, because it holds a filesystem path and would otherwise overflow the panel.Verification
Rendered for real, not just typechecked: the panel was mounted in a throwaway Vite harness with a stubbed bridge, expanded, and Collect Diagnostics clicked — status line showed the returned path, and the clipboard-refused fallback exercised itself (plain HTTP has no
navigator.clipboard). Screenshot confirmed the styling and the path wrapping. All six apps typecheck and build clean.🤖 Generated with Claude Code