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,534 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: DataViews example — Views
|
|
3
|
+
description: All four views over one dataset, with drag round-trips.
|
|
4
|
+
group: examples
|
|
5
|
+
component: DataViews
|
|
6
|
+
keywords: [data-views, example, examples, views]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# DataViews example — Views
|
|
10
|
+
|
|
11
|
+
All four views over one dataset, with drag round-trips.
|
|
12
|
+
|
|
13
|
+
Complete and runnable — this is the page itself, not an excerpt. In the monorepo it lives at `apps/app/data-views/views/page.tsx`.
|
|
14
|
+
|
|
15
|
+
See the [component reference](../index.md) for what each prop does, or the [guide](../guide.md) for the same ground as scenarios.
|
|
16
|
+
|
|
17
|
+
```tsx
|
|
18
|
+
"use client";
|
|
19
|
+
|
|
20
|
+
import { useMemo, useState } from "react";
|
|
21
|
+
import { useMutation, useInfiniteQuery, useQueryClient } from "@tanstack/react-query";
|
|
22
|
+
import { Filter, Settings } from "lucide-react";
|
|
23
|
+
import { Button } from "@/components/Button";
|
|
24
|
+
import { Badge } from "@/components/Badge";
|
|
25
|
+
import {
|
|
26
|
+
Cell,
|
|
27
|
+
DataViews,
|
|
28
|
+
emptyQuery,
|
|
29
|
+
queryToParams,
|
|
30
|
+
useActiveRow,
|
|
31
|
+
useDataViewsData,
|
|
32
|
+
useDataViewsView,
|
|
33
|
+
type SavedView,
|
|
34
|
+
} from "@/components/DataViews";
|
|
35
|
+
import { cn } from "@/utils/cn";
|
|
36
|
+
import { FormBuilder } from "@/components/FormBuilder";
|
|
37
|
+
import type {
|
|
38
|
+
DataViewsQuery,
|
|
39
|
+
FieldConfig,
|
|
40
|
+
MoveIntent,
|
|
41
|
+
Row,
|
|
42
|
+
RowGroup,
|
|
43
|
+
TreeNode,
|
|
44
|
+
} from "@/utils/dataViews/types";
|
|
45
|
+
|
|
46
|
+
// ─── Data ─────────────────────────────────────────────────────────────────────
|
|
47
|
+
|
|
48
|
+
interface Order extends Row {
|
|
49
|
+
id: number;
|
|
50
|
+
customer: { name: string };
|
|
51
|
+
status: "Pending" | "Shipped" | "Delivered";
|
|
52
|
+
priority: "High" | "Medium" | "Low";
|
|
53
|
+
total: number;
|
|
54
|
+
createdAt: string;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
/** How each field is painted. Nothing here says anything about filtering. */
|
|
58
|
+
const FIELDS: FieldConfig[] = [
|
|
59
|
+
{ path: "id", label: "Order #", type: "number" },
|
|
60
|
+
{ path: "customer.name", label: "Customer", type: "text" },
|
|
61
|
+
{ path: "brand.name", label: "Brand", type: "text" },
|
|
62
|
+
{ path: "status", label: "Status", type: "enum-badge", variants: { Pending: "yellow", Shipped: "blue", Delivered: "green" } },
|
|
63
|
+
{ path: "priority", label: "Priority", type: "enum-badge", variants: { High: "redOrange", Medium: "purple", Low: "gray" } },
|
|
64
|
+
{ path: "total", label: "Total", type: "currency", currency: "USD" },
|
|
65
|
+
{ path: "createdAt", label: "Created", type: "date-format", dateFormat: "YYYY-MM-DD" },
|
|
66
|
+
];
|
|
67
|
+
|
|
68
|
+
/** Options and bounds are supplied — DataViews never scans the dataset to find them. */
|
|
69
|
+
/** Dynamic sets — in a real app these come from the endpoint that also does the filtering. */
|
|
70
|
+
const CUSTOMER_OPTIONS = [
|
|
71
|
+
"Acme Inc.", "Globex Corp.", "Initech", "Umbrella",
|
|
72
|
+
"Hooli", "Stark Industries", "Wayne Enterprises", "Cyberdyne",
|
|
73
|
+
].map((v) => ({ label: v, value: v }));
|
|
74
|
+
|
|
75
|
+
const BRAND_OPTIONS = ["Bosch", "Makita", "DeWalt", "Hilti"].map((v) => ({ label: v, value: v }));
|
|
76
|
+
|
|
77
|
+
const STATUS_OPTIONS = [
|
|
78
|
+
{ label: "Pending", value: "Pending" },
|
|
79
|
+
{ label: "Shipped", value: "Shipped" },
|
|
80
|
+
{ label: "Delivered", value: "Delivered" },
|
|
81
|
+
];
|
|
82
|
+
|
|
83
|
+
const PRIORITY_OPTIONS = [
|
|
84
|
+
{ label: "High", value: "High" },
|
|
85
|
+
{ label: "Medium", value: "Medium" },
|
|
86
|
+
{ label: "Low", value: "Low" },
|
|
87
|
+
];
|
|
88
|
+
|
|
89
|
+
/**
|
|
90
|
+
* The request this page makes. The querying itself happens in `app/api/orders/route.ts` —
|
|
91
|
+
* nothing on this page filters, sorts or pages anything, which is the split DataViews is built
|
|
92
|
+
* around.
|
|
93
|
+
*/
|
|
94
|
+
async function fetchOrders(q: DataViewsQuery): Promise<{ rows: Order[]; total: number }> {
|
|
95
|
+
const params = queryToParams(q);
|
|
96
|
+
const res = await fetch(`/api/orders?${params}`);
|
|
97
|
+
if (!res.ok) throw new Error(`${res.status} ${res.statusText}`);
|
|
98
|
+
return res.json();
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
/** The other half of `onRowMove`: the board emits intent, this is what persists it. */
|
|
102
|
+
async function moveOrder(body: { id?: number; status?: string; reset?: boolean }) {
|
|
103
|
+
const res = await fetch("/api/orders", {
|
|
104
|
+
method: "PATCH",
|
|
105
|
+
headers: { "Content-Type": "application/json" },
|
|
106
|
+
body: JSON.stringify(body),
|
|
107
|
+
});
|
|
108
|
+
if (!res.ok) throw new Error(`${res.status} ${res.statusText}`);
|
|
109
|
+
return res.json();
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
/**
|
|
113
|
+
* Board columns. You build these — the board never groups rows itself, because which statuses
|
|
114
|
+
* exist (including the empty one you still want a column for) is knowledge it does not have.
|
|
115
|
+
*/
|
|
116
|
+
const groupByStatus = (rows: readonly Order[]): RowGroup[] =>
|
|
117
|
+
(["Pending", "Shipped", "Delivered", "Cancelled"] as const).map((status) => ({
|
|
118
|
+
id: status,
|
|
119
|
+
label: status,
|
|
120
|
+
color: ({ Pending: "gray", Shipped: "blue", Delivered: "green", Cancelled: "red" } as const)[status],
|
|
121
|
+
rows: rows.filter((row) => row.status === status),
|
|
122
|
+
}));
|
|
123
|
+
|
|
124
|
+
/**
|
|
125
|
+
* Tree nodes. The branches are synthetic groupings, so selecting one leaves the detail pane empty
|
|
126
|
+
* — only the leaves are rows that `DataViews.Detail` can resolve.
|
|
127
|
+
*/
|
|
128
|
+
const STATUSES = ["Pending", "Shipped", "Delivered"];
|
|
129
|
+
|
|
130
|
+
const nodesByStatus = (rows: readonly Order[]): TreeNode[] =>
|
|
131
|
+
STATUSES.map((status) => ({
|
|
132
|
+
id: `group:${status}`,
|
|
133
|
+
row: { id: `group:${status}`, customer: { name: status } },
|
|
134
|
+
depth: 0,
|
|
135
|
+
children: rows
|
|
136
|
+
.filter((row) => row.status === status)
|
|
137
|
+
.map((row) => ({ id: String(row.id), row, depth: 1, children: [] })),
|
|
138
|
+
}));
|
|
139
|
+
|
|
140
|
+
/** Five levels, for checking indentation and the expand/collapse chain. */
|
|
141
|
+
const deepTree = (rows: readonly Order[]): TreeNode[] => {
|
|
142
|
+
const build = (level: number): TreeNode[] =>
|
|
143
|
+
level >= 5
|
|
144
|
+
? []
|
|
145
|
+
: [
|
|
146
|
+
{
|
|
147
|
+
id: `level-${level}`,
|
|
148
|
+
row: { ...rows[level % rows.length], id: `level-${level}` },
|
|
149
|
+
depth: level,
|
|
150
|
+
children: build(level + 1),
|
|
151
|
+
},
|
|
152
|
+
];
|
|
153
|
+
return build(0);
|
|
154
|
+
};
|
|
155
|
+
|
|
156
|
+
// ─── Page ─────────────────────────────────────────────────────────────────────
|
|
157
|
+
|
|
158
|
+
export default function ViewsExample() {
|
|
159
|
+
const queryClient = useQueryClient();
|
|
160
|
+
// All nine controlled pairs, plus the saved-view list the rail edits.
|
|
161
|
+
const [query, setQuery] = useState(emptyQuery());
|
|
162
|
+
const [opened, setOpened] = useState<string | null>(null);
|
|
163
|
+
/** A hand-made row order, once someone drags one. Empty until then. */
|
|
164
|
+
const [order, setOrder] = useState<string[]>([]);
|
|
165
|
+
const [saved, setSaved] = useState<SavedView[]>([]);
|
|
166
|
+
|
|
167
|
+
const [selectable, setSelectable] = useState(true);
|
|
168
|
+
const [applyMoves, setApplyMoves] = useState(true);
|
|
169
|
+
|
|
170
|
+
const [deep, setDeep] = useState(false);
|
|
171
|
+
const [expanded, setExpanded] = useState<readonly string[]>(["group:Pending"]);
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
const { data, isPending, fetchNextPage, isFetchingNextPage } = useInfiniteQuery({
|
|
175
|
+
// The key *is* the query: touch any part of it and TanStack refetches, and a response that
|
|
176
|
+
// has been superseded is discarded rather than landing on top of a newer one.
|
|
177
|
+
queryKey: ["views-orders", { ...query, page: undefined }],
|
|
178
|
+
queryFn: ({ pageParam }) => fetchOrders({ ...query, page: pageParam }),
|
|
179
|
+
initialPageParam: 1,
|
|
180
|
+
// Undefined means "no more" — which is what the component's `hasMore` resolves to.
|
|
181
|
+
getNextPageParam: (last, pages) => {
|
|
182
|
+
const loaded = pages.reduce((n, page) => n + page.rows.length, 0);
|
|
183
|
+
return loaded < last.total ? pages.length + 1 : undefined;
|
|
184
|
+
},
|
|
185
|
+
});
|
|
186
|
+
|
|
187
|
+
// Memoised because `data?.rows ?? []` is a new array on every render, which would make the
|
|
188
|
+
// `groups`/`nodes` memos below miss every time and hand the board a new array to diff.
|
|
189
|
+
const fetched = useMemo(() => data?.pages.flatMap((page) => page.rows) ?? [], [data]);
|
|
190
|
+
// The page owns the order it was given, so applying a drag is the page's job — the table only
|
|
191
|
+
// reported it.
|
|
192
|
+
const rows = useMemo(() => {
|
|
193
|
+
if (!order.length) return fetched;
|
|
194
|
+
const byId = new Map(fetched.map((r) => [String(r.id), r]));
|
|
195
|
+
const ordered = order.map((id) => byId.get(id)).filter(Boolean) as typeof fetched;
|
|
196
|
+
const rest = fetched.filter((r) => !order.includes(String(r.id)));
|
|
197
|
+
return [...ordered, ...rest];
|
|
198
|
+
}, [fetched, order]);
|
|
199
|
+
const total = data?.pages[0]?.total ?? 0;
|
|
200
|
+
const groups = useMemo(() => groupByStatus(rows), [rows]);
|
|
201
|
+
const nodes = useMemo(() => (deep ? deepTree(rows) : nodesByStatus(rows)), [deep, rows]);
|
|
202
|
+
|
|
203
|
+
// Dropping emits intent, nothing more. The card relocates only because this sends the new
|
|
204
|
+
// status to the server and refetches — turn `Ignoring moves` on and the intent still fires
|
|
205
|
+
// while the board stays exactly where it was.
|
|
206
|
+
const move = useMutation({
|
|
207
|
+
mutationFn: moveOrder,
|
|
208
|
+
onSuccess: () => queryClient.invalidateQueries({ queryKey: ["views-orders"] }),
|
|
209
|
+
});
|
|
210
|
+
|
|
211
|
+
const onRowMove = (intent: MoveIntent) => {
|
|
212
|
+
// A drop outside any column has nowhere to go, so there is nothing to persist.
|
|
213
|
+
if (!applyMoves || !intent.to) return;
|
|
214
|
+
move.mutate({ id: Number(intent.id), status: intent.to });
|
|
215
|
+
};
|
|
216
|
+
|
|
217
|
+
return (
|
|
218
|
+
<div className="flex h-full min-h-0 flex-col p-4">
|
|
219
|
+
<DataViews
|
|
220
|
+
rows={rows}
|
|
221
|
+
fields={FIELDS}
|
|
222
|
+
total={total}
|
|
223
|
+
loading={isPending}
|
|
224
|
+
onLoadMore={fetchNextPage}
|
|
225
|
+
loadingMore={isFetchingNextPage}
|
|
226
|
+
onQueryChange={setQuery}
|
|
227
|
+
className="h-full"
|
|
228
|
+
>
|
|
229
|
+
<DataViews.Header title="Orders">
|
|
230
|
+
<DataViews.ViewSwitch />
|
|
231
|
+
<DataViews.Search />
|
|
232
|
+
<DataViews.Actions>
|
|
233
|
+
<span
|
|
234
|
+
data-testid="activated"
|
|
235
|
+
className="typography-body-small-regular text-content-presentation-global-secondary"
|
|
236
|
+
>
|
|
237
|
+
{opened ? `row ${opened}` : "no row activated"}
|
|
238
|
+
</span>
|
|
239
|
+
<ViewControls
|
|
240
|
+
selectable={selectable}
|
|
241
|
+
setSelectable={setSelectable}
|
|
242
|
+
applyMoves={applyMoves}
|
|
243
|
+
setApplyMoves={setApplyMoves}
|
|
244
|
+
deep={deep}
|
|
245
|
+
setDeep={setDeep}
|
|
246
|
+
setExpanded={setExpanded}
|
|
247
|
+
reset={() => move.mutate({ reset: true })}
|
|
248
|
+
/>
|
|
249
|
+
</DataViews.Actions>
|
|
250
|
+
<DataViews.PanelToggle />
|
|
251
|
+
</DataViews.Header>
|
|
252
|
+
|
|
253
|
+
{/* `onRowClick` is what makes a row a real tab stop: it takes a tabIndex, a button role
|
|
254
|
+
and Enter handling only when there is something for it to do. */}
|
|
255
|
+
{/* `renderCell` paints one cell *in this view only* — the board's cards and the tree's
|
|
256
|
+
labels still use the field's own painting. Return undefined to fall through. */}
|
|
257
|
+
<DataViews.Table
|
|
258
|
+
selectable={selectable}
|
|
259
|
+
onRowClick={(_row, id) => setOpened(id)}
|
|
260
|
+
// The end-action row exists only because this prop was passed — same rule as every
|
|
261
|
+
// other part of the component.
|
|
262
|
+
onAddRow={() => window.alert("Add New pressed — wire this to your create flow.")}
|
|
263
|
+
// Row order is this page's to keep, so the drag is applied here and nowhere else. A
|
|
264
|
+
// sort and a hand-made order are different orders — clearing the sort is how this page
|
|
265
|
+
// decides which one wins.
|
|
266
|
+
onRowMove={({ id, index }) => {
|
|
267
|
+
if (index === undefined) return;
|
|
268
|
+
setOrder((prev) => {
|
|
269
|
+
const ids = prev.length ? prev : rows.map((r) => String(r.id));
|
|
270
|
+
const from = ids.indexOf(id);
|
|
271
|
+
if (from < 0) return prev;
|
|
272
|
+
const next = ids.slice();
|
|
273
|
+
const [moved] = next.splice(from, 1);
|
|
274
|
+
next.splice(index, 0, moved);
|
|
275
|
+
return next;
|
|
276
|
+
});
|
|
277
|
+
setQuery((q) => ({ ...q, sort: null }));
|
|
278
|
+
}}
|
|
279
|
+
renderCell={({ field, row }) =>
|
|
280
|
+
field.path === "total" ? (
|
|
281
|
+
<span className="flex items-center gap-2">
|
|
282
|
+
<Cell field={field} row={row} />
|
|
283
|
+
{Number(row.total) > 5000 && (
|
|
284
|
+
<Badge label="large" color="purple" badgeStyle="subtle" showIcon={false} />
|
|
285
|
+
)}
|
|
286
|
+
</span>
|
|
287
|
+
) : undefined
|
|
288
|
+
}
|
|
289
|
+
/>
|
|
290
|
+
{/* `renderCard` replaces the card. The board keeps the wrapper, so dragging still works
|
|
291
|
+
without wiring any of it here. */}
|
|
292
|
+
<DataViews.Board
|
|
293
|
+
groups={groups}
|
|
294
|
+
titlePath="customer.name"
|
|
295
|
+
onRowMove={onRowMove}
|
|
296
|
+
renderCard={({ row, fields, isActive }) => (
|
|
297
|
+
<div
|
|
298
|
+
className={cn(
|
|
299
|
+
"bg-background-presentation-form-base flex flex-col gap-1 rounded-[10px] border p-3",
|
|
300
|
+
isActive
|
|
301
|
+
? "border-border-presentation-state-focus"
|
|
302
|
+
: "border-border-presentation-global-primary",
|
|
303
|
+
)}
|
|
304
|
+
>
|
|
305
|
+
<span className="typography-headers-large-semibold text-content-presentation-global-primary">
|
|
306
|
+
<Cell field={fields[1]} row={row} />
|
|
307
|
+
</span>
|
|
308
|
+
<div className="flex items-center justify-between">
|
|
309
|
+
<Cell field={fields[2]} row={row} />
|
|
310
|
+
<span className="typography-body-small-medium text-content-presentation-global-secondary">
|
|
311
|
+
<Cell field={fields[4]} row={row} />
|
|
312
|
+
</span>
|
|
313
|
+
</div>
|
|
314
|
+
</div>
|
|
315
|
+
)}
|
|
316
|
+
/>
|
|
317
|
+
{/* `renderItem` fills the list row; the row keeps its own hover, selected and link
|
|
318
|
+
behaviour. */}
|
|
319
|
+
<DataViews.Inbox
|
|
320
|
+
titlePath="customer.name"
|
|
321
|
+
datePath="createdAt"
|
|
322
|
+
renderItem={({ row, fields, isActive }) => (
|
|
323
|
+
<div className="flex items-center justify-between gap-2">
|
|
324
|
+
<span className="typography-body-large-medium text-content-presentation-global-primary">
|
|
325
|
+
<Cell field={fields[1]} row={row} />
|
|
326
|
+
</span>
|
|
327
|
+
<span className="flex items-center gap-2">
|
|
328
|
+
<Cell field={fields[2]} row={row} />
|
|
329
|
+
{isActive && <i className="ri-arrow-right-line" aria-hidden />}
|
|
330
|
+
</span>
|
|
331
|
+
</div>
|
|
332
|
+
)}
|
|
333
|
+
>
|
|
334
|
+
{/* The children *are* the pane. `DataViews.Detail` is only a sensible default —
|
|
335
|
+
here it is replaced with content of our own. */}
|
|
336
|
+
<OrderDetail />
|
|
337
|
+
</DataViews.Inbox>
|
|
338
|
+
{/* `TreeFolder` owns the row, so `renderNode` returns the pieces it can vary: the name,
|
|
339
|
+
an icon before it, and meta after it. Anything richer belongs in the pane. */}
|
|
340
|
+
<DataViews.Tree
|
|
341
|
+
nodes={nodes}
|
|
342
|
+
labelPath="customer.name"
|
|
343
|
+
expanded={expanded}
|
|
344
|
+
onExpandedChange={setExpanded}
|
|
345
|
+
// The tree's branches *are* the statuses, so dropping a node into another branch is the
|
|
346
|
+
// same intent the board reports — and goes through the same mutation.
|
|
347
|
+
onNodeMove={(intent) => {
|
|
348
|
+
if (!applyMoves || !intent.to) return;
|
|
349
|
+
const status = intent.to.replace(/^group:/, "");
|
|
350
|
+
// A drop between two leaves reports their parent branch; a drop onto a leaf is not a
|
|
351
|
+
// status change at all, so there is nothing to send.
|
|
352
|
+
if (!STATUSES.includes(status)) return;
|
|
353
|
+
move.mutate({ id: Number(intent.id), status });
|
|
354
|
+
}}
|
|
355
|
+
renderNode={({ row }) =>
|
|
356
|
+
row.status
|
|
357
|
+
? { meta: <Badge label={String(row.status)} color="blue" badgeStyle="subtle" showIcon={false} /> }
|
|
358
|
+
: {}
|
|
359
|
+
}
|
|
360
|
+
>
|
|
361
|
+
{/* The pane's tabs are children, like every other part: pass none and there is no pane. */}
|
|
362
|
+
<DataViews.Tree.Table />
|
|
363
|
+
<DataViews.Tree.Cards />
|
|
364
|
+
</DataViews.Tree>
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
<DataViews.Panel>
|
|
368
|
+
<DataViews.Panel.Tab value="config" label="Config." icon={<Settings />}>
|
|
369
|
+
{/* Saving is the app's job — a view outlives the component. Restoring is not:
|
|
370
|
+
hand the snapshot back and selecting it puts everything back internally. */}
|
|
371
|
+
{/* Saving is the app's job — a view outlives the component. Restoring is not:
|
|
372
|
+
hand the snapshot back and selecting it puts everything back internally. */}
|
|
373
|
+
<DataViews.Panel.SavedViews
|
|
374
|
+
views={saved}
|
|
375
|
+
onSave={(snapshot) =>
|
|
376
|
+
setSaved((prev) => [
|
|
377
|
+
...prev,
|
|
378
|
+
{ id: `view-${prev.length + 1}`, label: `View ${prev.length + 1}`, snapshot },
|
|
379
|
+
])
|
|
380
|
+
}
|
|
381
|
+
/>
|
|
382
|
+
<DataViews.Panel.Columns />
|
|
383
|
+
<DataViews.Panel.Sort />
|
|
384
|
+
</DataViews.Panel.Tab>
|
|
385
|
+
|
|
386
|
+
<DataViews.Panel.Tab value="filters" label="Filters" icon={<Filter />}>
|
|
387
|
+
{/* The controls are FormBuilder fields — the same Select and Slider any form in
|
|
388
|
+
this library uses. The <FormBuilder> itself lives inside Filters; you write only
|
|
389
|
+
its fields, and Filters reads each one's name, label and bounds to learn what
|
|
390
|
+
it is. */}
|
|
391
|
+
<DataViews.Filters
|
|
392
|
+
title={null}
|
|
393
|
+
className="border-b-0 p-0"
|
|
394
|
+
>
|
|
395
|
+
{/* One control per section type. Which one a field gets is decided by the data:
|
|
396
|
+
can the option set grow, and can the user pick more than one. */}
|
|
397
|
+
<FormBuilder.CheckboxGroup name="status" label="Status" options={STATUS_OPTIONS} />
|
|
398
|
+
<FormBuilder.RadioList name="priority" label="Priority" options={PRIORITY_OPTIONS} />
|
|
399
|
+
<FormBuilder.SearchableSelect
|
|
400
|
+
name="customer.name"
|
|
401
|
+
label="Customer"
|
|
402
|
+
options={CUSTOMER_OPTIONS}
|
|
403
|
+
/>
|
|
404
|
+
<FormBuilder.MultiSelect name="brand.name" label="Brand" options={BRAND_OPTIONS} />
|
|
405
|
+
<FormBuilder.Slider name="total" label="Total" range min={0} max={15000} step={100} />
|
|
406
|
+
<FormBuilder.DateRange name="createdAt" label="Created" />
|
|
407
|
+
</DataViews.Filters>
|
|
408
|
+
</DataViews.Panel.Tab>
|
|
409
|
+
</DataViews.Panel>
|
|
410
|
+
</DataViews>
|
|
411
|
+
</div>
|
|
412
|
+
);
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
/**
|
|
416
|
+
* The inbox's pane, written from scratch.
|
|
417
|
+
*
|
|
418
|
+
* `useActiveRow()` resolves whatever the list has open against the current rows, so this works
|
|
419
|
+
* unchanged inside the inbox, the board or the tree — and returns `null` after a refetch drops
|
|
420
|
+
* the row that was open, which is why the guard is not optional.
|
|
421
|
+
*
|
|
422
|
+
* `Cell` paints each value the way every other view paints it, so a custom pane still agrees with
|
|
423
|
+
* the table it came from.
|
|
424
|
+
*/
|
|
425
|
+
function OrderDetail() {
|
|
426
|
+
const row = useActiveRow();
|
|
427
|
+
const { visibleFields } = useDataViewsData();
|
|
428
|
+
if (!row) return null;
|
|
429
|
+
|
|
430
|
+
const [, customer, status, priority, totalField] = visibleFields;
|
|
431
|
+
|
|
432
|
+
return (
|
|
433
|
+
<article className="flex h-full flex-col">
|
|
434
|
+
<header className="border-border-presentation-global-primary flex items-center justify-between gap-3 border-b px-6 py-4">
|
|
435
|
+
<div className="flex flex-col gap-1">
|
|
436
|
+
<span className="typography-headers-medium-medium text-content-presentation-global-primary">
|
|
437
|
+
<Cell field={customer} row={row} />
|
|
438
|
+
</span>
|
|
439
|
+
<span className="flex items-center gap-2">
|
|
440
|
+
<Cell field={status} row={row} />
|
|
441
|
+
<Cell field={priority} row={row} />
|
|
442
|
+
</span>
|
|
443
|
+
</div>
|
|
444
|
+
<span className="typography-headers-large-semibold text-content-presentation-global-primary">
|
|
445
|
+
<Cell field={totalField} row={row} />
|
|
446
|
+
</span>
|
|
447
|
+
</header>
|
|
448
|
+
|
|
449
|
+
<div className="flex flex-1 flex-col gap-4 overflow-auto p-6">
|
|
450
|
+
<p className="typography-body-medium-regular text-content-presentation-global-secondary max-w-[60ch]">
|
|
451
|
+
Anything belongs here — a timeline, an activity feed, a form. The pane is a plain child,
|
|
452
|
+
so it is ordinary JSX with ordinary access to the open row.
|
|
453
|
+
</p>
|
|
454
|
+
<div className="flex gap-2">
|
|
455
|
+
<Button size="M">Mark as shipped</Button>
|
|
456
|
+
<Button size="M" variant="BorderStyle">
|
|
457
|
+
Print label
|
|
458
|
+
</Button>
|
|
459
|
+
</div>
|
|
460
|
+
</div>
|
|
461
|
+
</article>
|
|
462
|
+
);
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
|
|
466
|
+
/**
|
|
467
|
+
* Only the controls that mean something for the view you are looking at.
|
|
468
|
+
*
|
|
469
|
+
* Reading `useDataViewsView()` from inside the header keeps five buttons off the bar — and shows
|
|
470
|
+
* that a header child can reach the component's state like any other part.
|
|
471
|
+
*/
|
|
472
|
+
function ViewControls({
|
|
473
|
+
selectable,
|
|
474
|
+
setSelectable,
|
|
475
|
+
applyMoves,
|
|
476
|
+
setApplyMoves,
|
|
477
|
+
deep,
|
|
478
|
+
setDeep,
|
|
479
|
+
setExpanded,
|
|
480
|
+
reset,
|
|
481
|
+
}: {
|
|
482
|
+
selectable: boolean;
|
|
483
|
+
setSelectable: (v: boolean) => void;
|
|
484
|
+
applyMoves: boolean;
|
|
485
|
+
setApplyMoves: (v: boolean) => void;
|
|
486
|
+
deep: boolean;
|
|
487
|
+
setDeep: (v: boolean) => void;
|
|
488
|
+
setExpanded: (v: readonly string[]) => void;
|
|
489
|
+
reset: () => void;
|
|
490
|
+
}) {
|
|
491
|
+
const { view, setActiveId } = useDataViewsView();
|
|
492
|
+
|
|
493
|
+
if (view === "table") {
|
|
494
|
+
return (
|
|
495
|
+
<Button size="S" variant="BorderStyle" onClick={() => setSelectable(!selectable)}>
|
|
496
|
+
{selectable ? "Hide checkboxes" : "Show checkboxes"}
|
|
497
|
+
</Button>
|
|
498
|
+
);
|
|
499
|
+
}
|
|
500
|
+
if (view === "board") {
|
|
501
|
+
return (
|
|
502
|
+
<>
|
|
503
|
+
<Button
|
|
504
|
+
size="S"
|
|
505
|
+
variant={applyMoves ? "BluColStyle" : "BorderStyle"}
|
|
506
|
+
onClick={() => setApplyMoves(!applyMoves)}
|
|
507
|
+
>
|
|
508
|
+
{applyMoves ? "Applying moves" : "Ignoring moves"}
|
|
509
|
+
</Button>
|
|
510
|
+
<Button size="S" variant="BorderStyle" onClick={reset}>
|
|
511
|
+
Reset
|
|
512
|
+
</Button>
|
|
513
|
+
</>
|
|
514
|
+
);
|
|
515
|
+
}
|
|
516
|
+
if (view === "inbox") {
|
|
517
|
+
return (
|
|
518
|
+
<Button size="S" variant="BorderStyle" onClick={() => setActiveId("does-not-exist")}>
|
|
519
|
+
Bogus activeId
|
|
520
|
+
</Button>
|
|
521
|
+
);
|
|
522
|
+
}
|
|
523
|
+
return (
|
|
524
|
+
<>
|
|
525
|
+
<Button size="S" variant="BorderStyle" onClick={() => setDeep(!deep)}>
|
|
526
|
+
{deep ? "Group by status" : "Five levels deep"}
|
|
527
|
+
</Button>
|
|
528
|
+
<Button size="S" variant="BorderStyle" onClick={() => setExpanded([])}>
|
|
529
|
+
Collapse all
|
|
530
|
+
</Button>
|
|
531
|
+
</>
|
|
532
|
+
);
|
|
533
|
+
}
|
|
534
|
+
```
|