diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-01-04 17:43:59 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-01-04 19:09:58 +0900 |
| commit | f8e4be9b36a16969ac53bd9ce12ce8064be10196 (patch) | |
| tree | b2cf350d2e2e52803ff809311effb40da767d859 /src/client/App.test.tsx | |
| parent | e1c9e5e89bb91bca2586470c786510c3e1c03826 (diff) | |
| download | kioku-f8e4be9b36a16969ac53bd9ce12ce8064be10196.tar.gz kioku-f8e4be9b36a16969ac53bd9ce12ce8064be10196.tar.zst kioku-f8e4be9b36a16969ac53bd9ce12ce8064be10196.zip | |
refactor(client): migrate state management from React Context to Jotai
Replace AuthProvider and SyncProvider with Jotai atoms for more granular
state management and better performance. This migration:
- Creates atoms for auth, sync, decks, cards, noteTypes, and study state
- Uses atomFamily for parameterized state (e.g., cards by deckId)
- Introduces StoreInitializer component for subscription initialization
- Updates all components and pages to use useAtomValue/useSetAtom
- Updates all tests to use Jotai Provider with createStore pattern
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Diffstat (limited to 'src/client/App.test.tsx')
| -rw-r--r-- | src/client/App.test.tsx | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/src/client/App.test.tsx b/src/client/App.test.tsx index 2617f44..189a8e1 100644 --- a/src/client/App.test.tsx +++ b/src/client/App.test.tsx @@ -3,12 +3,12 @@ */ import "fake-indexeddb/auto"; import { cleanup, render, screen } from "@testing-library/react"; +import { createStore, Provider } from "jotai"; import { afterEach, beforeEach, describe, expect, it, vi } from "vitest"; import { Router } from "wouter"; import { memoryLocation } from "wouter/memory-location"; import { App } from "./App"; -import { apiClient } from "./api/client"; -import { AuthProvider, SyncProvider } from "./stores"; +import { authLoadingAtom } from "./atoms"; vi.mock("./api/client", () => ({ apiClient: { @@ -38,6 +38,8 @@ vi.mock("./api/client", () => ({ }, })); +import { apiClient } from "./api/client"; + // Helper to create mock responses compatible with Hono's ClientResponse function mockResponse(data: { ok: boolean; @@ -52,14 +54,14 @@ function mockResponse(data: { function renderWithRouter(path: string) { const { hook } = memoryLocation({ path, static: true }); + const store = createStore(); + store.set(authLoadingAtom, false); return render( - <Router hook={hook}> - <AuthProvider> - <SyncProvider> - <App /> - </SyncProvider> - </AuthProvider> - </Router>, + <Provider store={store}> + <Router hook={hook}> + <App /> + </Router> + </Provider>, ); } |
