From f0635f9beb0ff85bbea2264a1b19160f0beed257 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 7 Dec 2025 23:41:28 +0900 Subject: feat(client): add offline mode banner indicator MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Displays a prominent banner at the top of all pages when the user is offline, informing them that changes will sync when reconnected. Shows pending change count when applicable. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- src/client/App.tsx | 43 +++++++------- src/client/components/OfflineBanner.test.tsx | 85 ++++++++++++++++++++++++++++ src/client/components/OfflineBanner.tsx | 39 +++++++++++++ src/client/components/index.ts | 1 + 4 files changed, 148 insertions(+), 20 deletions(-) create mode 100644 src/client/components/OfflineBanner.test.tsx create mode 100644 src/client/components/OfflineBanner.tsx (limited to 'src') diff --git a/src/client/App.tsx b/src/client/App.tsx index f774003..3c20c54 100644 --- a/src/client/App.tsx +++ b/src/client/App.tsx @@ -1,5 +1,5 @@ import { Route, Switch } from "wouter"; -import { ProtectedRoute } from "./components"; +import { OfflineBanner, ProtectedRoute } from "./components"; import { DeckDetailPage, HomePage, @@ -10,24 +10,27 @@ import { export function App() { return ( - - - - - - - - - - - - - - - - - - - + <> + + + + + + + + + + + + + + + + + + + + + ); } diff --git a/src/client/components/OfflineBanner.test.tsx b/src/client/components/OfflineBanner.test.tsx new file mode 100644 index 0000000..41679d9 --- /dev/null +++ b/src/client/components/OfflineBanner.test.tsx @@ -0,0 +1,85 @@ +/** + * @vitest-environment jsdom + */ +import "fake-indexeddb/auto"; +import { cleanup, render, screen } from "@testing-library/react"; +import { afterEach, beforeEach, describe, expect, it, vi } from "vitest"; +import { OfflineBanner } from "./OfflineBanner"; + +// Mock the useSync hook +const mockUseSync = vi.fn(); +vi.mock("../stores", () => ({ + useSync: () => mockUseSync(), +})); + +describe("OfflineBanner", () => { + beforeEach(() => { + vi.clearAllMocks(); + }); + + afterEach(() => { + cleanup(); + }); + + it("renders nothing when online", () => { + mockUseSync.mockReturnValue({ + isOnline: true, + pendingCount: 0, + }); + + render(); + + expect(screen.queryByTestId("offline-banner")).toBeNull(); + }); + + it("renders banner when offline", () => { + mockUseSync.mockReturnValue({ + isOnline: false, + pendingCount: 0, + }); + + render(); + + const banner = screen.getByTestId("offline-banner"); + expect(banner).toBeDefined(); + expect( + screen.getByText(/You're offline. Changes will sync when you reconnect./), + ).toBeDefined(); + }); + + it("displays pending count when offline with pending changes", () => { + mockUseSync.mockReturnValue({ + isOnline: false, + pendingCount: 5, + }); + + render(); + + expect(screen.getByTestId("offline-pending-count")).toBeDefined(); + expect(screen.getByText("(5 pending)")).toBeDefined(); + }); + + it("does not display pending count when there are no pending changes", () => { + mockUseSync.mockReturnValue({ + isOnline: false, + pendingCount: 0, + }); + + render(); + + expect(screen.queryByTestId("offline-pending-count")).toBeNull(); + }); + + it("has correct accessibility attributes", () => { + mockUseSync.mockReturnValue({ + isOnline: false, + pendingCount: 0, + }); + + render(); + + const banner = screen.getByTestId("offline-banner"); + expect(banner.getAttribute("role")).toBe("status"); + expect(banner.getAttribute("aria-live")).toBe("polite"); + }); +}); diff --git a/src/client/components/OfflineBanner.tsx b/src/client/components/OfflineBanner.tsx new file mode 100644 index 0000000..357db33 --- /dev/null +++ b/src/client/components/OfflineBanner.tsx @@ -0,0 +1,39 @@ +import { useSync } from "../stores"; + +export function OfflineBanner() { + const { isOnline, pendingCount } = useSync(); + + if (isOnline) { + return null; + } + + return ( +
+ + + You're offline. Changes will sync when you reconnect. + {pendingCount > 0 && ( + + {" "} + ({pendingCount} pending) + + )} + +
+ ); +} diff --git a/src/client/components/index.ts b/src/client/components/index.ts index 31ebe1f..10f31c6 100644 --- a/src/client/components/index.ts +++ b/src/client/components/index.ts @@ -1,3 +1,4 @@ +export { OfflineBanner } from "./OfflineBanner"; export { ProtectedRoute } from "./ProtectedRoute"; export { SyncButton } from "./SyncButton"; export { SyncStatusIndicator } from "./SyncStatusIndicator"; -- cgit v1.2.3-70-g09d2