@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
|
@@ -1,151 +1,147 @@
|
|
|
1
|
-
import { Button, Popover } from "@digdir/designsystemet-react";
|
|
2
|
-
import type { GridRenderHeaderFilterProps } from "@mui/x-data-grid-premium";
|
|
3
|
-
import { FunnelFillIcon, FunnelIcon, XMarkIcon } from "@navikt/aksel-icons";
|
|
4
|
-
import {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
} from "
|
|
10
|
-
import
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
*
|
|
26
|
-
*
|
|
27
|
-
*
|
|
28
|
-
*
|
|
29
|
-
*
|
|
30
|
-
*
|
|
31
|
-
*
|
|
32
|
-
*
|
|
33
|
-
*
|
|
34
|
-
*
|
|
35
|
-
*
|
|
36
|
-
*
|
|
37
|
-
*
|
|
38
|
-
*
|
|
39
|
-
*
|
|
40
|
-
*
|
|
41
|
-
*
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
let
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
aria-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
/>
|
|
149
|
-
</Popover.TriggerContext>
|
|
150
|
-
);
|
|
151
|
-
}
|
|
1
|
+
import { Button, Popover } from "@digdir/designsystemet-react";
|
|
2
|
+
import type { GridRenderHeaderFilterProps } from "@mui/x-data-grid-premium";
|
|
3
|
+
import { FunnelFillIcon, FunnelIcon, XMarkIcon } from "@navikt/aksel-icons";
|
|
4
|
+
import { createExpression, type FieldMetadata, type FilterExpression } from "@olenbetong/appframe-core";
|
|
5
|
+
import type { DataObject } from "@olenbetong/appframe-data";
|
|
6
|
+
import { useState } from "react";
|
|
7
|
+
|
|
8
|
+
import { InputAdornments, InputSlot } from "../input/index.js";
|
|
9
|
+
import { useAfGridContext } from "./AfGridContext.js";
|
|
10
|
+
import { AfHeaderFilterPanel } from "./AfHeaderFilterPanel.js";
|
|
11
|
+
import { getSimpleValue, isSimpleFieldFilter, summarizeFieldFilter } from "../filter/fieldFilter.js";
|
|
12
|
+
import { findFilterField } from "./useAfFilter.js";
|
|
13
|
+
import type { AfGridColDef } from "./useAfColumns.js";
|
|
14
|
+
import { getLocalizedString } from "../i18n.js";
|
|
15
|
+
|
|
16
|
+
export type AfHeaderFilterCellProps = GridRenderHeaderFilterProps & {
|
|
17
|
+
dataObject: DataObject<any>;
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* The contents of a header filter cell: an unlabelled input with a filter
|
|
22
|
+
* button that opens the per-field filter panel.
|
|
23
|
+
*
|
|
24
|
+
* MUI keeps ownership of the cell itself (width, pinning, borders, roles and
|
|
25
|
+
* keyboard navigation) — this only replaces what goes inside it.
|
|
26
|
+
*
|
|
27
|
+
* Note that the input deliberately does *not* drive MUI's header filter edit
|
|
28
|
+
* mode from `onFocus`/`onBlur` the way MUI's own inputs do. The cell refocuses
|
|
29
|
+
* itself in a layout effect whenever `hasFocus` or `isEditing` change, so
|
|
30
|
+
* toggling edit mode on every blur means any mousedown that leaves the input
|
|
31
|
+
* synchronously pulls focus back into it. That made it impossible to focus the
|
|
32
|
+
* filter panel, and it cancelled column drags started from a header while the
|
|
33
|
+
* input had focus (a `focus()` call during drag start aborts the drag).
|
|
34
|
+
*
|
|
35
|
+
* Nothing is lost by staying out of edit mode: MUI focuses the cell's
|
|
36
|
+
* `tabindex="0"` element — this input — whenever the cell gains focus, so
|
|
37
|
+
* typing and keyboard navigation still work.
|
|
38
|
+
*
|
|
39
|
+
* A single criterion taking one literal value is edited straight from the
|
|
40
|
+
* input. Anything else (no criteria, a list, several criteria, a parameterless
|
|
41
|
+
* operator) is shown as a read-only summary and edited in the panel.
|
|
42
|
+
*/
|
|
43
|
+
export function AfHeaderFilterCell({ colDef, hasFocus, inputRef, dataObject }: AfHeaderFilterCellProps) {
|
|
44
|
+
let { apiRef, filter, filterFields, getFieldCriteria, setFieldCriteria } = useAfGridContext();
|
|
45
|
+
let [isPanelOpen, setPanelOpen] = useState(false);
|
|
46
|
+
|
|
47
|
+
let fieldName = (colDef as AfGridColDef).filterColumn ?? colDef.field;
|
|
48
|
+
let field = findFilterField(filterFields, fieldName);
|
|
49
|
+
|
|
50
|
+
if (!field || colDef.filterable === false || colDef.type === "actions") {
|
|
51
|
+
return <span className="AfGrid-headerFilterEmpty" />;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
let expressions = getFieldCriteria(fieldName);
|
|
55
|
+
let isSimple = isSimpleFieldFilter(expressions);
|
|
56
|
+
let hasFilter = expressions.length > 0;
|
|
57
|
+
let caption = colDef.headerName ?? colDef.field;
|
|
58
|
+
|
|
59
|
+
function apply(next: FilterExpression[]) {
|
|
60
|
+
setFieldCriteria(fieldName, next);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* MUI suppresses its refocus effect while its own header filter menu is
|
|
65
|
+
* open, so the panel claims that flag for as long as it is open.
|
|
66
|
+
*/
|
|
67
|
+
function handleOpen() {
|
|
68
|
+
setPanelOpen(true);
|
|
69
|
+
apiRef.current?.showHeaderFilterMenu(colDef.field);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
function handleClose() {
|
|
73
|
+
setPanelOpen(false);
|
|
74
|
+
apiRef.current?.hideHeaderFilterMenu();
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
function handleChange(value: string) {
|
|
78
|
+
if (!field) return;
|
|
79
|
+
|
|
80
|
+
if (value === "") {
|
|
81
|
+
apply([]);
|
|
82
|
+
|
|
83
|
+
return;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
// Typing into an empty cell starts a criterion with the field's default
|
|
87
|
+
// operator, the same one the panel would offer.
|
|
88
|
+
let expression = isSimple ? (expressions[0] as FilterExpression) : createExpression(field);
|
|
89
|
+
|
|
90
|
+
apply([{ ...expression, value }]);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
return (
|
|
94
|
+
<Popover.TriggerContext>
|
|
95
|
+
<InputAdornments
|
|
96
|
+
className="AfGrid-headerFilterInput"
|
|
97
|
+
data-size="sm"
|
|
98
|
+
aria-label={getLocalizedString("Filter by {0}").replace("{0}", caption)}
|
|
99
|
+
ref={inputRef as React.Ref<HTMLInputElement>}
|
|
100
|
+
tabIndex={hasFocus ? 0 : -1}
|
|
101
|
+
readOnly={hasFilter && !isSimple}
|
|
102
|
+
value={isSimple || !hasFilter ? getSimpleValue(expressions) : summarizeFieldFilter(expressions, field)}
|
|
103
|
+
onChange={(event) => handleChange(event.currentTarget.value)}
|
|
104
|
+
>
|
|
105
|
+
<InputSlot />
|
|
106
|
+
{hasFilter && (
|
|
107
|
+
<Button
|
|
108
|
+
type="button"
|
|
109
|
+
icon
|
|
110
|
+
variant="tertiary"
|
|
111
|
+
data-size="sm"
|
|
112
|
+
tabIndex={-1}
|
|
113
|
+
aria-label={getLocalizedString("Clear filter")}
|
|
114
|
+
title={getLocalizedString("Clear filter")}
|
|
115
|
+
onClick={() => apply([])}
|
|
116
|
+
>
|
|
117
|
+
<XMarkIcon aria-hidden />
|
|
118
|
+
</Button>
|
|
119
|
+
)}
|
|
120
|
+
<Popover.Trigger
|
|
121
|
+
type="button"
|
|
122
|
+
icon
|
|
123
|
+
variant="tertiary"
|
|
124
|
+
data-size="sm"
|
|
125
|
+
tabIndex={-1}
|
|
126
|
+
className="AfGrid-headerFilterButton"
|
|
127
|
+
data-active={hasFilter || undefined}
|
|
128
|
+
aria-label={getLocalizedString("Filter options")}
|
|
129
|
+
title={getLocalizedString("Filter options")}
|
|
130
|
+
>
|
|
131
|
+
{hasFilter ? <FunnelFillIcon aria-hidden /> : <FunnelIcon aria-hidden />}
|
|
132
|
+
</Popover.Trigger>
|
|
133
|
+
</InputAdornments>
|
|
134
|
+
<AfHeaderFilterPanel
|
|
135
|
+
open={isPanelOpen}
|
|
136
|
+
onOpen={handleOpen}
|
|
137
|
+
onClose={handleClose}
|
|
138
|
+
caption={caption}
|
|
139
|
+
field={field as FieldMetadata}
|
|
140
|
+
dataObject={dataObject}
|
|
141
|
+
filter={filter}
|
|
142
|
+
expressions={expressions}
|
|
143
|
+
onApply={apply}
|
|
144
|
+
/>
|
|
145
|
+
</Popover.TriggerContext>
|
|
146
|
+
);
|
|
147
|
+
}
|
|
@@ -1,111 +1,111 @@
|
|
|
1
|
-
import { Button, Popover } from "@digdir/designsystemet-react";
|
|
2
|
-
import {
|
|
3
|
-
createExpression,
|
|
4
|
-
type FieldMetadata,
|
|
5
|
-
type FilterExpression,
|
|
6
|
-
type FilterTree,
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
} from "@olenbetong/appframe-
|
|
10
|
-
import
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
import {
|
|
14
|
-
|
|
15
|
-
export type AfHeaderFilterPanelProps = {
|
|
16
|
-
open: boolean;
|
|
17
|
-
/** Called when the popover trigger is activated while the panel is closed. */
|
|
18
|
-
onOpen: () => void;
|
|
19
|
-
onClose: () => void;
|
|
20
|
-
/** The column caption, used as the panel heading. */
|
|
21
|
-
caption: string;
|
|
22
|
-
field: FieldMetadata;
|
|
23
|
-
dataObject: DataObject<any>;
|
|
24
|
-
/** The whole grid filter, used to scope the distinct value list. */
|
|
25
|
-
filter: FilterTree;
|
|
26
|
-
/** The field's current top level criteria. */
|
|
27
|
-
expressions: FilterExpression[];
|
|
28
|
-
/** Called with the field's new criteria when the user applies the panel. */
|
|
29
|
-
onApply: (expressions: FilterExpression[]) => void;
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
/**
|
|
33
|
-
* A `FieldFilterPanel` in a popover, opened from a header filter cell. Must be
|
|
34
|
-
* rendered inside a `Popover.TriggerContext` together with the button that
|
|
35
|
-
* opens it.
|
|
36
|
-
*
|
|
37
|
-
* This adds the open/close lifecycle the standalone panel deliberately leaves
|
|
38
|
-
* out: edits are staged while the popover is open and only committed on apply,
|
|
39
|
-
* so dismissing it leaves the grid's filter untouched.
|
|
40
|
-
*/
|
|
41
|
-
export function AfHeaderFilterPanel({
|
|
42
|
-
open,
|
|
43
|
-
onOpen,
|
|
44
|
-
onClose,
|
|
45
|
-
caption,
|
|
46
|
-
field,
|
|
47
|
-
dataObject,
|
|
48
|
-
filter,
|
|
49
|
-
expressions,
|
|
50
|
-
onApply,
|
|
51
|
-
}: AfHeaderFilterPanelProps) {
|
|
52
|
-
let [draft, setDraft] = useState<FilterExpression[]>(expressions);
|
|
53
|
-
|
|
54
|
-
// Opening the panel discards anything left over from the last time it was
|
|
55
|
-
// dismissed without applying, and picks up criteria edited in the header
|
|
56
|
-
// input in the meantime. An empty field gets one blank criterion so there
|
|
57
|
-
// is always something to type into.
|
|
58
|
-
useEffect(() => {
|
|
59
|
-
if (!open) return;
|
|
60
|
-
|
|
61
|
-
setDraft(expressions.length > 0 ? expressions : [createExpression(field)]);
|
|
62
|
-
// Only reset when the panel opens — reacting to `expressions` as well
|
|
63
|
-
// would throw away the user's edits on every keystroke.
|
|
64
|
-
// oxlint-disable-next-line react-hooks/exhaustive-deps -- see above
|
|
65
|
-
}, [open]);
|
|
66
|
-
|
|
67
|
-
return (
|
|
68
|
-
<Popover
|
|
69
|
-
open={open}
|
|
70
|
-
placement="bottom-start"
|
|
71
|
-
className="AfGrid-headerFilterPanel"
|
|
72
|
-
data-size="sm"
|
|
73
|
-
onOpen={onOpen}
|
|
74
|
-
onClose={onClose}
|
|
75
|
-
>
|
|
76
|
-
{/*
|
|
77
|
-
* Mounting only while open keeps the distinct value query from running
|
|
78
|
-
* for every column in the grid at once.
|
|
79
|
-
*/}
|
|
80
|
-
{open && (
|
|
81
|
-
<FieldFilterPanel
|
|
82
|
-
field={field}
|
|
83
|
-
dataObject={dataObject}
|
|
84
|
-
filter={filter}
|
|
85
|
-
heading={caption}
|
|
86
|
-
value={draft}
|
|
87
|
-
onChange={setDraft}
|
|
88
|
-
>
|
|
89
|
-
<div className="ObFieldFilterPanel-actions">
|
|
90
|
-
<Button type="button" variant="tertiary" data-size="sm" onClick={() => setDraft([createExpression(field)])}>
|
|
91
|
-
{getLocalizedString("Clear")}
|
|
92
|
-
</Button>
|
|
93
|
-
<Button
|
|
94
|
-
type="button"
|
|
95
|
-
data-size="sm"
|
|
96
|
-
onClick={() => {
|
|
97
|
-
// A criterion the user never finished typing would be
|
|
98
|
-
// dropped by `pruneFilter` anyway, and keeping it would
|
|
99
|
-
// make the column look filtered when it is not.
|
|
100
|
-
onApply(draft.filter(isCompleteExpression));
|
|
101
|
-
onClose();
|
|
102
|
-
}}
|
|
103
|
-
>
|
|
104
|
-
{getLocalizedString("Apply")}
|
|
105
|
-
</Button>
|
|
106
|
-
</div>
|
|
107
|
-
</FieldFilterPanel>
|
|
108
|
-
)}
|
|
109
|
-
</Popover>
|
|
110
|
-
);
|
|
111
|
-
}
|
|
1
|
+
import { Button, Popover } from "@digdir/designsystemet-react";
|
|
2
|
+
import {
|
|
3
|
+
createExpression,
|
|
4
|
+
type FieldMetadata,
|
|
5
|
+
type FilterExpression,
|
|
6
|
+
type FilterTree,
|
|
7
|
+
isCompleteExpression,
|
|
8
|
+
} from "@olenbetong/appframe-core";
|
|
9
|
+
import type { DataObject } from "@olenbetong/appframe-data";
|
|
10
|
+
import { useEffect, useState } from "react";
|
|
11
|
+
|
|
12
|
+
import { FieldFilterPanel } from "../filter/FieldFilterPanel.js";
|
|
13
|
+
import { getLocalizedString } from "../i18n.js";
|
|
14
|
+
|
|
15
|
+
export type AfHeaderFilterPanelProps = {
|
|
16
|
+
open: boolean;
|
|
17
|
+
/** Called when the popover trigger is activated while the panel is closed. */
|
|
18
|
+
onOpen: () => void;
|
|
19
|
+
onClose: () => void;
|
|
20
|
+
/** The column caption, used as the panel heading. */
|
|
21
|
+
caption: string;
|
|
22
|
+
field: FieldMetadata;
|
|
23
|
+
dataObject: DataObject<any>;
|
|
24
|
+
/** The whole grid filter, used to scope the distinct value list. */
|
|
25
|
+
filter: FilterTree;
|
|
26
|
+
/** The field's current top level criteria. */
|
|
27
|
+
expressions: FilterExpression[];
|
|
28
|
+
/** Called with the field's new criteria when the user applies the panel. */
|
|
29
|
+
onApply: (expressions: FilterExpression[]) => void;
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* A `FieldFilterPanel` in a popover, opened from a header filter cell. Must be
|
|
34
|
+
* rendered inside a `Popover.TriggerContext` together with the button that
|
|
35
|
+
* opens it.
|
|
36
|
+
*
|
|
37
|
+
* This adds the open/close lifecycle the standalone panel deliberately leaves
|
|
38
|
+
* out: edits are staged while the popover is open and only committed on apply,
|
|
39
|
+
* so dismissing it leaves the grid's filter untouched.
|
|
40
|
+
*/
|
|
41
|
+
export function AfHeaderFilterPanel({
|
|
42
|
+
open,
|
|
43
|
+
onOpen,
|
|
44
|
+
onClose,
|
|
45
|
+
caption,
|
|
46
|
+
field,
|
|
47
|
+
dataObject,
|
|
48
|
+
filter,
|
|
49
|
+
expressions,
|
|
50
|
+
onApply,
|
|
51
|
+
}: AfHeaderFilterPanelProps) {
|
|
52
|
+
let [draft, setDraft] = useState<FilterExpression[]>(expressions);
|
|
53
|
+
|
|
54
|
+
// Opening the panel discards anything left over from the last time it was
|
|
55
|
+
// dismissed without applying, and picks up criteria edited in the header
|
|
56
|
+
// input in the meantime. An empty field gets one blank criterion so there
|
|
57
|
+
// is always something to type into.
|
|
58
|
+
useEffect(() => {
|
|
59
|
+
if (!open) return;
|
|
60
|
+
|
|
61
|
+
setDraft(expressions.length > 0 ? expressions : [createExpression(field)]);
|
|
62
|
+
// Only reset when the panel opens — reacting to `expressions` as well
|
|
63
|
+
// would throw away the user's edits on every keystroke.
|
|
64
|
+
// oxlint-disable-next-line react-hooks/exhaustive-deps -- see above
|
|
65
|
+
}, [open]);
|
|
66
|
+
|
|
67
|
+
return (
|
|
68
|
+
<Popover
|
|
69
|
+
open={open}
|
|
70
|
+
placement="bottom-start"
|
|
71
|
+
className="AfGrid-headerFilterPanel"
|
|
72
|
+
data-size="sm"
|
|
73
|
+
onOpen={onOpen}
|
|
74
|
+
onClose={onClose}
|
|
75
|
+
>
|
|
76
|
+
{/*
|
|
77
|
+
* Mounting only while open keeps the distinct value query from running
|
|
78
|
+
* for every column in the grid at once.
|
|
79
|
+
*/}
|
|
80
|
+
{open && (
|
|
81
|
+
<FieldFilterPanel
|
|
82
|
+
field={field}
|
|
83
|
+
dataObject={dataObject}
|
|
84
|
+
filter={filter}
|
|
85
|
+
heading={caption}
|
|
86
|
+
value={draft}
|
|
87
|
+
onChange={setDraft}
|
|
88
|
+
>
|
|
89
|
+
<div className="ObFieldFilterPanel-actions">
|
|
90
|
+
<Button type="button" variant="tertiary" data-size="sm" onClick={() => setDraft([createExpression(field)])}>
|
|
91
|
+
{getLocalizedString("Clear")}
|
|
92
|
+
</Button>
|
|
93
|
+
<Button
|
|
94
|
+
type="button"
|
|
95
|
+
data-size="sm"
|
|
96
|
+
onClick={() => {
|
|
97
|
+
// A criterion the user never finished typing would be
|
|
98
|
+
// dropped by `pruneFilter` anyway, and keeping it would
|
|
99
|
+
// make the column look filtered when it is not.
|
|
100
|
+
onApply(draft.filter(isCompleteExpression));
|
|
101
|
+
onClose();
|
|
102
|
+
}}
|
|
103
|
+
>
|
|
104
|
+
{getLocalizedString("Apply")}
|
|
105
|
+
</Button>
|
|
106
|
+
</div>
|
|
107
|
+
</FieldFilterPanel>
|
|
108
|
+
)}
|
|
109
|
+
</Popover>
|
|
110
|
+
);
|
|
111
|
+
}
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
import "./GridEditLookup.css";
|
|
2
|
+
|
|
3
|
+
import { Button } from "@digdir/designsystemet-react";
|
|
4
|
+
import { GridEditInputCell, type GridRenderEditCellParams } from "@mui/x-data-grid-premium";
|
|
5
|
+
import { MagnifyingGlassIcon, XMarkIcon } from "@navikt/aksel-icons";
|
|
6
|
+
import type { DataObject } from "@olenbetong/appframe-data";
|
|
7
|
+
import type { DistributiveOmit } from "@olenbetong/appframe-react";
|
|
8
|
+
import { useCallback, useEffect, useRef } from "react";
|
|
9
|
+
|
|
10
|
+
import { type AfLookupProps, useLookup } from "../AfLookup/Lookup.js";
|
|
11
|
+
import { getLocalizedString } from "../i18n.js";
|
|
12
|
+
|
|
13
|
+
export type GridEditLookupProps<
|
|
14
|
+
TBoundData extends Record<string, unknown>,
|
|
15
|
+
TLookupData extends Record<string, unknown>,
|
|
16
|
+
> = DistributiveOmit<AfLookupProps<TLookupData>, "value" | "onChange"> & {
|
|
17
|
+
dataObject: DataObject<TLookupData>;
|
|
18
|
+
/** The fields of the edited row that a picked item sets; non-editable columns are updated directly. */
|
|
19
|
+
getChanges: (selectedItem: TLookupData | null) => Partial<TBoundData>;
|
|
20
|
+
params: GridRenderEditCellParams;
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* A lookup as a grid cell editor: a read-only input with a search button that opens the
|
|
25
|
+
* lookup dialog anchored to the cell, and a clear button when the field is nullable. Give it
|
|
26
|
+
* to a column's `renderEditCell`. Equivalent of `GridEditLookup` in `@olenbetong/appframe-mui`.
|
|
27
|
+
*/
|
|
28
|
+
export function GridEditLookup<
|
|
29
|
+
TBoundData extends Record<string, unknown>,
|
|
30
|
+
TLookupData extends Record<string, unknown>,
|
|
31
|
+
>({ dataObject, getChanges, params, ...props }: GridEditLookupProps<TBoundData, TLookupData>) {
|
|
32
|
+
let getChangesRef = useRef(getChanges);
|
|
33
|
+
useEffect(() => {
|
|
34
|
+
getChangesRef.current = getChanges;
|
|
35
|
+
});
|
|
36
|
+
|
|
37
|
+
let handleChange = useCallback(
|
|
38
|
+
(item: TLookupData | null) => {
|
|
39
|
+
let changes = getChangesRef.current(item);
|
|
40
|
+
let { id, api } = params;
|
|
41
|
+
let nonEditableFields: Record<string, unknown> = {};
|
|
42
|
+
|
|
43
|
+
for (let key of Object.keys(changes)) {
|
|
44
|
+
let column = api.getColumn(key);
|
|
45
|
+
if (column) {
|
|
46
|
+
if (column.editable) {
|
|
47
|
+
api.setEditCellValue({ id, field: key, value: changes[key] });
|
|
48
|
+
} else {
|
|
49
|
+
nonEditableFields[key] = changes[key];
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
if (Object.keys(nonEditableFields).length > 0) {
|
|
55
|
+
api.updateRows([{ [af.data.uid]: id, id, ...nonEditableFields }]);
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
[params],
|
|
59
|
+
);
|
|
60
|
+
|
|
61
|
+
let getAnchorElement = useCallback(
|
|
62
|
+
() => params.api.getCellElement(params.id, params.field) ?? null,
|
|
63
|
+
[params.api, params.field, params.id],
|
|
64
|
+
);
|
|
65
|
+
|
|
66
|
+
let { inputId, dialog, anchorName, openDialog, onKeyDown } = useLookup<TLookupData>({
|
|
67
|
+
dataObject,
|
|
68
|
+
onChange: handleChange,
|
|
69
|
+
getAnchorElement,
|
|
70
|
+
...props,
|
|
71
|
+
});
|
|
72
|
+
|
|
73
|
+
return (
|
|
74
|
+
<div className="ObGridEditLookup-root" style={{ anchorName } as React.CSSProperties}>
|
|
75
|
+
<GridEditInputCell
|
|
76
|
+
fullWidth
|
|
77
|
+
slotProps={{
|
|
78
|
+
root: {
|
|
79
|
+
// @ts-expect-error: typed as HTMLElement, but it is the input
|
|
80
|
+
readOnly: true,
|
|
81
|
+
},
|
|
82
|
+
}}
|
|
83
|
+
onKeyDown={onKeyDown}
|
|
84
|
+
className="MuiDataGrid-editInputCell"
|
|
85
|
+
endAdornment={
|
|
86
|
+
<span className="ObGridEditLookup-actions">
|
|
87
|
+
{props.nullable && params.value && (
|
|
88
|
+
<Button
|
|
89
|
+
type="button"
|
|
90
|
+
variant="tertiary"
|
|
91
|
+
data-size="sm"
|
|
92
|
+
icon
|
|
93
|
+
title={getLocalizedString("Clear")}
|
|
94
|
+
onKeyDown={(evt) => evt.stopPropagation()}
|
|
95
|
+
onClick={(evt) => {
|
|
96
|
+
evt.stopPropagation();
|
|
97
|
+
handleChange(null);
|
|
98
|
+
document.getElementById(inputId)?.focus();
|
|
99
|
+
}}
|
|
100
|
+
>
|
|
101
|
+
<XMarkIcon aria-hidden />
|
|
102
|
+
</Button>
|
|
103
|
+
)}
|
|
104
|
+
<Button
|
|
105
|
+
type="button"
|
|
106
|
+
variant="tertiary"
|
|
107
|
+
data-size="sm"
|
|
108
|
+
icon
|
|
109
|
+
title={getLocalizedString("Search")}
|
|
110
|
+
onClick={() => openDialog()}
|
|
111
|
+
>
|
|
112
|
+
<MagnifyingGlassIcon aria-hidden />
|
|
113
|
+
</Button>
|
|
114
|
+
</span>
|
|
115
|
+
}
|
|
116
|
+
{...params}
|
|
117
|
+
/>
|
|
118
|
+
{dialog}
|
|
119
|
+
</div>
|
|
120
|
+
);
|
|
121
|
+
}
|