feat: enhance indexing progress and CSV preview UX#21
Merged
Conversation
…ity filter, and stuck detection - Add intermediate progress updates every 10 rows instead of only on batch boundaries - Add on_log callback to indexer for rich phase-level logging (CSV loading, model loading, batch progress, completion) - Add verbosity levels (low/medium/high) with frontend dropdown filter on Live Logs panel - Wire on_log to WebSocket broadcast in index route - Add 3-second heartbeat from backend for connection health monitoring - Add client-side elapsed timer with server time resync for smooth display - Add stuck detection: warning banner at 15s silence, error banner at 30s - Add try/except around model loading with specific error reporting via on_log - Guard heartbeat cleanup with contextlib.suppress for closed event loops - Update test mock signatures for on_log parameter compatibility - Fix ruff formatting in test_server_search.py and test_utils.py
…rs on completion - Change on_log from sync fire-and-forget to async awaited callback so WebSocket writes complete before the next row, eliminating batchy logs - Wrap CLIPModel and SentenceTransformer loading in asyncio.to_thread to keep the event loop responsive during model init - Add stopTimers helper in useIndexWebSocket to clear elapsed and stuck detection intervals on completed/error - Sync final elapsed_seconds from server on completion
…ow limit, and pagination - Add image URL hover preview with floating tooltip in data preview table - Add 'Upload Different CSV' button to return to upload step - Add row limit dropdown (10/25/50/100) wired to preview API - Add client-side pagination (25 rows per page) with full navigation controls Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
Tests Report 📄Tests Succees ✅JUnit Details
Coverage Details (100% >= 90%) ✅Diff Cover Details
|
||||||||||||||||||||||||||
…agement Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
…handling Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
…atch processing Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
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.
Summary
Changes
Backend
Frontend
markCancelledfrom WebSocket hookcancelledmessage type, preserve terminal status on close, addmarkCancelledfor optimistic UI updatesImageCellcomponent with floating image preview on hover, row limit dropdown (10/25/50/100), client-side pagination (25 rows/page) with full navigationTests
Coverage Report