@olenbetong/appframe-ds 1.0.3 → 1.2.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/CHANGELOG.md +13 -0
- package/package.json +8 -7
- package/scripts/copyAssets.mjs +27 -55
- package/src/AfLookup/Lookup.css +129 -125
- package/src/AfLookup/Lookup.tsx +184 -162
- package/src/AfLookup/LookupCombobox.css +78 -78
- package/src/AfLookup/LookupCombobox.tsx +237 -237
- package/src/AfLookup/LookupEdit.tsx +130 -130
- package/src/AfLookup/LookupGrid.tsx +124 -124
- package/src/AfLookup/index.ts +5 -5
- package/src/autocomplete/Autocomplete.css +256 -256
- package/src/autocomplete/Autocomplete.tsx +320 -320
- package/src/autocomplete/AutocompleteFrame.tsx +168 -168
- package/src/autocomplete/Combobox.tsx +286 -286
- package/src/autocomplete/index.ts +4 -4
- package/src/autocomplete/types.ts +204 -204
- package/src/autocomplete/utils.ts +183 -183
- package/src/binding/BoundNumericTextField.tsx +102 -102
- package/src/binding/BoundTextField.tsx +49 -49
- package/src/binding/CancelButton.tsx +30 -30
- package/src/binding/CancelIconButton.tsx +30 -30
- package/src/binding/DataEditToolbar.tsx +92 -92
- package/src/binding/DeleteButton.tsx +35 -35
- package/src/binding/DeleteIconButton.tsx +35 -35
- package/src/binding/RefreshButton.tsx +31 -31
- package/src/binding/RefreshIconButton.tsx +33 -33
- package/src/binding/RefreshRowIconButton.tsx +33 -33
- package/src/binding/SaveButton.tsx +37 -37
- package/src/binding/SaveIconButton.tsx +38 -38
- package/src/container/Container.tsx +49 -49
- package/src/container/index.ts +1 -1
- package/src/cutoff/CutOffPicker.css +12 -0
- package/src/cutoff/CutOffPicker.tsx +165 -0
- package/src/cutoff/context.tsx +194 -0
- package/src/cutoff/dsCutOffDates.ts +21 -0
- package/src/cutoff/index.ts +4 -0
- package/src/cutoff/utils.test.ts +59 -0
- package/src/cutoff/utils.ts +276 -0
- package/src/filter/ChipListInput.tsx +79 -79
- package/src/filter/FieldFilterPanel.css +150 -150
- package/src/filter/FieldFilterPanel.tsx +309 -309
- package/src/filter/FilterBuilder.css +152 -152
- package/src/filter/FilterBuilder.test.tsx +153 -153
- package/src/filter/FilterBuilder.tsx +435 -435
- package/src/filter/FilterEditor.css +231 -231
- package/src/filter/FilterEditor.test.tsx +259 -259
- package/src/filter/FilterEditor.tsx +75 -74
- package/src/filter/FilterGroupEditor.tsx +160 -160
- package/src/filter/FilterNameDialog.css +22 -22
- package/src/filter/FilterNameDialog.tsx +81 -81
- package/src/filter/FilterRow.tsx +117 -117
- package/src/filter/FilterShareDialog.css +28 -28
- package/src/filter/FilterShareDialog.tsx +201 -201
- package/src/filter/FilterStringField.tsx +78 -77
- package/src/filter/FilterValueEditor.tsx +220 -220
- package/src/filter/SavedFilterTree.css +107 -107
- package/src/filter/SavedFilterTree.test.tsx +94 -94
- package/src/filter/SavedFilterTree.tsx +218 -222
- package/src/filter/fieldFilter.test.ts +158 -158
- package/src/filter/fieldFilter.ts +139 -139
- package/src/filter/index.ts +27 -27
- package/src/filter/types.ts +38 -38
- package/src/filter/useDistinctValues.test.ts +102 -102
- package/src/filter/useDistinctValues.ts +230 -230
- package/src/global.d.ts +11 -11
- package/src/grid/AfGridColumnsPanel.tsx +118 -118
- package/src/grid/AfGridContext.tsx +51 -51
- package/src/grid/AfGridError.tsx +46 -46
- package/src/grid/AfHeaderFilterCell.tsx +147 -151
- package/src/grid/AfHeaderFilterPanel.tsx +111 -111
- package/src/grid/GridEditLookup.css +12 -0
- package/src/grid/GridEditLookup.tsx +121 -0
- package/src/grid/Toolbar.tsx +233 -233
- package/src/grid/editing.ts +100 -100
- package/src/grid/filter.ts +78 -78
- package/src/grid/formatters.ts +48 -48
- package/src/grid/index.css +245 -245
- package/src/grid/index.tsx +489 -484
- package/src/grid/license.ts +48 -48
- package/src/grid/localization.ts +369 -369
- package/src/grid/slots/index.tsx +307 -307
- package/src/grid/slots/slots.css +64 -64
- package/src/grid/theme.tsx +138 -138
- package/src/grid/useAfColumns.tsx +371 -371
- package/src/grid/useAfCurrentIndex.ts +63 -63
- package/src/grid/useAfData.ts +20 -20
- package/src/grid/useAfFilter.ts +160 -160
- package/src/grid/useAfFilterFields.ts +55 -55
- package/src/grid/useAfGridApi.ts +71 -71
- package/src/grid/useAfKeyBindings.ts +36 -36
- package/src/grid/useAfNewItemRow.ts +258 -258
- package/src/grid/useAfPagination.ts +53 -53
- package/src/grid/useAfPersistedState.ts +230 -230
- package/src/grid/useAfRowEditModel.ts +145 -145
- package/src/grid/useAfRowGrouping.ts +47 -47
- package/src/grid/useAfServerAggregation.ts +145 -145
- package/src/grid/useAfSortModel.ts +84 -84
- package/src/i18n.ts +13 -0
- package/src/index.ts +14 -12
- package/src/input/InputAdornments.css +75 -75
- package/src/input/InputAdornments.tsx +102 -102
- package/src/input/index.ts +1 -1
- package/src/layout/AppMenu.tsx +74 -75
- package/src/layout/AppMenuDrawer.css +70 -70
- package/src/layout/AppMenuDrawer.tsx +122 -122
- package/src/layout/ErrorBoundary.tsx +162 -162
- package/src/layout/ResponsiveDialog.css +86 -0
- package/src/layout/ResponsiveDialog.tsx +55 -0
- package/src/layout/index.tsx +69 -68
- package/src/link/Link.tsx +23 -0
- package/src/link/index.ts +1 -0
- package/src/mdi/Mdi.css +138 -138
- package/src/mdi/Mdi.test.tsx +91 -87
- package/src/mdi/Mdi.tsx +141 -141
- package/src/mdi/MdiConfirmCloseDialog.tsx +47 -47
- package/src/mdi/MdiContext.tsx +59 -59
- package/src/mdi/MdiDocumentContext.tsx +60 -60
- package/src/mdi/MdiPanel.tsx +61 -61
- package/src/mdi/MdiRestore.test.tsx +86 -82
- package/src/mdi/MdiTab.tsx +30 -30
- package/src/mdi/controller.test.ts +382 -382
- package/src/mdi/controller.ts +656 -656
- package/src/mdi/dockviewHost.ts +132 -132
- package/src/mdi/fakeHost.ts +200 -200
- package/src/mdi/host.ts +44 -44
- package/src/mdi/ids.test.ts +20 -20
- package/src/mdi/ids.ts +18 -18
- package/src/mdi/index.ts +31 -31
- package/src/mdi/layoutRestore.test.ts +156 -156
- package/src/mdi/layoutRestore.ts +311 -311
- package/src/mdi/layoutSpec.test.ts +143 -143
- package/src/mdi/layoutSpec.ts +214 -214
- package/src/mdi/layoutStore.test.ts +93 -93
- package/src/mdi/layoutStore.ts +99 -99
- package/src/mdi/memorySettingsStore.ts +21 -21
- package/src/mdi/registry.ts +34 -34
- package/src/mdi/testTypes.ts +37 -37
- package/src/mdi/theme.ts +22 -22
- package/src/mdi/types.ts +214 -214
- package/src/page/Page.css +53 -53
- package/src/page/PageBlock.css +64 -64
- package/src/page/PageBlock.tsx +92 -92
- package/src/page/PageHeader.css +88 -88
- package/src/page/PageHeader.tsx +115 -116
- package/src/page/PageTitle.css +5 -0
- package/src/page/PageTitle.tsx +21 -0
- package/src/page/index.ts +4 -3
- package/src/paper/Paper.tsx +52 -52
- package/src/progress/LinearProgress.css +93 -93
- package/src/progress/LinearProgress.tsx +104 -104
- package/src/progress/index.ts +1 -1
- package/src/report-downloader/ReportDownloader.css +67 -67
- package/src/report-downloader/components/StatusItem.tsx +87 -86
- package/src/report-downloader/components/StatusList.tsx +28 -28
- package/src/report-downloader/index.ts +41 -41
- package/src/report-downloader/status.tsx +92 -92
- package/src/sortable/DropIndicator.css +51 -51
- package/src/sortable/DropIndicator.tsx +27 -27
- package/src/sortable/SortableItemList.css +21 -21
- package/src/sortable/SortableItemList.tsx +264 -264
- package/src/sortable/index.ts +8 -8
- package/src/sortable/reorderSortOrder.ts +126 -126
- package/src/sortable/sortOrder.ts +101 -101
- package/src/sortable/types.ts +9 -9
- package/src/sortable/useSortableContainer.ts +53 -53
- package/src/sortable/useSortableItem.ts +95 -95
- package/src/sortable/useSortableList.ts +117 -117
- package/src/test/happy-dom-document-class.ts +24 -24
- package/src/test/setup.ts +12 -12
- package/src/theme/useDsColorScheme.ts +53 -53
- package/tsconfig.build.json +9 -9
- package/tsconfig.json +8 -8
- package/vitest.config.ts +10 -10
package/src/grid/slots/index.tsx
CHANGED
|
@@ -1,307 +1,307 @@
|
|
|
1
|
-
import "./slots.css";
|
|
2
|
-
|
|
3
|
-
import {
|
|
4
|
-
Badge,
|
|
5
|
-
Button,
|
|
6
|
-
Checkbox,
|
|
7
|
-
Divider,
|
|
8
|
-
Select,
|
|
9
|
-
Skeleton,
|
|
10
|
-
Spinner,
|
|
11
|
-
Switch,
|
|
12
|
-
Tag,
|
|
13
|
-
Textfield,
|
|
14
|
-
Tooltip,
|
|
15
|
-
} from "@digdir/designsystemet-react";
|
|
16
|
-
import type { GridSlotProps, GridSlotsComponent } from "@mui/x-data-grid-premium";
|
|
17
|
-
|
|
18
|
-
import clsx from "clsx";
|
|
19
|
-
import { type Ref, useCallback } from "react";
|
|
20
|
-
|
|
21
|
-
type DsSize = "2xs" | "xs" | "sm" | "md" | "lg";
|
|
22
|
-
|
|
23
|
-
/**
|
|
24
|
-
* Maps the MUI slot sizes onto the Designsystemet size tokens. The grid only
|
|
25
|
-
* ever asks for `small` or `medium`, but the toolbar buttons also allow `large`.
|
|
26
|
-
*/
|
|
27
|
-
function dsSize(size?: "small" | "medium" | "large"): DsSize {
|
|
28
|
-
switch (size) {
|
|
29
|
-
case "small":
|
|
30
|
-
return "sm";
|
|
31
|
-
case "large":
|
|
32
|
-
return "lg";
|
|
33
|
-
default:
|
|
34
|
-
return "sm";
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
/**
|
|
39
|
-
* The grid passes `title` as a `ReactNode`, but Designsystemet's tooltip only
|
|
40
|
-
* accepts a string. Anything else is rendered without a tooltip.
|
|
41
|
-
*/
|
|
42
|
-
function tooltipContent(title: React.ReactNode) {
|
|
43
|
-
return typeof title === "string" ? title : typeof title === "number" ? String(title) : undefined;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
function BaseCheckbox(props: GridSlotProps["baseCheckbox"]) {
|
|
47
|
-
let {
|
|
48
|
-
indeterminate,
|
|
49
|
-
inputRef,
|
|
50
|
-
label,
|
|
51
|
-
size,
|
|
52
|
-
density: _density,
|
|
53
|
-
fullWidth: _fullWidth,
|
|
54
|
-
touchRippleRef: _touchRippleRef,
|
|
55
|
-
slotProps,
|
|
56
|
-
className,
|
|
57
|
-
...other
|
|
58
|
-
} = props;
|
|
59
|
-
|
|
60
|
-
// `indeterminate` is not a DOM attribute, so it has to be set on the input
|
|
61
|
-
// element itself.
|
|
62
|
-
let ref = useCallback(
|
|
63
|
-
(element: HTMLInputElement | null) => {
|
|
64
|
-
if (element) {
|
|
65
|
-
element.indeterminate = !!indeterminate;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
if (typeof inputRef === "function") {
|
|
69
|
-
inputRef(element);
|
|
70
|
-
} else if (inputRef) {
|
|
71
|
-
(inputRef as React.RefObject<HTMLInputElement | null>).current = element;
|
|
72
|
-
}
|
|
73
|
-
},
|
|
74
|
-
[indeterminate, inputRef],
|
|
75
|
-
);
|
|
76
|
-
|
|
77
|
-
return (
|
|
78
|
-
<Checkbox
|
|
79
|
-
{...(other as any)}
|
|
80
|
-
{...slotProps?.htmlInput}
|
|
81
|
-
ref={ref}
|
|
82
|
-
className={clsx("AfGrid-checkbox", className)}
|
|
83
|
-
data-size={dsSize(size)}
|
|
84
|
-
label={label}
|
|
85
|
-
aria-label={label ? undefined : ((other as any)["aria-label"] ?? "")}
|
|
86
|
-
/>
|
|
87
|
-
);
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
function BaseButton(props: GridSlotProps["baseButton"]) {
|
|
91
|
-
let { children, size, startIcon, touchRippleRef: _touchRippleRef, ...other } = props;
|
|
92
|
-
|
|
93
|
-
return (
|
|
94
|
-
<Button {...(other as any)} variant="tertiary" data-size={dsSize(size)}>
|
|
95
|
-
{startIcon}
|
|
96
|
-
{children}
|
|
97
|
-
</Button>
|
|
98
|
-
);
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
function BaseIconButton(props: GridSlotProps["baseIconButton"]) {
|
|
102
|
-
let { children, size, label, color: _color, edge: _edge, touchRippleRef: _touchRippleRef, ...other } = props;
|
|
103
|
-
|
|
104
|
-
return (
|
|
105
|
-
<Button {...(other as any)} icon variant="tertiary" data-size={dsSize(size)} aria-label={label}>
|
|
106
|
-
{children}
|
|
107
|
-
</Button>
|
|
108
|
-
);
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
function BaseTooltip(props: GridSlotProps["baseTooltip"]) {
|
|
112
|
-
let { children, title, enterDelay: _enterDelay, disableInteractive: _disableInteractive, ...other } = props;
|
|
113
|
-
let content = tooltipContent(title);
|
|
114
|
-
|
|
115
|
-
// Designsystemet labels the tooltip host itself, and logs `Missing
|
|
116
|
-
// tabindex="0" attribute on:` whenever that host is not tabbable. In the grid
|
|
117
|
-
// it never is — the column header is the tab stop and moves focus with the
|
|
118
|
-
// arrow keys, so MUI gives the menu button `tabindex="-1"` and hangs the sort
|
|
119
|
-
// tooltip on a bare `<span>`. The tooltips still open, because Designsystemet
|
|
120
|
-
// resolves the host with `closest()` on focus and hover, so the warning is a
|
|
121
|
-
// false positive — and it is not gated on `NODE_ENV`, so it reaches
|
|
122
|
-
// production too.
|
|
123
|
-
//
|
|
124
|
-
// Setting the label ourselves is exactly what Designsystemet does a moment
|
|
125
|
-
// later (`aria-description` when the host has text, `aria-label` when it does
|
|
126
|
-
// not), and it makes Designsystemet skip that whole branch — silencing the
|
|
127
|
-
// warning without turning off `window.dsWarnings` for the entire app.
|
|
128
|
-
let ref = useCallback(
|
|
129
|
-
(element: HTMLElement | null) => {
|
|
130
|
-
if (!element || !content) {
|
|
131
|
-
return;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
let hasText = element.getAttribute("role") !== "img" && !!element.textContent?.trim();
|
|
135
|
-
element.setAttribute(hasText ? "aria-description" : "aria-label", content);
|
|
136
|
-
},
|
|
137
|
-
[content],
|
|
138
|
-
);
|
|
139
|
-
|
|
140
|
-
if (!content) {
|
|
141
|
-
return children;
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
return (
|
|
145
|
-
<Tooltip {...(other as any)} ref={ref} content={content}>
|
|
146
|
-
{children}
|
|
147
|
-
</Tooltip>
|
|
148
|
-
);
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
function BaseTextField(props: GridSlotProps["baseTextField"]) {
|
|
152
|
-
let {
|
|
153
|
-
inputRef,
|
|
154
|
-
size,
|
|
155
|
-
error,
|
|
156
|
-
helperText,
|
|
157
|
-
slotProps,
|
|
158
|
-
fullWidth: _fullWidth,
|
|
159
|
-
color: _color,
|
|
160
|
-
className,
|
|
161
|
-
...other
|
|
162
|
-
} = props;
|
|
163
|
-
|
|
164
|
-
return (
|
|
165
|
-
<Textfield
|
|
166
|
-
{...(other as any)}
|
|
167
|
-
{...slotProps?.htmlInput}
|
|
168
|
-
ref={inputRef as Ref<HTMLInputElement>}
|
|
169
|
-
className={clsx("AfGrid-textField", className)}
|
|
170
|
-
data-size={dsSize(size)}
|
|
171
|
-
error={error ? helperText : undefined}
|
|
172
|
-
aria-label={other.label ? undefined : ((other as any)["aria-label"] ?? "")}
|
|
173
|
-
/>
|
|
174
|
-
);
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
function BaseSelect(props: GridSlotProps["baseSelect"]) {
|
|
178
|
-
let {
|
|
179
|
-
children,
|
|
180
|
-
size,
|
|
181
|
-
label,
|
|
182
|
-
labelId: _labelId,
|
|
183
|
-
native: _native,
|
|
184
|
-
fullWidth: _fullWidth,
|
|
185
|
-
open: _open,
|
|
186
|
-
onOpen: _onOpen,
|
|
187
|
-
onClose: _onClose,
|
|
188
|
-
slotProps,
|
|
189
|
-
className,
|
|
190
|
-
...other
|
|
191
|
-
} = props;
|
|
192
|
-
|
|
193
|
-
return (
|
|
194
|
-
<Select
|
|
195
|
-
{...(other as any)}
|
|
196
|
-
{...slotProps?.htmlInput}
|
|
197
|
-
className={clsx("AfGrid-select", className)}
|
|
198
|
-
data-size={dsSize(size)}
|
|
199
|
-
aria-label={typeof label === "string" ? label : ((other as any)["aria-label"] ?? "")}
|
|
200
|
-
>
|
|
201
|
-
{children}
|
|
202
|
-
</Select>
|
|
203
|
-
);
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
function BaseSelectOption(props: GridSlotProps["baseSelectOption"]) {
|
|
207
|
-
let { native: _native, children, ...other } = props;
|
|
208
|
-
|
|
209
|
-
return <Select.Option {...(other as any)}>{children}</Select.Option>;
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
function BaseSwitch(props: GridSlotProps["baseSwitch"]) {
|
|
213
|
-
let { size, label, ...other } = props;
|
|
214
|
-
|
|
215
|
-
return (
|
|
216
|
-
<Switch
|
|
217
|
-
{...(other as any)}
|
|
218
|
-
data-size={dsSize(size)}
|
|
219
|
-
label={label}
|
|
220
|
-
aria-label={label ? undefined : ((other as any)["aria-label"] ?? "")}
|
|
221
|
-
/>
|
|
222
|
-
);
|
|
223
|
-
}
|
|
224
|
-
|
|
225
|
-
function BaseChip(props: GridSlotProps["baseChip"]) {
|
|
226
|
-
let { label, size, icon, variant, children: _children, ...other } = props;
|
|
227
|
-
|
|
228
|
-
return (
|
|
229
|
-
<Tag {...(other as any)} data-size={dsSize(size)} variant={variant === "outlined" ? "outline" : "default"}>
|
|
230
|
-
{icon}
|
|
231
|
-
{label}
|
|
232
|
-
</Tag>
|
|
233
|
-
);
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
function BaseBadge(props: GridSlotProps["baseBadge"]) {
|
|
237
|
-
let { badgeContent, children, invisible, color, variant, overlap, className, ...other } = props;
|
|
238
|
-
let count = typeof badgeContent === "number" ? badgeContent : Number(badgeContent);
|
|
239
|
-
|
|
240
|
-
// The badge must wrap the element it decorates so Designsystemet anchors it to
|
|
241
|
-
// that element's corner. Rendering it as a sibling put the badge on an empty
|
|
242
|
-
// box next to the icon, where it was clipped by the column header.
|
|
243
|
-
return (
|
|
244
|
-
<Badge.Position
|
|
245
|
-
{...(other as any)}
|
|
246
|
-
className={clsx("AfGrid-badge", className)}
|
|
247
|
-
placement="top-right"
|
|
248
|
-
overlap={overlap === "circular" ? "circle" : "rectangle"}
|
|
249
|
-
>
|
|
250
|
-
{children}
|
|
251
|
-
{!invisible && (
|
|
252
|
-
<Badge
|
|
253
|
-
aria-hidden
|
|
254
|
-
count={variant === "dot" || Number.isNaN(count) ? undefined : count}
|
|
255
|
-
data-color={color === "error" ? "danger" : color === "primary" ? "accent" : "neutral"}
|
|
256
|
-
/>
|
|
257
|
-
)}
|
|
258
|
-
</Badge.Position>
|
|
259
|
-
);
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
function BaseCircularProgress(props: GridSlotProps["baseCircularProgress"]) {
|
|
263
|
-
let { size, color: _color, ...other } = props;
|
|
264
|
-
let numericSize = typeof size === "number" ? size : 24;
|
|
265
|
-
|
|
266
|
-
return <Spinner {...(other as any)} aria-hidden data-size={numericSize <= 20 ? "xs" : "sm"} />;
|
|
267
|
-
}
|
|
268
|
-
|
|
269
|
-
function BaseLinearProgress(props: GridSlotProps["baseLinearProgress"]) {
|
|
270
|
-
let { className, ...other } = props;
|
|
271
|
-
|
|
272
|
-
return <div {...(other as any)} role="progressbar" className={clsx("AfGrid-linearProgress", className)} />;
|
|
273
|
-
}
|
|
274
|
-
|
|
275
|
-
function BaseSkeleton(props: GridSlotProps["baseSkeleton"]) {
|
|
276
|
-
let { variant, width, height, ...other } = props;
|
|
277
|
-
|
|
278
|
-
return (
|
|
279
|
-
<Skeleton {...(other as any)} variant={variant === "circular" ? "circle" : variant} width={width} height={height} />
|
|
280
|
-
);
|
|
281
|
-
}
|
|
282
|
-
|
|
283
|
-
function BaseDivider(props: GridSlotProps["baseDivider"]) {
|
|
284
|
-
return <Divider {...(props as any)} />;
|
|
285
|
-
}
|
|
286
|
-
|
|
287
|
-
/**
|
|
288
|
-
* Designsystemet replacements for the grid's base components. Passed to the
|
|
289
|
-
* `slots` prop of the data grid, so the grid renders Designsystemet components
|
|
290
|
-
* instead of the MUI ones wherever it can.
|
|
291
|
-
*/
|
|
292
|
-
export const dsBaseSlots: Partial<GridSlotsComponent> = {
|
|
293
|
-
baseBadge: BaseBadge,
|
|
294
|
-
baseButton: BaseButton,
|
|
295
|
-
baseCheckbox: BaseCheckbox,
|
|
296
|
-
baseChip: BaseChip,
|
|
297
|
-
baseCircularProgress: BaseCircularProgress,
|
|
298
|
-
baseDivider: BaseDivider,
|
|
299
|
-
baseIconButton: BaseIconButton,
|
|
300
|
-
baseLinearProgress: BaseLinearProgress,
|
|
301
|
-
baseSelect: BaseSelect,
|
|
302
|
-
baseSelectOption: BaseSelectOption,
|
|
303
|
-
baseSkeleton: BaseSkeleton,
|
|
304
|
-
baseSwitch: BaseSwitch,
|
|
305
|
-
baseTextField: BaseTextField,
|
|
306
|
-
baseTooltip: BaseTooltip,
|
|
307
|
-
};
|
|
1
|
+
import "./slots.css";
|
|
2
|
+
|
|
3
|
+
import {
|
|
4
|
+
Badge,
|
|
5
|
+
Button,
|
|
6
|
+
Checkbox,
|
|
7
|
+
Divider,
|
|
8
|
+
Select,
|
|
9
|
+
Skeleton,
|
|
10
|
+
Spinner,
|
|
11
|
+
Switch,
|
|
12
|
+
Tag,
|
|
13
|
+
Textfield,
|
|
14
|
+
Tooltip,
|
|
15
|
+
} from "@digdir/designsystemet-react";
|
|
16
|
+
import type { GridSlotProps, GridSlotsComponent } from "@mui/x-data-grid-premium";
|
|
17
|
+
|
|
18
|
+
import clsx from "clsx";
|
|
19
|
+
import { type Ref, useCallback } from "react";
|
|
20
|
+
|
|
21
|
+
type DsSize = "2xs" | "xs" | "sm" | "md" | "lg";
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* Maps the MUI slot sizes onto the Designsystemet size tokens. The grid only
|
|
25
|
+
* ever asks for `small` or `medium`, but the toolbar buttons also allow `large`.
|
|
26
|
+
*/
|
|
27
|
+
function dsSize(size?: "small" | "medium" | "large"): DsSize {
|
|
28
|
+
switch (size) {
|
|
29
|
+
case "small":
|
|
30
|
+
return "sm";
|
|
31
|
+
case "large":
|
|
32
|
+
return "lg";
|
|
33
|
+
default:
|
|
34
|
+
return "sm";
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* The grid passes `title` as a `ReactNode`, but Designsystemet's tooltip only
|
|
40
|
+
* accepts a string. Anything else is rendered without a tooltip.
|
|
41
|
+
*/
|
|
42
|
+
function tooltipContent(title: React.ReactNode) {
|
|
43
|
+
return typeof title === "string" ? title : typeof title === "number" ? String(title) : undefined;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
function BaseCheckbox(props: GridSlotProps["baseCheckbox"]) {
|
|
47
|
+
let {
|
|
48
|
+
indeterminate,
|
|
49
|
+
inputRef,
|
|
50
|
+
label,
|
|
51
|
+
size,
|
|
52
|
+
density: _density,
|
|
53
|
+
fullWidth: _fullWidth,
|
|
54
|
+
touchRippleRef: _touchRippleRef,
|
|
55
|
+
slotProps,
|
|
56
|
+
className,
|
|
57
|
+
...other
|
|
58
|
+
} = props;
|
|
59
|
+
|
|
60
|
+
// `indeterminate` is not a DOM attribute, so it has to be set on the input
|
|
61
|
+
// element itself.
|
|
62
|
+
let ref = useCallback(
|
|
63
|
+
(element: HTMLInputElement | null) => {
|
|
64
|
+
if (element) {
|
|
65
|
+
element.indeterminate = !!indeterminate;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
if (typeof inputRef === "function") {
|
|
69
|
+
inputRef(element);
|
|
70
|
+
} else if (inputRef) {
|
|
71
|
+
(inputRef as React.RefObject<HTMLInputElement | null>).current = element;
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
[indeterminate, inputRef],
|
|
75
|
+
);
|
|
76
|
+
|
|
77
|
+
return (
|
|
78
|
+
<Checkbox
|
|
79
|
+
{...(other as any)}
|
|
80
|
+
{...slotProps?.htmlInput}
|
|
81
|
+
ref={ref}
|
|
82
|
+
className={clsx("AfGrid-checkbox", className)}
|
|
83
|
+
data-size={dsSize(size)}
|
|
84
|
+
label={label}
|
|
85
|
+
aria-label={label ? undefined : ((other as any)["aria-label"] ?? "")}
|
|
86
|
+
/>
|
|
87
|
+
);
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
function BaseButton(props: GridSlotProps["baseButton"]) {
|
|
91
|
+
let { children, size, startIcon, touchRippleRef: _touchRippleRef, ...other } = props;
|
|
92
|
+
|
|
93
|
+
return (
|
|
94
|
+
<Button {...(other as any)} variant="tertiary" data-size={dsSize(size)}>
|
|
95
|
+
{startIcon}
|
|
96
|
+
{children}
|
|
97
|
+
</Button>
|
|
98
|
+
);
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
function BaseIconButton(props: GridSlotProps["baseIconButton"]) {
|
|
102
|
+
let { children, size, label, color: _color, edge: _edge, touchRippleRef: _touchRippleRef, ...other } = props;
|
|
103
|
+
|
|
104
|
+
return (
|
|
105
|
+
<Button {...(other as any)} icon variant="tertiary" data-size={dsSize(size)} aria-label={label}>
|
|
106
|
+
{children}
|
|
107
|
+
</Button>
|
|
108
|
+
);
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
function BaseTooltip(props: GridSlotProps["baseTooltip"]) {
|
|
112
|
+
let { children, title, enterDelay: _enterDelay, disableInteractive: _disableInteractive, ...other } = props;
|
|
113
|
+
let content = tooltipContent(title);
|
|
114
|
+
|
|
115
|
+
// Designsystemet labels the tooltip host itself, and logs `Missing
|
|
116
|
+
// tabindex="0" attribute on:` whenever that host is not tabbable. In the grid
|
|
117
|
+
// it never is — the column header is the tab stop and moves focus with the
|
|
118
|
+
// arrow keys, so MUI gives the menu button `tabindex="-1"` and hangs the sort
|
|
119
|
+
// tooltip on a bare `<span>`. The tooltips still open, because Designsystemet
|
|
120
|
+
// resolves the host with `closest()` on focus and hover, so the warning is a
|
|
121
|
+
// false positive — and it is not gated on `NODE_ENV`, so it reaches
|
|
122
|
+
// production too.
|
|
123
|
+
//
|
|
124
|
+
// Setting the label ourselves is exactly what Designsystemet does a moment
|
|
125
|
+
// later (`aria-description` when the host has text, `aria-label` when it does
|
|
126
|
+
// not), and it makes Designsystemet skip that whole branch — silencing the
|
|
127
|
+
// warning without turning off `window.dsWarnings` for the entire app.
|
|
128
|
+
let ref = useCallback(
|
|
129
|
+
(element: HTMLElement | null) => {
|
|
130
|
+
if (!element || !content) {
|
|
131
|
+
return;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
let hasText = element.getAttribute("role") !== "img" && !!element.textContent?.trim();
|
|
135
|
+
element.setAttribute(hasText ? "aria-description" : "aria-label", content);
|
|
136
|
+
},
|
|
137
|
+
[content],
|
|
138
|
+
);
|
|
139
|
+
|
|
140
|
+
if (!content) {
|
|
141
|
+
return children;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
return (
|
|
145
|
+
<Tooltip {...(other as any)} ref={ref} content={content}>
|
|
146
|
+
{children}
|
|
147
|
+
</Tooltip>
|
|
148
|
+
);
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
function BaseTextField(props: GridSlotProps["baseTextField"]) {
|
|
152
|
+
let {
|
|
153
|
+
inputRef,
|
|
154
|
+
size,
|
|
155
|
+
error,
|
|
156
|
+
helperText,
|
|
157
|
+
slotProps,
|
|
158
|
+
fullWidth: _fullWidth,
|
|
159
|
+
color: _color,
|
|
160
|
+
className,
|
|
161
|
+
...other
|
|
162
|
+
} = props;
|
|
163
|
+
|
|
164
|
+
return (
|
|
165
|
+
<Textfield
|
|
166
|
+
{...(other as any)}
|
|
167
|
+
{...slotProps?.htmlInput}
|
|
168
|
+
ref={inputRef as Ref<HTMLInputElement>}
|
|
169
|
+
className={clsx("AfGrid-textField", className)}
|
|
170
|
+
data-size={dsSize(size)}
|
|
171
|
+
error={error ? helperText : undefined}
|
|
172
|
+
aria-label={other.label ? undefined : ((other as any)["aria-label"] ?? "")}
|
|
173
|
+
/>
|
|
174
|
+
);
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
function BaseSelect(props: GridSlotProps["baseSelect"]) {
|
|
178
|
+
let {
|
|
179
|
+
children,
|
|
180
|
+
size,
|
|
181
|
+
label,
|
|
182
|
+
labelId: _labelId,
|
|
183
|
+
native: _native,
|
|
184
|
+
fullWidth: _fullWidth,
|
|
185
|
+
open: _open,
|
|
186
|
+
onOpen: _onOpen,
|
|
187
|
+
onClose: _onClose,
|
|
188
|
+
slotProps,
|
|
189
|
+
className,
|
|
190
|
+
...other
|
|
191
|
+
} = props;
|
|
192
|
+
|
|
193
|
+
return (
|
|
194
|
+
<Select
|
|
195
|
+
{...(other as any)}
|
|
196
|
+
{...slotProps?.htmlInput}
|
|
197
|
+
className={clsx("AfGrid-select", className)}
|
|
198
|
+
data-size={dsSize(size)}
|
|
199
|
+
aria-label={typeof label === "string" ? label : ((other as any)["aria-label"] ?? "")}
|
|
200
|
+
>
|
|
201
|
+
{children}
|
|
202
|
+
</Select>
|
|
203
|
+
);
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
function BaseSelectOption(props: GridSlotProps["baseSelectOption"]) {
|
|
207
|
+
let { native: _native, children, ...other } = props;
|
|
208
|
+
|
|
209
|
+
return <Select.Option {...(other as any)}>{children}</Select.Option>;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
function BaseSwitch(props: GridSlotProps["baseSwitch"]) {
|
|
213
|
+
let { size, label, ...other } = props;
|
|
214
|
+
|
|
215
|
+
return (
|
|
216
|
+
<Switch
|
|
217
|
+
{...(other as any)}
|
|
218
|
+
data-size={dsSize(size)}
|
|
219
|
+
label={label}
|
|
220
|
+
aria-label={label ? undefined : ((other as any)["aria-label"] ?? "")}
|
|
221
|
+
/>
|
|
222
|
+
);
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
function BaseChip(props: GridSlotProps["baseChip"]) {
|
|
226
|
+
let { label, size, icon, variant, children: _children, ...other } = props;
|
|
227
|
+
|
|
228
|
+
return (
|
|
229
|
+
<Tag {...(other as any)} data-size={dsSize(size)} variant={variant === "outlined" ? "outline" : "default"}>
|
|
230
|
+
{icon}
|
|
231
|
+
{label}
|
|
232
|
+
</Tag>
|
|
233
|
+
);
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
function BaseBadge(props: GridSlotProps["baseBadge"]) {
|
|
237
|
+
let { badgeContent, children, invisible, color, variant, overlap, className, ...other } = props;
|
|
238
|
+
let count = typeof badgeContent === "number" ? badgeContent : Number(badgeContent);
|
|
239
|
+
|
|
240
|
+
// The badge must wrap the element it decorates so Designsystemet anchors it to
|
|
241
|
+
// that element's corner. Rendering it as a sibling put the badge on an empty
|
|
242
|
+
// box next to the icon, where it was clipped by the column header.
|
|
243
|
+
return (
|
|
244
|
+
<Badge.Position
|
|
245
|
+
{...(other as any)}
|
|
246
|
+
className={clsx("AfGrid-badge", className)}
|
|
247
|
+
placement="top-right"
|
|
248
|
+
overlap={overlap === "circular" ? "circle" : "rectangle"}
|
|
249
|
+
>
|
|
250
|
+
{children}
|
|
251
|
+
{!invisible && (
|
|
252
|
+
<Badge
|
|
253
|
+
aria-hidden
|
|
254
|
+
count={variant === "dot" || Number.isNaN(count) ? undefined : count}
|
|
255
|
+
data-color={color === "error" ? "danger" : color === "primary" ? "accent" : "neutral"}
|
|
256
|
+
/>
|
|
257
|
+
)}
|
|
258
|
+
</Badge.Position>
|
|
259
|
+
);
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
function BaseCircularProgress(props: GridSlotProps["baseCircularProgress"]) {
|
|
263
|
+
let { size, color: _color, ...other } = props;
|
|
264
|
+
let numericSize = typeof size === "number" ? size : 24;
|
|
265
|
+
|
|
266
|
+
return <Spinner {...(other as any)} aria-hidden data-size={numericSize <= 20 ? "xs" : "sm"} />;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
function BaseLinearProgress(props: GridSlotProps["baseLinearProgress"]) {
|
|
270
|
+
let { className, ...other } = props;
|
|
271
|
+
|
|
272
|
+
return <div {...(other as any)} role="progressbar" className={clsx("AfGrid-linearProgress", className)} />;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
function BaseSkeleton(props: GridSlotProps["baseSkeleton"]) {
|
|
276
|
+
let { variant, width, height, ...other } = props;
|
|
277
|
+
|
|
278
|
+
return (
|
|
279
|
+
<Skeleton {...(other as any)} variant={variant === "circular" ? "circle" : variant} width={width} height={height} />
|
|
280
|
+
);
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
function BaseDivider(props: GridSlotProps["baseDivider"]) {
|
|
284
|
+
return <Divider {...(props as any)} />;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
/**
|
|
288
|
+
* Designsystemet replacements for the grid's base components. Passed to the
|
|
289
|
+
* `slots` prop of the data grid, so the grid renders Designsystemet components
|
|
290
|
+
* instead of the MUI ones wherever it can.
|
|
291
|
+
*/
|
|
292
|
+
export const dsBaseSlots: Partial<GridSlotsComponent> = {
|
|
293
|
+
baseBadge: BaseBadge,
|
|
294
|
+
baseButton: BaseButton,
|
|
295
|
+
baseCheckbox: BaseCheckbox,
|
|
296
|
+
baseChip: BaseChip,
|
|
297
|
+
baseCircularProgress: BaseCircularProgress,
|
|
298
|
+
baseDivider: BaseDivider,
|
|
299
|
+
baseIconButton: BaseIconButton,
|
|
300
|
+
baseLinearProgress: BaseLinearProgress,
|
|
301
|
+
baseSelect: BaseSelect,
|
|
302
|
+
baseSelectOption: BaseSelectOption,
|
|
303
|
+
baseSkeleton: BaseSkeleton,
|
|
304
|
+
baseSwitch: BaseSwitch,
|
|
305
|
+
baseTextField: BaseTextField,
|
|
306
|
+
baseTooltip: BaseTooltip,
|
|
307
|
+
};
|