Add the frontend guides the v2 UI kit and compliance-portal need but that the first rework left uncovered: forms, routing, client state, and permission-gated UI. forms.md documents a tiered approach on Base UI Field/Form -- native constraints, then a validate function, then zod parsed in onSubmit, and react-hook-form only for large or dynamic forms -- and drops the custom useFormWithSchema wrapper. routing.md covers @probo/routes, navigation, typed params, URL-as-state, redirects, auth/protected routes, and the folded-in no-outlet-context rule. state-management.md gives a decision order across Relay, URL, local state, context, and zustand. permissions.md gates UI on the canUpdate/canDelete permission(action:) fields without re-encoding authorization in the client. Rename v2-colors.md to v2-tokens.md and add the typography, radius, shadow, and native-spacing scales alongside color. Extend ui.md with user feedback, empty-state, and accessibility sections; standardize toasts on Base UI's Toast (Toast.useToastManager) and retire the legacy useToast across ui.md, forms.md, error-handling.md, and relay.md. Add an Intl formatting section to i18n.md and a non-Relay HTTP / file upload-download section to ts-style.md. Update the AGENTS.md index and the v2-color-scale cursor rule for the new and renamed guides. Signed-off-by: Émile Ré <emile@probo.com>
4.1 KiB
4.1 KiB
Client state management
Probo frontends have several places state can live. Choosing the wrong one is the most common source of avoidable complexity: data drilled through props, local state that should have been in the URL, or a global store holding what is really server data. This guide is a decision order — start at the top and stop at the first option that fits.
Related guides
| Topic | Guide |
|---|---|
| Server data (queries, fragments, mutations, store) | contrib/claude/relay.md |
| URL/search params, navigation | contrib/claude/routing.md |
| Props are configuration, not data | contrib/claude/react-components.md |
Decision order
- Server data → Relay. Anything fetched from the API lives in the Relay store, read via
useFragment/usePreloadedQuery, and mutated withuseMutationthat updates the store. Never copy server data intouseStateto "manage" it. (Seerelay.md.) - Shareable / linkable / reload-surviving UI state → the URL. Active tab, filters, sort, search query, pagination cursor, selected id in a master-detail view. Use
useSearchParams/ route params (seerouting.md). If a teammate should be able to paste the link and see the same view, it belongs here. - Local component state →
useState/useReducer. Ephemeral, view-only state scoped to one component or a small subtree: an input's draft value, whether a menu is open, a hover flag. Keep it as local as possible. - Shared ephemeral state across a subtree → React context. When a handful of nearby components need the same ephemeral state and lifting to a common parent is clean (e.g. a wizard step, a selection set within a list). Context carries the state + setters; it does not carry server data.
- App-wide ephemeral client state →
zustand. Only for genuinely global, non-server, non-URL state that many unrelated parts of the app read/write: theme / dark-mode preference, a command palette, global toasts. Reach for it last.
flowchart TD
start[Need to hold some state] --> server{From the API?}
server -->|Yes| relay[Relay store]
server -->|No| url{"Shareable / linkable / survive reload?"}
url -->|Yes| search[URL: useSearchParams or route params]
url -->|No| scope{Used by one component or a small subtree?}
scope -->|One subtree| local[useState / useReducer]
scope -->|A few nearby components| ctx[React context]
scope -->|Many unrelated places| zustand[zustand store]
Do / don't
Server data stays in Relay
// Bad — copying fetched data into local state to "edit" it
const data = usePreloadedQuery(query, queryRef);
const [measures, setMeasures] = useState(data.measures);
// Good — read from Relay; mutate through useMutation (store updates flow back)
const data = usePreloadedQuery(query, queryRef);
Tab / filter belong in the URL
// Bad — active tab in local state; lost on reload, not linkable
const [tab, setTab] = useState<"open" | "closed">("open");
// Good — tab in the URL
const [params, setParams] = useSearchParams();
const tab = params.get("tab") ?? "open";
Don't reach for a global store by default
// Bad — a zustand store for state two sibling components share
useFilterStore(); // global singleton for a local concern
// Good — lift to the nearest common parent (state + context if the tree is deep)
zustand is available (it's a @probo/ui dependency) — use it deliberately for app-wide ephemeral state, not as a shortcut around prop-passing or the URL.
Anti-patterns to avoid
- Prop-drilling data that a child could read from Relay (
useFragment) or the router (useParams) itself. - Mirroring a controlled value (e.g. a dialog's
open, a fragment field) intouseState+useEffectto keep them in sync — pass the source through instead. - Global store as a cache for server data — that's Relay's job.
- Outlet context for domain data — forbidden; see
routing.md.