From 0c042ac89fc0822fcbe09c48702857faa5494ae1 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 7 Dec 2025 23:34:03 +0900 Subject: feat(client): add sync status indicator component MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add SyncStatusIndicator component to display current sync state in the UI header. The component shows online/offline status, syncing progress, pending changes count, and sync errors. - Create SyncProvider context to wrap SyncManager for React components - Add SyncStatusIndicator component with visual status indicators - Integrate indicator into HomePage header - Add comprehensive tests for SyncStatusIndicator and SyncProvider - Update existing tests to include SyncProvider wrapper 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- src/client/sync/conflict.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/client/sync/conflict.test.ts') diff --git a/src/client/sync/conflict.test.ts b/src/client/sync/conflict.test.ts index 7f86953..211f410 100644 --- a/src/client/sync/conflict.test.ts +++ b/src/client/sync/conflict.test.ts @@ -466,7 +466,8 @@ describe("ConflictResolver", () => { expect(result.decks).toHaveLength(1); expect(result.decks[0]?.resolution).toBe("server_wins"); - const insertedDeck = await localDeckRepository.findById("non-existent-deck"); + const insertedDeck = + await localDeckRepository.findById("non-existent-deck"); expect(insertedDeck?.name).toBe("Server Deck"); }); -- cgit v1.2.3-70-g09d2