-
Notifications
You must be signed in to change notification settings - Fork 2.3k
feat(tarko): add event stream viewer #1374
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
✅ Deploy Preview for agent-tars-docs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
2c8c78e to
2056123
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #1374 +/- ##
=======================================
Coverage 14.26% 14.26%
=======================================
Files 250 250
Lines 8562 8562
Branches 1672 1672
=======================================
Hits 1221 1221
Misses 7166 7166
Partials 175 175 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
3d0f6dd to
1e005ce
Compare
refactor(tarko): optimize event stream viewer code quality - Remove duplicate formatTimestamp function, use shared utility - Extract event type configuration to eliminate hardcoded mappings - Add event highlighting support for chat message correlation - Remove redundant comments for better maintainability refactor(tarko): decouple event stream viewer from workspace - Move EventStreamRenderer to independent EventStreamModal - Remove events mode from WorkspaceDisplayMode - Add eventStreamModalOpenAtom for modal state management - Integrate modal in main Layout component - Clean up workspace components and remove coupling feat(tarko): add raw events handler for event stream viewer - Create RawEventsHandler to capture all events in rawEventsAtom - Modify event processing to execute all matching handlers - Add findAllHandlers method to EventHandlerRegistry - Enable real-time event stream display in modal refactor(tarko): simplify event stream modal to basic debug viewer - Remove all animations and fancy UI components - Use simple fullscreen black terminal-style interface - Show raw JSON with timestamps in monospace font - Focus on debugging functionality, not product polish feat(tarko): add collapsible events with JsonRenderer - Show event summary with timestamp and type - Click to expand/collapse individual events - Use JsonRenderer for structured JSON display - Keep terminal-style debug interface fix(tarko): improve event stream modal dark mode and add filter - Fix JsonRenderer dark mode display with CSS overrides - Add event type filter dropdown in header - Show filtered/total event counts - Improve UX with proper dark theme colors fix(tarko): improve JsonRenderer hover effects in dark mode - Change hover background from gray-800 to gray-700 for better visibility - Update border colors for better contrast - Fix text colors for improved readability fix(tarko): prevent white background on JsonRenderer hover - Override bg-white and hover:bg-white to use dark colors - Ensure all hover states use appropriate dark theme colors - Fix jarring white flash on hover in dark mode feat(tarko): add UI config for event stream viewer - Add DebugConfig interface with enableEventStreamViewer option - Add isEventStreamViewerEnabled() function in web-ui-config - Control Activity button and modal visibility based on config - Default to false for production safety
1e005ce to
d208e9d
Compare
✅ Deploy Preview for tarko ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
…d memory overhead
Summary
Adds an independent event stream viewer modal accessible via a new icon in the sidebar. This builds on the
rawEventsAtomintroduced in #1118 to provide real-time visualization of the event stream in a dedicated, non-intrusive interface.Checklist