| title | Tour · UI |
|---|---|
| description | Guided tour of the UI domain — apps, views, pages, dashboards, reports, datasets, actions, themes, and portals. |
Everything in this domain lives under src/ui/.
src/ui/apps/index.ts is the application shell — the navigation you are
clicking through, grouped to teach: Workspace / Data Model / Analytics work
like a real product; the Authoring · * groups are the page-authoring
gallery.
The Data Slices (filters) group demonstrates ObjectNavItem.filters
(#2626): a nav item that targets an object's bare data surface
(/:objectName/data) with pre-applied filter[<field>]=<value> conditions
instead of a saved view. "In-Progress Tasks", "Urgent Tasks", and
"In-Review Tasks" all point at the same showcase_task object as
Data Model → Tasks, but each pins a different slice — the shell renders
the conditions as removable chips.
filters is mutually exclusive with recordId / viewName: mixing them is
an authoring ambiguity (a stale recordId would silently hijack the slice),
so the app.zod superRefine guard rejects the combination at build time
(#2630, precedence recordId → filters → viewName). Values also support
the {current_user_id} / {current_org_id} template variables for
per-user slices.
- All Views (navigation → Authoring · Visualizations → All Views) shows the same Task object through every list-view type: grid, kanban, gallery, calendar, timeline, gantt, map, chart.
src/ui/views/task.view.tsalso declares every form-view layout: simple, tabbed, wizard, split, drawer.
Start Here (navigation, second item) teaches the decision: structured
regions (full/slotted) → constrained-JSX html → real react, with the
canonical example of each linked from that page.
- Chart Gallery — one widget per chart family; the coverage test
introspects
ChartTypeSchemaso a new chart type fails CI until it appears here. - Reports (summary / matrix / joined) live in the Analytics group; a flat "tabular report" is deliberately a ListView lens (ADR-0021).
src/ui/datasets/— the dataset semantic layer feeding reports and dashboards; the cube in the data domain covers the service-side analytics surface.src/ui/actions/— the ActionType × location matrix (script / url / modal / flow / api / form), visible as buttons across Task screens.
src/ui/themes/ ships light + dark; src/ui/portals/ exposes the public
library portal that serves this very manual.
Continue with the Automation tour, or go back to the overview.