aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/client/stores/index.ts
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-12-07 23:34:03 +0900
committernsfisis <nsfisis@gmail.com>2025-12-07 23:34:03 +0900
commit0c042ac89fc0822fcbe09c48702857faa5494ae1 (patch)
treeea1f1d180f747613343040d441a07f92b2760840 /src/client/stores/index.ts
parentae5a0bb97fbf013417a6962f7e077f0408b2a951 (diff)
downloadkioku-0c042ac89fc0822fcbe09c48702857faa5494ae1.tar.gz
kioku-0c042ac89fc0822fcbe09c48702857faa5494ae1.tar.zst
kioku-0c042ac89fc0822fcbe09c48702857faa5494ae1.zip
feat(client): add sync status indicator component
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 <noreply@anthropic.com>
Diffstat (limited to 'src/client/stores/index.ts')
-rw-r--r--src/client/stores/index.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/client/stores/index.ts b/src/client/stores/index.ts
index 7117bd6..c7f6241 100644
--- a/src/client/stores/index.ts
+++ b/src/client/stores/index.ts
@@ -5,3 +5,11 @@ export type {
AuthState,
} from "./auth";
export { ApiClientError, AuthProvider, useAuth } from "./auth";
+
+export type {
+ SyncActions,
+ SyncContextValue,
+ SyncProviderProps,
+ SyncState,
+} from "./sync";
+export { SyncProvider, useSync } from "./sync";