Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
TanStack DB ~状態管理の新しい考え方~
Search
Sponsored
·
Ship Features Fearlessly
Turn features on and off without deploys. Used by thousands of Ruby developers.
→
じょうげん
August 22, 2025
Programming
1.1k
2
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
TanStack DB ~状態管理の新しい考え方~
じょうげん
August 22, 2025
More Decks by じょうげん
See All by じょうげん
値・型・名前空間の「三重定義」で Reactコンポーネントをより柔軟に設計する TypeScript コンパニオンオブジェクト活用術
bmthd
0
46
読みやすいコードとはなにか? 未来の自分とチームへの思いやり
bmthd
0
470
Yamada UIドキュメント v2紹介
bmthd
0
720
コールバックchildrenでロジックの見通しを改善する
bmthd
0
34
Formの複雑さに立ち向かう
bmthd
1
3.4k
Other Decks in Programming
See All in Programming
ADKを使って簡単にAIエージェントを作ってみよう
k1mu21
0
280
Contextとはなにか
chiroruxx
1
370
PHPで使える日時の表現と、その知り方 #frontend_phpcon_do
o0h
PRO
0
260
エンジニア向け会社紹介/Findy Company Profile
findyinc
6
350k
並列実装の現場、2ヶ月間実務でAIを使い倒したAIもPCも私も限界が近い
ming_ayami
0
130
技術記事、 専門家としてのプログラマ、 言語化
mizchi
13
6.5k
Developing with AI Agents — Codex, Claude Code & Cowork Practical Guide
x5gtrn
PRO
0
1.3k
A2UI という光を覗いてみる
satohjohn
1
160
AI 輔助遺留系統現代化的經驗分享
jame2408
1
1k
Go1.27で導入されるジェネリクスメソッドでできること
mackee
0
180
過去最大のMCPアップデート! 2026-07-28 RC版の謎に迫る
licux
6
400
Inside Stream API
skrb
1
780
Featured
See All Featured
GitHub's CSS Performance
jonrohan
1033
470k
Making Projects Easy
brettharned
120
6.7k
AI Search: Implications for SEO and How to Move Forward - #ShenzhenSEOConference
aleyda
1
1.3k
Designing Experiences People Love
moore
143
24k
Why Our Code Smells
bkeepers
PRO
340
58k
Six Lessons from altMBA
skipperchong
29
4.3k
Leo the Paperboy
mayatellez
7
1.9k
Rails Girls Zürich Keynote
gr2m
96
14k
Jess Joyce - The Pitfalls of Following Frameworks
techseoconnect
PRO
1
170
Making the Leap to Tech Lead
cromwellryan
135
9.9k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
47
8.2k
Believing is Seeing
oripsolob
1
150
Transcript
TanStack DB ~ 状態管理の新しい考え方~ じょうげん
TanStack Query - Server State Management TanStack Router - Type-Safe
Routing TanStack Table - Headless Table Building TanStack Form - Headless Form Building TanStack DB - Client-Side Database ← NEW! TanStack ファミリー
フロントエンドに 永続化層(DB) を設けてコンポーネントからクエリする クエリファーストなAPI React だけでなく Vue / Svelte /
Solid など多数のUI フレームワークをサポート TanStack DB とは?
Client Side Querying → データ取得の主導権をフロント側へ 設計思想
export const drawCalcCollection = createCollection( localStorageCollectionOptions({ storageKey: "tcg-tool-draw-calculations", id: "draw-calculations",
getKey: (item) => item.id, schema: drawCalcSchema }), ); Collection という単位でデータの永続化を定義 Zod やValibot などでランタイムバリデーションありの型定義可能 React での使い方の例
const { data } = useLiveQuery((q) => q .from({ calculations:
calculationsCollection }) .where(({ calculations }) => eq(calculations.id, calculationId)), ); Drizzle のようなSQL ライクなセレクター 型安全なクエリビルダー クエリで絞り込まれた箇所のみの部分的なSubscribe を実現
const CalculationItem = ({ calculationId }: { calculationId: string })
=> { const { data } = useLiveQuery((q) => q.from({ calculations: calculationsCollection }) .where(({ calculations }) => eq(calculations.id, calculationId)), ); const firstCalculation = data[0]; if (!firstCalculation) return <FallbackItem />; return ( <Card.Root> <Card.Header> {firstCalculation.name} </Card.Header> <Card.Body> {firstCalculation.result} </Card.Body> </Card.Root> ); } コンポーネントで使う
// 条件をあらかじめ指定 export const drawCalcHistoryCollection = createLiveQueryCollection((q) => q.from({ calculations:
drawCalcCollection }) .orderBy(({ calculations }) => calculations.updatedAt, "desc"), ); // 引数ありの動的なCollection export const createDrawCalcByGameCollection = (gameTemplate: string) => createLiveQueryCollection((q) => q.from({ calculations: drawCalcCollection }) .where(({ calculations }) => eq(calculations.gameTemplate, gameTemplate)) .orderBy(({ calculations }) => calculations.updatedAt, "desc"), ); 派生Collection も可能
TanStack DB 、なにが美味しい?
localStorage インメモリ REST API Electric SQL TrailBase Supabase, IndexedDB, DuckDB
Wasm などもAdapter を用意することで利用可能になる かも 永続化層を 自由に差し替え可能
フロントエンド中心のデータ設計 が可能 RLS (Row Level Security )を組み合わせれば都度問い合わせの必要なし 特定の データベースSaaS の実装に依存せずに済む
バックエンド実装が不要に?
Zustand / Jotai のような状態を → SQL ライクなクエリ + スキーマ に置き換え可能
単なる状態管理にとどまらず、データの保管にも利用できる 認知負荷を大幅に削減 できるかも! 状態管理のベストプラクティスを変える?
Claude Code と一緒に既存のアプリケ ーションをTanStack DB に載せ替えし てみた できたもの https://tcg-tool.pages.dev/ draw-calc-db
ソースコード見たい方向 け https://github.com/bmthd/ tcg-tool/pull/3/files おまけ
「フロントエンド中心のデータ設計」を加速させる存在 全てのServer State の抽象化層になりうる フロントエンドの状態管理だけでなくバックエンド設計にも影響を与える可能性 大 まとめ