torch-glare 2.4.4 → 2.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/apps/lib/components/DataViews/{badgeAdapter.ts → badge.ts} +2 -2
- package/apps/lib/components/DataViews/cell.tsx +324 -0
- package/apps/lib/components/DataViews/context.ts +144 -0
- package/apps/lib/components/DataViews/data-views.tsx +383 -0
- package/apps/lib/components/DataViews/filters/children.tsx +98 -0
- package/apps/lib/components/DataViews/filters/custom.tsx +34 -0
- package/apps/lib/components/DataViews/filters/filters.tsx +163 -0
- package/apps/lib/components/DataViews/filters/index.ts +4 -0
- package/apps/lib/components/DataViews/filters/labelled.tsx +20 -0
- package/apps/lib/components/DataViews/filters/presets.tsx +65 -0
- package/apps/lib/components/DataViews/filters/summary.tsx +65 -0
- package/apps/lib/components/DataViews/filters/sync.tsx +35 -0
- package/apps/lib/components/DataViews/filters/values.ts +173 -0
- package/apps/lib/components/DataViews/header.tsx +217 -0
- package/apps/lib/components/DataViews/hooks/index.ts +5 -0
- package/apps/lib/components/DataViews/hooks/useActiveRow.ts +22 -0
- package/apps/lib/components/DataViews/hooks/useControllable.ts +52 -0
- package/apps/lib/components/DataViews/index.ts +74 -26
- package/apps/lib/components/DataViews/panel/columns.tsx +153 -0
- package/apps/lib/components/DataViews/panel/controls.tsx +106 -0
- package/apps/lib/components/DataViews/panel/index.ts +3 -0
- package/apps/lib/components/DataViews/panel/panel.tsx +164 -0
- package/apps/lib/components/DataViews/panel/saved-views.tsx +67 -0
- package/apps/lib/components/DataViews/panel/section.tsx +79 -0
- package/apps/lib/components/DataViews/panel/sort.tsx +42 -0
- package/apps/lib/components/DataViews/panel/tab.tsx +31 -0
- package/apps/lib/components/DataViews/slots.ts +63 -0
- package/apps/lib/components/DataViews/states.tsx +38 -0
- package/apps/lib/components/DataViews/types.ts +485 -178
- package/apps/lib/components/DataViews/views/board-view.tsx +379 -0
- package/apps/lib/components/DataViews/views/card-rows.tsx +36 -0
- package/apps/lib/components/DataViews/views/inbox-view.tsx +257 -0
- package/apps/lib/components/DataViews/views/pane-views.tsx +192 -0
- package/apps/lib/components/DataViews/views/table-view.tsx +426 -0
- package/apps/lib/components/DataViews/views/tree-view.tsx +365 -0
- package/apps/lib/components/FormBuilder/context.ts +20 -6
- package/apps/lib/components/FormBuilder/field-kind.ts +28 -0
- package/apps/lib/components/FormBuilder/fields/DateField.tsx +3 -3
- package/apps/lib/components/FormBuilder/fields/FieldShell.tsx +7 -6
- package/apps/lib/components/FormBuilder/fields/PhoneField.tsx +30 -4
- package/apps/lib/components/FormBuilder/fields/SelectField.tsx +7 -7
- package/apps/lib/components/FormBuilder/fields/TableField.tsx +80 -52
- package/apps/lib/components/FormBuilder/fields/TextField.tsx +9 -9
- package/apps/lib/components/FormBuilder/form-builder.tsx +66 -6
- package/apps/lib/components/FormBuilder/index.ts +3 -1
- package/apps/lib/components/FormBuilder/types.ts +40 -0
- package/apps/lib/components/Input.tsx +3 -0
- package/apps/lib/components/SearchableTable.tsx +5 -4
- package/apps/lib/components/SectionBlock.tsx +58 -11
- package/apps/lib/components/Select.tsx +3 -1
- package/apps/lib/components/TabSwitch.tsx +16 -4
- package/apps/lib/components/Table.tsx +265 -67
- package/apps/lib/components/TreeFolder/TreeFolder.tsx +6 -3
- package/apps/lib/components/TreeFolder/TreeFolderRow.tsx +16 -14
- package/apps/lib/components/TreeFolder/index.ts +1 -1
- package/apps/lib/components/TreeFolder/useTreeFolderDnD.ts +70 -207
- package/apps/lib/hooks/useDragDrop.tsx +365 -0
- package/apps/lib/hooks/useInfiniteScroll.ts +108 -0
- package/apps/lib/registry.json +159 -4
- package/apps/lib/tsconfig.tsbuildinfo +1 -1
- package/apps/lib/utils/dataViews/path.ts +67 -0
- package/apps/lib/utils/dataViews/query.ts +73 -0
- package/apps/lib/utils/dataViews/types.ts +187 -0
- package/docs/components/breadcrumb.md +1 -1
- package/docs/components/button-group.md +1 -1
- package/docs/components/button.md +1 -1
- package/docs/components/card.md +1 -1
- package/docs/components/checkbox.md +1 -1
- package/docs/components/data-views/backend-response.md +324 -0
- package/docs/components/data-views/examples/a11y-rtl.md +250 -0
- package/docs/components/data-views/examples/api-orders-route.md +130 -0
- package/docs/components/data-views/examples/fields.md +362 -0
- package/docs/components/data-views/examples/filters.md +308 -0
- package/docs/components/data-views/examples/inbox-routing.md +218 -0
- package/docs/components/data-views/examples/index.md +29 -0
- package/docs/components/data-views/examples/overview.md +244 -0
- package/docs/components/data-views/examples/panel.md +212 -0
- package/docs/components/data-views/examples/scale.md +231 -0
- package/docs/components/data-views/examples/server-side.md +210 -0
- package/docs/components/data-views/examples/state.md +250 -0
- package/docs/components/data-views/examples/tree-custom.md +388 -0
- package/docs/components/data-views/examples/view-registry.md +313 -0
- package/docs/components/data-views/examples/views.md +534 -0
- package/docs/components/data-views/guide.md +405 -0
- package/docs/components/data-views/index.md +1504 -0
- package/docs/components/data-views/migration.md +79 -0
- package/docs/components/date-picker.md +0 -1
- package/docs/components/form-builder.md +19 -8
- package/docs/components/form-renderer.md +2 -1
- package/docs/components/form.md +1 -1
- package/docs/components/input-field.md +1 -1
- package/docs/components/input-otp.md +1 -1
- package/docs/components/input.md +1 -1
- package/docs/components/labeled-check-box.md +1 -1
- package/docs/components/labeled-radio.md +1 -1
- package/docs/components/radio-card.md +1 -1
- package/docs/components/radio.md +1 -1
- package/docs/components/search-field.md +1 -1
- package/docs/components/section-block.md +79 -3
- package/docs/components/select.md +1 -1
- package/docs/components/simple-select.md +1 -1
- package/docs/components/switch.md +1 -1
- package/docs/components/tab-switch.md +1 -1
- package/docs/components/table.md +45 -8
- package/docs/components/text-editor.md +1 -1
- package/docs/components/textarea.md +1 -1
- package/docs/components/toggle-button.md +1 -1
- package/docs/components/toggle.md +1 -1
- package/docs/components/tree-folder.md +110 -0
- package/docs/how-to/forms-with-form-builder.md +6 -4
- package/docs/reference/components.md +16 -6
- package/docs/tutorials/component-composition.md +11 -13
- package/package.json +3 -2
- package/apps/lib/components/DataViews/DataViewRadio.tsx +0 -49
- package/apps/lib/components/DataViews/DataViewsConfigPanel.tsx +0 -393
- package/apps/lib/components/DataViews/DataViewsHeader.tsx +0 -207
- package/apps/lib/components/DataViews/DataViewsLayout.tsx +0 -332
- package/apps/lib/components/DataViews/FilterPanel.tsx +0 -493
- package/apps/lib/components/DataViews/HeaderSearch.tsx +0 -93
- package/apps/lib/components/DataViews/InboxView.tsx +0 -463
- package/apps/lib/components/DataViews/InboxViewCard.tsx +0 -127
- package/apps/lib/components/DataViews/KanbanView.tsx +0 -336
- package/apps/lib/components/DataViews/PanelControls.tsx +0 -39
- package/apps/lib/components/DataViews/SettingsPanel.tsx +0 -279
- package/apps/lib/components/DataViews/TableView.tsx +0 -212
- package/apps/lib/components/DataViews/TreeView.tsx +0 -364
- package/apps/lib/components/DataViews/fieldRenderers.tsx +0 -299
- package/apps/lib/components/DataViews/filters/DatePickerRangeFilter.tsx +0 -87
- package/apps/lib/components/DataViews/filters/DateRangePopover.tsx +0 -120
- package/apps/lib/components/DataViews/filters/PresetChips.tsx +0 -45
- package/apps/lib/components/DataViews/filters/RangeSliderWithInputs.tsx +0 -165
- package/apps/lib/components/DataViews/tree/TreeDrawer.tsx +0 -50
- package/apps/lib/components/DataViews/tree/TreeSidebar.tsx +0 -74
- package/apps/lib/hooks/useDataViewsState.ts +0 -175
- package/apps/lib/utils/dataViews/columnUtils.ts +0 -132
- package/apps/lib/utils/dataViews/fieldUtils.ts +0 -197
- package/apps/lib/utils/dataViews/nestedDataUtils.tsx +0 -371
- package/apps/lib/utils/dataViews/pathUtils.ts +0 -139
- package/apps/lib/utils/dataViews/rangeUtils.ts +0 -234
- package/apps/lib/utils/dataViews/treeUtils.ts +0 -396
- package/docs/components/data-views-config-panel.md +0 -208
- package/docs/components/data-views-layout.md +0 -291
- package/docs/components/inbox-view.md +0 -170
- package/docs/components/kanban-view.md +0 -135
- package/docs/components/table-view.md +0 -141
- package/docs/components/tree-view.md +0 -147
- package/docs/how-to/data-views-from-backend-response.md +0 -194
|
@@ -0,0 +1,405 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Build a screen with DataViews
|
|
3
|
+
description: The canonical way to build a list screen in TORCH Glare. One dataset as a table, board, inbox or tree behind a shared header, filters and settings rail — with scroll loading, drag and drop, custom cells, custom pane tabs and a view of your own.
|
|
4
|
+
group: how-to
|
|
5
|
+
keywords:
|
|
6
|
+
[
|
|
7
|
+
data-views,
|
|
8
|
+
dataviews,
|
|
9
|
+
table,
|
|
10
|
+
board,
|
|
11
|
+
kanban,
|
|
12
|
+
inbox,
|
|
13
|
+
tree,
|
|
14
|
+
pane,
|
|
15
|
+
views,
|
|
16
|
+
filters,
|
|
17
|
+
panel,
|
|
18
|
+
saved-views,
|
|
19
|
+
columns,
|
|
20
|
+
sort,
|
|
21
|
+
search,
|
|
22
|
+
infinite-scroll,
|
|
23
|
+
virtualization,
|
|
24
|
+
drag-drop,
|
|
25
|
+
server-side,
|
|
26
|
+
query,
|
|
27
|
+
custom-view,
|
|
28
|
+
markView,
|
|
29
|
+
]
|
|
30
|
+
---
|
|
31
|
+
|
|
32
|
+
# Build a screen with DataViews
|
|
33
|
+
|
|
34
|
+
`DataViews` is how a list screen is built in this library: one dataset, several ways to look at it,
|
|
35
|
+
behind a shared header, filter set and settings rail. This guide goes from the smallest useful
|
|
36
|
+
screen to every seam the component has, in the order you are likely to need them.
|
|
37
|
+
|
|
38
|
+
Every snippet below is lifted from a complete, runnable page, linked at the end of each section —
|
|
39
|
+
so you can read the whole file rather than a fragment. Those pages ship with the docs; see the
|
|
40
|
+
[example index](./examples/index.md).
|
|
41
|
+
|
|
42
|
+
**Three rules govern everything here.** They are worth reading once before the code.
|
|
43
|
+
|
|
44
|
+
1. **A part exists because you rendered it.** There is no `views={{ table: true }}` map and no
|
|
45
|
+
`showFilters` flag. Render `<DataViews.Board/>` and a Board tab appears; wrap it in a condition
|
|
46
|
+
and it disappears, switching away if it was open.
|
|
47
|
+
2. **It is pure UI.** DataViews never filters, searches, sorts, groups, paginates, builds a tree or
|
|
48
|
+
mutates a row. It paints the `rows` you hand it, in the order you hand them. Nothing on screen
|
|
49
|
+
moves until you hand back different data.
|
|
50
|
+
3. **Only the query leaves.** Search, filters, sort, page and page size are one object, reported
|
|
51
|
+
through `onQueryChange`. Everything else the user can change — which view is showing, what is
|
|
52
|
+
selected, how columns are arranged — changes nothing but the picture, so the component keeps it.
|
|
53
|
+
|
|
54
|
+
## 1. The smallest screen
|
|
55
|
+
|
|
56
|
+
Rows, fields, a header and a table.
|
|
57
|
+
|
|
58
|
+
```tsx
|
|
59
|
+
"use client";
|
|
60
|
+
|
|
61
|
+
import { useState } from "react";
|
|
62
|
+
import { useQuery } from "@tanstack/react-query";
|
|
63
|
+
import { DataViews, emptyQuery, queryToParams } from "@/components/DataViews";
|
|
64
|
+
import type { FieldConfig } from "@/components/DataViews";
|
|
65
|
+
|
|
66
|
+
const FIELDS: FieldConfig[] = [
|
|
67
|
+
{ path: "id", label: "Order #", type: "number" },
|
|
68
|
+
{ path: "customer.name", label: "Customer" },
|
|
69
|
+
{ path: "status", label: "Status", type: "enum-badge",
|
|
70
|
+
variants: { Pending: "yellow", Shipped: "blue", Delivered: "green" } },
|
|
71
|
+
{ path: "total", label: "Total", type: "currency", currency: "USD" },
|
|
72
|
+
{ path: "createdAt", label: "Created", type: "date-format", dateFormat: "YYYY-MM-DD" },
|
|
73
|
+
];
|
|
74
|
+
|
|
75
|
+
export default function Orders() {
|
|
76
|
+
const [query, setQuery] = useState(emptyQuery());
|
|
77
|
+
const { data, isPending } = useQuery({
|
|
78
|
+
queryKey: ["orders", query],
|
|
79
|
+
queryFn: () => fetch(`/api/orders?${queryToParams(query)}`).then((r) => r.json()),
|
|
80
|
+
});
|
|
81
|
+
|
|
82
|
+
return (
|
|
83
|
+
<div className="h-full p-4">
|
|
84
|
+
<DataViews
|
|
85
|
+
rows={data?.rows ?? []}
|
|
86
|
+
total={data?.total ?? 0}
|
|
87
|
+
fields={FIELDS}
|
|
88
|
+
loading={isPending}
|
|
89
|
+
onQueryChange={setQuery}
|
|
90
|
+
className="h-full"
|
|
91
|
+
>
|
|
92
|
+
<DataViews.Header title="Orders">
|
|
93
|
+
<DataViews.ViewSwitch />
|
|
94
|
+
<DataViews.Search />
|
|
95
|
+
<DataViews.PanelToggle />
|
|
96
|
+
</DataViews.Header>
|
|
97
|
+
|
|
98
|
+
<DataViews.Table selectable />
|
|
99
|
+
</DataViews>
|
|
100
|
+
</div>
|
|
101
|
+
);
|
|
102
|
+
}
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
Three things are already true: typing in the search box reports a new query and you refetch; the
|
|
106
|
+
table has no empty state, because nothing to show is shown as nothing; and while `loading` is set
|
|
107
|
+
it paints a skeleton in the table's own shape.
|
|
108
|
+
|
|
109
|
+
→ [the full page](./examples/overview.md)
|
|
110
|
+
|
|
111
|
+
## 2. Four views over one dataset
|
|
112
|
+
|
|
113
|
+
Add views by rendering them. The switcher builds itself.
|
|
114
|
+
|
|
115
|
+
```tsx
|
|
116
|
+
<DataViews.Table selectable onRowClick={(row, id) => open(id)} />
|
|
117
|
+
<DataViews.Board groups={groups} titlePath="customer.name" onRowMove={move} />
|
|
118
|
+
<DataViews.Inbox titlePath="customer.name" datePath="createdAt">
|
|
119
|
+
<DataViews.Detail />
|
|
120
|
+
</DataViews.Inbox>
|
|
121
|
+
<DataViews.Tree nodes={nodes} labelPath="customer.name">
|
|
122
|
+
<DataViews.Tree.Table />
|
|
123
|
+
<DataViews.Tree.Cards />
|
|
124
|
+
</DataViews.Tree>
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
`groups` and `nodes` are yours to build, and worth memoizing:
|
|
128
|
+
|
|
129
|
+
```tsx
|
|
130
|
+
const groups = useMemo<RowGroup[]>(
|
|
131
|
+
() => STATUSES.map((status) => ({
|
|
132
|
+
id: status, label: status, rows: rows.filter((r) => r.status === status),
|
|
133
|
+
})),
|
|
134
|
+
[rows],
|
|
135
|
+
);
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
Register the same view twice with different data by giving each an `id` and `label`:
|
|
139
|
+
|
|
140
|
+
```tsx
|
|
141
|
+
<DataViews.Board id="by-status" label="Status" groups={byStatus} />
|
|
142
|
+
<DataViews.Board id="by-owner" label="Owner" groups={byOwner} />
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
→ [the full page](./examples/views.md)
|
|
146
|
+
|
|
147
|
+
## 3. Filters — they are FormBuilder fields
|
|
148
|
+
|
|
149
|
+
`DataViews.Filters` takes **the fields themselves**, one JSX child each, exactly as any form in this
|
|
150
|
+
library is written. The `<FormBuilder>` is inside; you write only its fields. What each child means
|
|
151
|
+
comes from the field, not from a config: a `MultiSelect` becomes a list of values, a `Slider` a
|
|
152
|
+
numeric range, a `DateRange` a date range.
|
|
153
|
+
|
|
154
|
+
```tsx
|
|
155
|
+
<DataViews.Panel>
|
|
156
|
+
<DataViews.Panel.Tab value="filters" label="Filters" icon={<Filter />}>
|
|
157
|
+
<DataViews.Filters title={null} className="border-b-0 p-0">
|
|
158
|
+
<FormBuilder.CheckboxGroup name="status" label="Status" options={STATUS_OPTIONS} />
|
|
159
|
+
<FormBuilder.RadioList name="priority" label="Priority" options={PRIORITY_OPTIONS} />
|
|
160
|
+
<FormBuilder.SearchableSelect name="customer.name" label="Customer" options={CUSTOMERS} />
|
|
161
|
+
<FormBuilder.MultiSelect name="brand.name" label="Brand" options={BRANDS} />
|
|
162
|
+
<FormBuilder.Slider name="total" label="Total" range min={0} max={15000} step={100} />
|
|
163
|
+
<FormBuilder.DateRange name="createdAt" label="Created" />
|
|
164
|
+
<DataViews.Filters.Presets for="total" items={[{ label: "Under $500", max: 500 }]} />
|
|
165
|
+
</DataViews.Filters>
|
|
166
|
+
</DataViews.Panel.Tab>
|
|
167
|
+
</DataViews.Panel>
|
|
168
|
+
```
|
|
169
|
+
|
|
170
|
+
Which control to reach for is two questions — can the option set grow, and can the user pick more
|
|
171
|
+
than one:
|
|
172
|
+
|
|
173
|
+
| | Single | Multiple |
|
|
174
|
+
| --- | --- | --- |
|
|
175
|
+
| **Fixed, short list** | `RadioList` | `CheckboxGroup` |
|
|
176
|
+
| **Dynamic or long** | `SearchableSelect` | `MultiSelect` |
|
|
177
|
+
|
|
178
|
+
`Filters` does not filter. It reports into the query, you fetch, and the rows change when you hand
|
|
179
|
+
back different ones. Two things to know: a control at its neutral position emits **no key at all**,
|
|
180
|
+
so a slider dragged back to `[min, max]` removes its filter rather than sending "everything"; and
|
|
181
|
+
booleans have no filter section — use a Yes/No `RadioList` or `Filters.Custom`.
|
|
182
|
+
|
|
183
|
+
→ [the full page](./examples/filters.md)
|
|
184
|
+
|
|
185
|
+
## 4. The settings rail
|
|
186
|
+
|
|
187
|
+
The rail is `DataViews.Panel`, opened by the `PanelToggle` in the header. Its tabs are children,
|
|
188
|
+
like everything else.
|
|
189
|
+
|
|
190
|
+
```tsx
|
|
191
|
+
<DataViews.Panel>
|
|
192
|
+
<DataViews.Panel.Tab value="config" label="Config." icon={<Settings />}>
|
|
193
|
+
<DataViews.Panel.SavedViews
|
|
194
|
+
views={saved}
|
|
195
|
+
onSave={(snapshot) => setSaved((prev) => [...prev, { id: crypto.randomUUID(), label: `View ${prev.length + 1}`, snapshot }])}
|
|
196
|
+
/>
|
|
197
|
+
<DataViews.Panel.Columns />
|
|
198
|
+
<DataViews.Panel.Sort />
|
|
199
|
+
</DataViews.Panel.Tab>
|
|
200
|
+
|
|
201
|
+
<DataViews.Panel.Tab value="filters" label="Filters" icon={<Filter />}>
|
|
202
|
+
…
|
|
203
|
+
</DataViews.Panel.Tab>
|
|
204
|
+
</DataViews.Panel>
|
|
205
|
+
```
|
|
206
|
+
|
|
207
|
+
Saving a view is yours — a view outlives the component. Restoring is not: hand the snapshot back
|
|
208
|
+
and picking it puts filters, sort and columns back internally.
|
|
209
|
+
|
|
210
|
+
→ [the full page](./examples/panel.md)
|
|
211
|
+
|
|
212
|
+
## 5. Large datasets — scroll, don't page
|
|
213
|
+
|
|
214
|
+
There is no pager. Hand over `onLoadMore` and **append** each page; whether there is more is derived
|
|
215
|
+
from `rows.length < total`, so there is no flag to keep in sync.
|
|
216
|
+
|
|
217
|
+
```tsx
|
|
218
|
+
const { data, fetchNextPage, isPending, isFetchingNextPage } = useInfiniteQuery({
|
|
219
|
+
queryKey: ["orders", { ...query, page: undefined }], // not `page` — pageParam drives that
|
|
220
|
+
initialPageParam: 1,
|
|
221
|
+
queryFn: ({ pageParam }) =>
|
|
222
|
+
fetch(`/api/orders?${queryToParams({ ...query, page: pageParam })}`).then((r) => r.json()),
|
|
223
|
+
getNextPageParam: (last, pages) => {
|
|
224
|
+
const loaded = pages.reduce((n, p) => n + p.rows.length, 0);
|
|
225
|
+
return loaded < last.total ? pages.length + 1 : undefined;
|
|
226
|
+
},
|
|
227
|
+
});
|
|
228
|
+
|
|
229
|
+
<DataViews
|
|
230
|
+
rows={data?.pages.flatMap((p) => p.rows) ?? []}
|
|
231
|
+
total={data?.pages[0]?.total ?? 0}
|
|
232
|
+
loading={isPending}
|
|
233
|
+
onLoadMore={fetchNextPage}
|
|
234
|
+
loadingMore={isFetchingNextPage}
|
|
235
|
+
fields={FIELDS}
|
|
236
|
+
onQueryChange={setQuery}
|
|
237
|
+
/>
|
|
238
|
+
```
|
|
239
|
+
|
|
240
|
+
The table also **virtualizes past 300 rows**, so the DOM stays small however many are loaded. Below
|
|
241
|
+
that it renders every row, which is what keeps row drag and column resize simple. The board and
|
|
242
|
+
inbox load on scroll but do not virtualize; the tree does neither.
|
|
243
|
+
|
|
244
|
+
→ [the full page](./examples/scale.md)
|
|
245
|
+
|
|
246
|
+
## 6. Server-side, end to end
|
|
247
|
+
|
|
248
|
+
The query goes out through `queryToParams` and comes back in through `parseQuery` — one encoder,
|
|
249
|
+
one decoder, imported from the same module so they cannot drift.
|
|
250
|
+
|
|
251
|
+
```ts
|
|
252
|
+
// app/api/orders/route.ts
|
|
253
|
+
import { parseQuery } from "@/components/DataViews";
|
|
254
|
+
|
|
255
|
+
export async function GET(request: Request) {
|
|
256
|
+
const { search, filters, sort, page, pageSize } = parseQuery(new URL(request.url));
|
|
257
|
+
|
|
258
|
+
let rows = ALL.filter((row) => matches(row, search, filters));
|
|
259
|
+
if (sort) rows = [...rows].sort(by(sort));
|
|
260
|
+
const total = rows.length;
|
|
261
|
+
return Response.json({ rows: rows.slice((page - 1) * pageSize, page * pageSize), total });
|
|
262
|
+
}
|
|
263
|
+
```
|
|
264
|
+
|
|
265
|
+
`filters` is `Record<path, string[] | { kind: "number", min?, max? } | { kind: "date", from?, to? }>`.
|
|
266
|
+
How constraints combine is your matcher's business.
|
|
267
|
+
|
|
268
|
+
→ [the full page](./examples/server-side.md)
|
|
269
|
+
|
|
270
|
+
## 7. Drag and drop
|
|
271
|
+
|
|
272
|
+
Four surfaces drag — board cards, table rows, tree nodes and the rail's column list — and each is
|
|
273
|
+
**opt-in by passing the handler**. All of them report intent and move nothing themselves:
|
|
274
|
+
|
|
275
|
+
```tsx
|
|
276
|
+
<DataViews.Table onRowMove={(intent) => reorder.mutate(intent)} />
|
|
277
|
+
<DataViews.Board groups={groups} onRowMove={({ id, to }) => to && move.mutate({ id: Number(id), status: to })} />
|
|
278
|
+
<DataViews.Tree nodes={nodes} onNodeMove={(intent) => reparent.mutate(intent)} />
|
|
279
|
+
```
|
|
280
|
+
|
|
281
|
+
A card settles where it landed only once your refetched rows agree — which is what makes a rejected
|
|
282
|
+
move snap back with no rollback code. Touch drags activate on a 200ms hold so a swipe still scrolls,
|
|
283
|
+
and every surface is keyboard-operable: Space, arrows, Space.
|
|
284
|
+
|
|
285
|
+
## 8. Custom cells, cards and rows
|
|
286
|
+
|
|
287
|
+
Each seam hands you `{ row, id, index, fields }` — `fields` being what the panel left visible, in
|
|
288
|
+
order — and `Cell` paints one the way every other view paints it.
|
|
289
|
+
|
|
290
|
+
```tsx
|
|
291
|
+
// one field, everywhere it appears
|
|
292
|
+
{ path: "health", label: "Health", render: (value) => <HealthPill value={Number(value)} /> }
|
|
293
|
+
|
|
294
|
+
// one cell, table only — return `undefined` to fall through to the default
|
|
295
|
+
<DataViews.Table renderCell={({ field, row }) =>
|
|
296
|
+
field.path === "total" ? <TotalBar value={Number(row.total)} /> : undefined
|
|
297
|
+
} />
|
|
298
|
+
|
|
299
|
+
// the board's card
|
|
300
|
+
<DataViews.Board groups={groups} renderCard={({ row, isDragging }) => <OrderCard row={row} dim={isDragging} />} />
|
|
301
|
+
|
|
302
|
+
// the inbox row
|
|
303
|
+
<DataViews.Inbox renderItem={({ row, isActive }) => <MailRow row={row} active={isActive} />} />
|
|
304
|
+
|
|
305
|
+
// a tree node — parts, not markup: TreeFolder owns the row
|
|
306
|
+
<DataViews.Tree nodes={nodes} renderNode={({ row }) => ({ meta: <Badge label={String(row.status)} color="blue" /> })} />
|
|
307
|
+
```
|
|
308
|
+
|
|
309
|
+
→ [the full page](./examples/fields.md)
|
|
310
|
+
|
|
311
|
+
## 9. The tree's pane, and a tab of your own
|
|
312
|
+
|
|
313
|
+
The tree's `children` are its **pane tabs**, on the same bargain as everything else: a tab exists
|
|
314
|
+
because you rendered it, the switch shows exactly what you passed, one tab draws no switch, and
|
|
315
|
+
**no tabs means no pane at all** — the rail then takes the full width.
|
|
316
|
+
|
|
317
|
+
```tsx
|
|
318
|
+
<DataViews.Tree
|
|
319
|
+
nodes={nodes}
|
|
320
|
+
labelPath="brand.name"
|
|
321
|
+
paneRows={(node) => node.children.map((child) => child.row)}
|
|
322
|
+
paneActions={<Button variant="BluColStyle" size="M">New order</Button>}
|
|
323
|
+
>
|
|
324
|
+
<DataViews.Tree.Table selectable renderCell={cell} />
|
|
325
|
+
<DataViews.Tree.Cards renderCard={({ row }) => <OrderCard row={row} />} />
|
|
326
|
+
<DataViews.Tree.Tab value="timeline" label="Timeline" icon={<Clock />}>
|
|
327
|
+
<Timeline />
|
|
328
|
+
</DataViews.Tree.Tab>
|
|
329
|
+
</DataViews.Tree>
|
|
330
|
+
```
|
|
331
|
+
|
|
332
|
+
`Tree.Table` **is** `DataViews.Table`, rendered over the selected node's rows — sortable headers,
|
|
333
|
+
selection, `renderCell`, the grip, `+ Add New` and virtualization all come with it.
|
|
334
|
+
|
|
335
|
+
A tab of your own reads the node's rows from the same context every other part uses, because the
|
|
336
|
+
pane scopes them:
|
|
337
|
+
|
|
338
|
+
```tsx
|
|
339
|
+
function Timeline() {
|
|
340
|
+
const { rows } = useDataViewsData(); // the selected node's rows, narrowed by `paneRows`
|
|
341
|
+
return <ol>{rows.map((row) => <li key={String(row.id)}>{String(row.createdAt)}</li>)}</ol>;
|
|
342
|
+
}
|
|
343
|
+
```
|
|
344
|
+
|
|
345
|
+
And when none of that fits, anything in `children` that is **not** a tab *is* the pane — header,
|
|
346
|
+
switch and all.
|
|
347
|
+
|
|
348
|
+
→ [the full page](./examples/tree-custom.md)
|
|
349
|
+
|
|
350
|
+
## 10. A view of your own
|
|
351
|
+
|
|
352
|
+
`markView` registers a component in the switcher beside the built-in four. It reads the same
|
|
353
|
+
context, so it gets the rows, the visible fields, the loading state and scroll loading for free.
|
|
354
|
+
|
|
355
|
+
```tsx
|
|
356
|
+
const GalleryView = markView(
|
|
357
|
+
function GalleryView() {
|
|
358
|
+
const { rows, visibleFields, loading, getRowId } = useDataViewsData();
|
|
359
|
+
if (loading) return <div className="grid grid-cols-3 gap-3 p-4">{skeletonKeys(6).map((k) => <SkeletonBar key={k} className="h-40" />)}</div>;
|
|
360
|
+
|
|
361
|
+
return (
|
|
362
|
+
<div className="grid grid-cols-3 gap-3 p-4">
|
|
363
|
+
{rows.map((row, i) => (
|
|
364
|
+
<article key={getRowId(row, i)} className="rounded-[12px] border p-4">
|
|
365
|
+
{visibleFields.map((field, n) => <Cell key={`${field.path}-${n}`} field={field} row={row} />)}
|
|
366
|
+
</article>
|
|
367
|
+
))}
|
|
368
|
+
</div>
|
|
369
|
+
);
|
|
370
|
+
},
|
|
371
|
+
{ defaultId: "gallery", defaultLabel: "Gallery" },
|
|
372
|
+
);
|
|
373
|
+
|
|
374
|
+
<DataViews …>
|
|
375
|
+
<DataViews.Table />
|
|
376
|
+
<GalleryView icon={<i className="ri-layout-grid-line" />} />
|
|
377
|
+
</DataViews>
|
|
378
|
+
```
|
|
379
|
+
|
|
380
|
+
Wrapping a **built-in** part in a component of your own hides the marker the root recognises it by,
|
|
381
|
+
so the wrapper carries the marker itself — `markPanel`, `markHeader`, `markView`.
|
|
382
|
+
|
|
383
|
+
→ [the full page](./examples/view-registry.md)
|
|
384
|
+
|
|
385
|
+
## Gotchas
|
|
386
|
+
|
|
387
|
+
- **Nothing filters, sorts or pages itself.** If the rows do not change, the screen does not change.
|
|
388
|
+
- **Append pages, never replace** — replacing resets the list and the sentinel fires again.
|
|
389
|
+
- **Exclude `page` from your query key** with `useInfiniteQuery`, or every page refetches the lot.
|
|
390
|
+
- **Memoize `groups` and `nodes`**; `data?.rows ?? []` is a new array every render.
|
|
391
|
+
- **`total` is the server's count.** Scroll loading stops at `rows.length >= total`.
|
|
392
|
+
- **A filter on `customer.name` registers as `customer__name`** inside the form — you write the real
|
|
393
|
+
path, but a hand-rolled `setValue` needs the escaped one.
|
|
394
|
+
- **The chrome is always dark**; `theme` themes the content. Never use `system` tokens or
|
|
395
|
+
`variant="SystemStyle"` — use the `presentation` equivalents.
|
|
396
|
+
- **`DataViews.Detail` is row-keyed.** In a tree it fills in only when the node's id is also a row
|
|
397
|
+
id; a synthetic grouping node has no row, so it renders nothing.
|
|
398
|
+
|
|
399
|
+
## Related
|
|
400
|
+
|
|
401
|
+
- [`DataViews` component reference](./index.md) — every part, prop and type
|
|
402
|
+
- [Render a backend response with DataViews](./backend-response.md) — JSON shape →
|
|
403
|
+
what to render
|
|
404
|
+
- [Forms with FormBuilder](../../how-to/forms-with-form-builder.md) — the fields `DataViews.Filters` takes
|
|
405
|
+
- [Migrating to the DataViews component](./migration.md)
|