# SPA conventions — "Add a screen" playbook Purpose: a precise playbook for adding a new screen (or sub-path editor) to the ChicoryTV React SPA (`web/`), for an agent with no prior context in this repo. **Update this doc in the same PR that changes any convention below.** Companion to `api-conventions.md` (the API surface the SPA talks to) and `docs/contributing.md` (general repo conventions). ## 1. Stack & layout Vite + React + TypeScript, builds to `ErsatzTV/wwwroot/app` (see `web/vite.config.ts`: `base: '/app/'`, `build.outDir: '../ErsatzTV/wwwroot/app'`), served by the ASP.NET host at `/app`. - **Composition root**: `web/src/App.tsx` — owns the active route, approved Libraries sub-path, navigation guard integration, and theme; it composes the shell with the matched screen. - **Routes + nav**: `web/src/app/routes.tsx` — the ONE stable module-level array of `ScreenRoute` objects (`path`, `label`, `title`, `kicker`, `icon`, etc.) plus `allowSubPaths?: boolean`, the matcher, and sidebar group definitions. Route objects must never be rebuilt per render. - **Shell + screen dispatch**: `web/src/app/AppShell.tsx` owns Sidebar/TopBar/Connect/version/theme chrome; `web/src/app/ScreenContent.tsx` exhaustively maps a matched route to its screen and owns the Media/Libraries route wrappers. - **Screens**: `web/src/screens/*.tsx`, one file per top-level screen, generally with a colocated `*.test.tsx`. - **API clients**: `web/src/api/.ts` (see §4). - **Styling**: `web/src/shell.css` (+ `web/src/components/components.css`) — utility classes with a `ctv-` prefix (~690 occurrences across those two files). Reuse an existing `ctv-*` class before inventing a new one. `shell.css` carries the only base reset — `html, body { margin: 0 }` plus `body { background: var(--surface-app) }` (the 8px default body margin otherwise frames every full-viewport layout with a light border, #373). **There is no global `box-sizing` reset** (the SPA is authored under the default `content-box`), so any element that combines `width: 100%` with padding/border must set `box-sizing: border-box` locally or it overflows its container — e.g. `.ctv-nav-item` (#377). Prefer `width: auto` (shrink-to-fit) over `width: 100%` + padding where you can. ## 2. CRITICAL: sub-path screens must own their own pathname state If a route sets `allowSubPaths: true` (e.g. so `/app/blocks/{id}` works under the `/app/blocks` nav entry), **the screen component itself must track `window.location.pathname` and listen for `popstate`** — do not rely on the composition root re-rendering `ScreenContent` when the sub-path changes. **Why**: `app/routes.tsx`'s `routeFromLocation()` matches an `allowSubPaths` route by prefix (`pathname.startsWith(\`${route.path}/\`)`) and returns the **same `ScreenRoute` object reference** for the base path and every sub-path under it. `App`'s state update is `setActiveRoute(routeFromLocation())`; React's `useState` setter bails via `Object.is` when the new value is reference-equal to the old one — so navigating from `/app/blocks` to `/app/blocks/42` (or between `/app/blocks/42` and `/app/blocks/17`) **never re-invokes `ScreenContent`** at the `App` level. See the comment block directly above `PlayoutsRouteScreen` in `screens/PlayoutsScreen.tsx` for the canonical explanation, and its implementation (`useState(() => window.location.pathname)` + `useEffect` with a `popstate` listener local to the wrapper component) for the fix. Exemplars of screens that already do this correctly: `BlocksScreen.tsx`, `TemplatesScreen.tsx`, `DecosScreen.tsx`, `DecoTemplatesScreen.tsx`, and the `PlayoutsRouteScreen` wrapper colocated in `PlayoutsScreen.tsx` (which owns two sibling sub-paths, `/playouts/{id}/alternate-schedules` and `/playouts/{id}/templates`, dispatching internally via `parsePlayoutSubRoute`). **Exception — a guarded sub-path route defers pathname ownership to App.** When a sub-path route's screens ALSO register a dirty guard (§8), the wrapper must **not** self-listen for `popstate`; App owns the pathname and passes the approved sub-path down as a prop. The `LibrariesRouteScreen` wrapper in `app/ScreenContent.tsx` is the exemplar (sub-path parsed by `parseLibrariesSubRoute`, dispatched via a flat `switch`, sub-path supplied by App's `librariesSubPath` state). See §8 for why child-before-parent effect order makes the self-listening pattern unsafe here. ## 3. Data loading pattern Reference implementation: `web/src/screens/LogsScreen.tsx`. Structure to copy for any screen that fetches from the API: - A **discriminated-union state type** covering loading/success/error, e.g. `type LogsState = { status: 'loading'; ... } | { status: 'success'; ... } | { status: 'error'; ... }`. - A `seqRef` (monotonically incremented request counter) + `activeRef` (mount-tracking boolean, flipped in a mount/unmount `useEffect`) pair — guards against a stale, slower request overwriting a newer one's result, and against setting state after unmount. - The actual fetch lives in a `useCallback` (`load`), called from a **separate** `useEffect(() => { load(); }, [load])`. - **Lint rule — `react-hooks` "no set-state-in-effect"**: never call `setState` **synchronously in the body** of a `useEffect`. State transitions happen only inside event handlers or promise `.then()`/`.catch()` callbacks (as in `LogsScreen`'s `load`). This is enforced by `eslint-plugin-react-hooks` in `web/eslint.config.js` — a synchronous `setState` in an effect body will fail `npm run lint`. ## 3a. "Keep results visible during refetch" ⇒ gate mutations + show a refreshing cue Some grid screens deliberately keep the **previous** successful result set rendered while a refetch is in flight (no full-screen loading state on a query/kind/page change), so the grid doesn't flash empty. `SearchScreen.tsx` and `MediaBrowseScreen.tsx` do this. If such a screen also carries **mutation surfaces** (per-card Add-to menu, Select/select-mode, a selection action bar, "Add all", "Save as smart collection"), those surfaces would otherwise stay live over a **stale** result set — an add/select action then targets the about-to-be-replaced items, or (worse) a query-wide "Add all" bulk request resolves against the previous query. This was issue #221 (adversarial-reviewer#18). Convention — when a screen keeps stale results visible during a refetch: - **Key the success state to the request params that produced it.** Store the identifying params on the `status: 'success'` variant (`SearchScreen`: the `query`; `MediaBrowseScreen`: a `kind|query|page` `key`), set in the seq-guarded `.then`. Derive `const refreshing = state.status === 'success' && state. !== ;` in render. Prefer this over a synchronously-set `refreshing` flag: setting state synchronously from the load path trips the `react-hooks` "no set-state-in-effect" rule (§3). **Invariant, not a guarantee**: the derivation is only self-correcting when *every* value the current params can take will actually trigger a fetch. If `load()` early-returns for some param value (e.g. `SearchScreen`'s blank-query guard), `state` never updates for that value and a stale `status: 'success'` variant lingers — so the comparison must exclude params that suppress fetching, or gate the whole flag on the same condition that gates the fetch (`SearchScreen`: `const refreshing = hasQuery && state.status === 'success' && state.query !== query.trim();` — fixed post-review in #222 after the naive derivation got stuck `true` once the query was cleared to empty, see PR discussion for #221). - **While `refreshing`:** show a visible cue (a `role="status"` "Refreshing…" row with `` plus the `.ctv-media-grid-dim` opacity class on the grid) and **disable every mutation surface** — per-card Add-to menu (withhold the `actions` node), select toggle + in-grid selection (`const canSelect = selectMode && !refreshing;` gates `onToggleSelect`), the selection action bar, "Add all", "Save as smart collection". Card navigation (`onOpen`) **may** stay live — but only outside select mode: while `selectMode && refreshing`, `MediaPosterCard` falls back to `onOpen` whenever `onToggleSelect` is undefined, so both props must be withheld together or a mid-select click navigates away instead of no-op'ing. The select-mode toggle itself should only be disabled while refreshing when *entering* select mode (`refreshing && !selectMode`) — exiting only clears selection, not a mutation, so it must stay available. - **Bind async bulk completions to their request params, not just mount.** A whole-query/whole-set request (e.g. `getSearchAllItems`) must, on resolve, check that its snapshotted params are still current (compare against a ref that always holds the committed value — `SearchScreen` reuses `lastQueryRef`) and **discard** otherwise. Checking only `activeRef` (mounted) is insufficient. ## 4. API client modules One file per domain in `web/src/api/`, e.g. `logs.ts`, `blocks.ts`, `playouts.ts`. Pattern (see `web/src/api/logs.ts`): - Re-export the generated response/DTO types from `./generated/v1`: `export type LogEntry = components['schemas']['LogEntryResponseModel'];` - A typed params interface for the endpoint's query string (e.g. `GetLogsParams`). - The fetch function builds a `URLSearchParams` from only the params that are set, then calls the shared `request(url)` helper from `./client`. - An error-message helper (e.g. `messageFromLogsError`) that narrows `unknown` → `ApiError` (from `./client`) → a human string, with a fallback message — screens use this instead of stringifying errors themselves. - `web/src/api/index.ts` re-exports everything so screens import from `'../api'`, not from the individual domain file directly. **Trust the generated key casing — it mirrors the runtime.** Since #198 the OpenAPI spec is generated to match the runtime Newtonsoft serializer exactly (a schema transformer runs the same contract resolver; see `api-conventions.md` §5a), so the generated types carry the real wire keys — including Newtonsoft's acronym quirks like `ffmpegProfileId` (channel FFmpeg-profile id) and `ffmpegProfile` (channel FFmpeg-profile display name). **Do not** hand-cast responses to "fix" a key or dual-read a spec-cased vs runtime-cased key (the old `PlaybackTroubleshootingScreen` `#198` escape hatch that read `data.channel.fFmpegProfileId` has been removed — read `ffmpegProfileId` straight off the typed response). When you mock an API response in a test, use the generated (runtime) casing. ## 4a. Optimistic-concurrency editors (ETag / If-Match / 412) Replace-all editors (Blocks is the reference; see `api-conventions.md` §7a for the server contract, issue #253) must round-trip the aggregate's concurrency ETag so a stale tab can't silently overwrite a fresher edit: - **Transport seam** (`web/src/api/client.ts`): `requestWithMeta(path, options)` returns `{ data, etag }` (reads the `ETag` response header). `request` delegates to it and drops the meta — keep using `request` for endpoints without a concurrency token. - **Domain module** (`web/src/api/blocks.ts`): expose a `…WithMeta` load (`getBlockItemsWithMeta` → `{ data, etag }`) and make the replace accept the last-seen ETag and return the new one: `replaceBlock(id, body, ifMatch?)` → `requestWithMeta(..., { headers: ifMatch ? {'If-Match': ifMatch} : undefined })`. - **Editor**: hold the ETag in a `useRef`; set it from the load GET, and **replace it from the PUT response's ETag on every successful save** (a same-tab second save otherwise 412s against its own write). Keyed reload: a `reloadKey` state in the load `useEffect` dep array lets the conflict flow re-fetch. - **412 UX**: catch `error instanceof ApiError && error.status === 412` on save and open a blocking "changed elsewhere — reload (unsaved changes discarded)" `ConfirmDialog` (Reload bumps `reloadKey`), distinct from a 409 ("build in progress — retry shortly"). All other errors stay the generic save-error path. Reference: `web/src/screens/BlocksScreen.tsx` `BlockEditor`. - **List-derived editors** (Multi/Rerun collections open the editor from a paged-list row, not a per-record GET): fetch the single record via the `…WithMeta` by-id helper (`getMultiCollectionWithMeta` / `getRerunCollectionWithMeta`) when the editor mounts, and build the draft from **that** response — so the ETag and the draft data come from one read and stay consistent (the fail-safe ordering; don't pair a list-row draft with a separately-fetched ETag). Editors that navigate back to the list on save (Playout, Multi/Rerun, Collection reorder) need only the 412 branch — no post-save ETag rotation. - **Replace-all PUT → round-trip every persisted field, even ones the editor doesn't visibly edit.** A replace-all update (Multi/Rerun collection, schedule items, block items) submits the *whole* item list, so any field the draft mapping drops is silently reset to its default server-side. The multi-collection editor's per-source `weight` (#404) is the canonical trap: it must be read in `itemsFromMultiCollection` and written in `toItemRequest`, or every source resets to weight 1 on the next save of an unrelated edit (rename, add a source). When you add a field to a replace-all DTO, add it to **both** the response→draft and draft→request mappings and cover the round-trip in a test. - **Numeric inputs with API bounds**: hold the value as a string in the draft so the field edits smoothly (transient empty/partial), pass `type="number"` + `min`/`max`/`inputMode="numeric"` to `Input` for the native stepper, clamp to the API's validator range on `onBlur` (immediate feedback) **and** again at save (authoritative) — never let an out-of-range value reach the server and surface a raw 400. Mirror the server's bound as a shared const (e.g. multi-collection weight `WEIGHT_MIN`/`WEIGHT_MAX` = 1..1000, #404). ## 5. Artwork rendering Render `item.artwork` / `item.poster` (or whatever the DTO field is named) **directly as an ``** — since PR #181, API responses already return rooted, directly-usable URLs (see `api-conventions.md` §4). **Do not** client-side-prefix artwork paths (no `/artwork/posters/` string building in SPA code) — if you see that pattern, it's stale/wrong. ## 5b. HLS video preview Screens that preview an ErsatzTV HLS stream use the reusable `HlsPlayer` component (`web/src/media/HlsPlayer.tsx`, introduced with #145). Pass it a `src` (the `.m3u8` URL, or `null` for idle) and — when the manifest GET itself starts a server-side session (e.g. troubleshooting `playback.m3u8`) — a `playToken` you increment per play, so a repeat play with an identical URL still tears down and re-attaches (an unchanged `src` alone is a state no-op that never issues a new request); it attaches `hls.js` when Media Source Extensions are available and falls back to native HLS (`video.canPlayType('application/vnd.apple.mpegurl')`, i.e. Safari) otherwise, and tears down the `hls.js` instance on `src` change and unmount. Its config mirrors the legacy `_Host.cshtml` `previewChannel` (`liveDurationInfinity: true` + an unbounded manifest `maxTimeToFirstByteMs`) because the troubleshooting `playback.m3u8` endpoint blocks until segments exist before it 302s to the live manifest. **In tests, mock `hls.js` wholesale** (`vi.mock('hls.js', …)` with a class exposing `static isSupported()`, `static Events`, and `loadSource`/`attachMedia`/`on`/`destroy`) so jsdom never touches a real `MediaSource`; assert the manifest URL via the mocked `loadSource` spy (see `PlaybackTroubleshootingScreen.test.tsx`). It also takes an optional `onError(message)` wired to `Hls.Events.ERROR` (fatal errors only) and, on the Safari native path, the `