Files
wehub-resource-sync e30e75b5d4
Changesets / Create Version PR (push) Has been cancelled
Deploy Shadcn Registry / Deploy Production (push) Has been cancelled
Template Metrics / LOC + Bundle Size (push) Has been cancelled
Code Quality / Oxlint + Oxfmt (push) Has been cancelled
Code Quality / Template Sync (push) Has been cancelled
Code Quality / Build Changed Packages (push) Has been cancelled
Code Quality / Test Changed Packages (push) Has been cancelled
Deploy Expo Example / Deploy Production (push) Has been cancelled
Deploy Ink Example / Deploy Production (push) Has been cancelled
Python Tests / pytest (assistant-stream, 3.10) (push) Has been cancelled
Python Tests / pytest (assistant-stream, 3.12) (push) Has been cancelled
Python Tests / pytest (assistant-ui-sync-server-api, 3.10) (push) Has been cancelled
Python Tests / pytest (assistant-ui-sync-server-api, 3.12) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:40:13 +08:00

53 lines
1.4 KiB
Plaintext

---
title: Why Store
description: The problem Store solves.
---
With Tap's `useResource`, a component owns its resource directly:
```tsx
const Counter = () => {
const { count, increment } = useResource(CounterResource());
return <button onClick={increment}>{count}</button>;
};
```
This works when the component that creates the state is the same one that displays it. But what happens when they're far apart?
## The gap
In most apps, state is created near the top of the tree and consumed deep inside it. A chat app creates its thread state at the root, but individual messages render many layers down.
```
App ← owns the thread
└ Layout
└ Sidebar
└ ChatPanel
└ MessageList
└ Message ← needs the thread's data
```
You could prop-drill or set up your own React Context. Store does this for you.
## How Store bridges the gap
```tsx
// At the top — create and provide
const App = () => {
const aui = useAui({ thread: ThreadResource() });
return (
<AuiProvider value={aui}>
<Layout />
</AuiProvider>
);
};
// Anywhere below — consume
const Message = () => {
const isRunning = useAuiState((s) => s.thread.isRunning);
return <p>{isRunning ? "Running" : "Idle"}</p>;
};
```
`useAui` creates the state. `AuiProvider` makes it available to the tree. `useAuiState` reads from it — the component re-renders only when the selected value changes.