@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.
Files changed (173) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/package.json +8 -7
  3. package/scripts/copyAssets.mjs +27 -55
  4. package/src/AfLookup/Lookup.css +129 -125
  5. package/src/AfLookup/Lookup.tsx +184 -162
  6. package/src/AfLookup/LookupCombobox.css +78 -78
  7. package/src/AfLookup/LookupCombobox.tsx +237 -237
  8. package/src/AfLookup/LookupEdit.tsx +130 -130
  9. package/src/AfLookup/LookupGrid.tsx +124 -124
  10. package/src/AfLookup/index.ts +5 -5
  11. package/src/autocomplete/Autocomplete.css +256 -256
  12. package/src/autocomplete/Autocomplete.tsx +320 -320
  13. package/src/autocomplete/AutocompleteFrame.tsx +168 -168
  14. package/src/autocomplete/Combobox.tsx +286 -286
  15. package/src/autocomplete/index.ts +4 -4
  16. package/src/autocomplete/types.ts +204 -204
  17. package/src/autocomplete/utils.ts +183 -183
  18. package/src/binding/BoundNumericTextField.tsx +102 -102
  19. package/src/binding/BoundTextField.tsx +49 -49
  20. package/src/binding/CancelButton.tsx +30 -30
  21. package/src/binding/CancelIconButton.tsx +30 -30
  22. package/src/binding/DataEditToolbar.tsx +92 -92
  23. package/src/binding/DeleteButton.tsx +35 -35
  24. package/src/binding/DeleteIconButton.tsx +35 -35
  25. package/src/binding/RefreshButton.tsx +31 -31
  26. package/src/binding/RefreshIconButton.tsx +33 -33
  27. package/src/binding/RefreshRowIconButton.tsx +33 -33
  28. package/src/binding/SaveButton.tsx +37 -37
  29. package/src/binding/SaveIconButton.tsx +38 -38
  30. package/src/container/Container.tsx +49 -49
  31. package/src/container/index.ts +1 -1
  32. package/src/cutoff/CutOffPicker.css +12 -0
  33. package/src/cutoff/CutOffPicker.tsx +165 -0
  34. package/src/cutoff/context.tsx +194 -0
  35. package/src/cutoff/dsCutOffDates.ts +21 -0
  36. package/src/cutoff/index.ts +4 -0
  37. package/src/cutoff/utils.test.ts +59 -0
  38. package/src/cutoff/utils.ts +276 -0
  39. package/src/filter/ChipListInput.tsx +79 -79
  40. package/src/filter/FieldFilterPanel.css +150 -150
  41. package/src/filter/FieldFilterPanel.tsx +309 -309
  42. package/src/filter/FilterBuilder.css +152 -152
  43. package/src/filter/FilterBuilder.test.tsx +153 -153
  44. package/src/filter/FilterBuilder.tsx +435 -435
  45. package/src/filter/FilterEditor.css +231 -231
  46. package/src/filter/FilterEditor.test.tsx +259 -259
  47. package/src/filter/FilterEditor.tsx +75 -74
  48. package/src/filter/FilterGroupEditor.tsx +160 -160
  49. package/src/filter/FilterNameDialog.css +22 -22
  50. package/src/filter/FilterNameDialog.tsx +81 -81
  51. package/src/filter/FilterRow.tsx +117 -117
  52. package/src/filter/FilterShareDialog.css +28 -28
  53. package/src/filter/FilterShareDialog.tsx +201 -201
  54. package/src/filter/FilterStringField.tsx +78 -77
  55. package/src/filter/FilterValueEditor.tsx +220 -220
  56. package/src/filter/SavedFilterTree.css +107 -107
  57. package/src/filter/SavedFilterTree.test.tsx +94 -94
  58. package/src/filter/SavedFilterTree.tsx +218 -222
  59. package/src/filter/fieldFilter.test.ts +158 -158
  60. package/src/filter/fieldFilter.ts +139 -139
  61. package/src/filter/index.ts +27 -27
  62. package/src/filter/types.ts +38 -38
  63. package/src/filter/useDistinctValues.test.ts +102 -102
  64. package/src/filter/useDistinctValues.ts +230 -230
  65. package/src/global.d.ts +11 -11
  66. package/src/grid/AfGridColumnsPanel.tsx +118 -118
  67. package/src/grid/AfGridContext.tsx +51 -51
  68. package/src/grid/AfGridError.tsx +46 -46
  69. package/src/grid/AfHeaderFilterCell.tsx +147 -151
  70. package/src/grid/AfHeaderFilterPanel.tsx +111 -111
  71. package/src/grid/GridEditLookup.css +12 -0
  72. package/src/grid/GridEditLookup.tsx +121 -0
  73. package/src/grid/Toolbar.tsx +233 -233
  74. package/src/grid/editing.ts +100 -100
  75. package/src/grid/filter.ts +78 -78
  76. package/src/grid/formatters.ts +48 -48
  77. package/src/grid/index.css +245 -245
  78. package/src/grid/index.tsx +489 -484
  79. package/src/grid/license.ts +48 -48
  80. package/src/grid/localization.ts +369 -369
  81. package/src/grid/slots/index.tsx +307 -307
  82. package/src/grid/slots/slots.css +64 -64
  83. package/src/grid/theme.tsx +138 -138
  84. package/src/grid/useAfColumns.tsx +371 -371
  85. package/src/grid/useAfCurrentIndex.ts +63 -63
  86. package/src/grid/useAfData.ts +20 -20
  87. package/src/grid/useAfFilter.ts +160 -160
  88. package/src/grid/useAfFilterFields.ts +55 -55
  89. package/src/grid/useAfGridApi.ts +71 -71
  90. package/src/grid/useAfKeyBindings.ts +36 -36
  91. package/src/grid/useAfNewItemRow.ts +258 -258
  92. package/src/grid/useAfPagination.ts +53 -53
  93. package/src/grid/useAfPersistedState.ts +230 -230
  94. package/src/grid/useAfRowEditModel.ts +145 -145
  95. package/src/grid/useAfRowGrouping.ts +47 -47
  96. package/src/grid/useAfServerAggregation.ts +145 -145
  97. package/src/grid/useAfSortModel.ts +84 -84
  98. package/src/i18n.ts +13 -0
  99. package/src/index.ts +14 -12
  100. package/src/input/InputAdornments.css +75 -75
  101. package/src/input/InputAdornments.tsx +102 -102
  102. package/src/input/index.ts +1 -1
  103. package/src/layout/AppMenu.tsx +74 -75
  104. package/src/layout/AppMenuDrawer.css +70 -70
  105. package/src/layout/AppMenuDrawer.tsx +122 -122
  106. package/src/layout/ErrorBoundary.tsx +162 -162
  107. package/src/layout/ResponsiveDialog.css +86 -0
  108. package/src/layout/ResponsiveDialog.tsx +55 -0
  109. package/src/layout/index.tsx +69 -68
  110. package/src/link/Link.tsx +23 -0
  111. package/src/link/index.ts +1 -0
  112. package/src/mdi/Mdi.css +138 -138
  113. package/src/mdi/Mdi.test.tsx +91 -87
  114. package/src/mdi/Mdi.tsx +141 -141
  115. package/src/mdi/MdiConfirmCloseDialog.tsx +47 -47
  116. package/src/mdi/MdiContext.tsx +59 -59
  117. package/src/mdi/MdiDocumentContext.tsx +60 -60
  118. package/src/mdi/MdiPanel.tsx +61 -61
  119. package/src/mdi/MdiRestore.test.tsx +86 -82
  120. package/src/mdi/MdiTab.tsx +30 -30
  121. package/src/mdi/controller.test.ts +382 -382
  122. package/src/mdi/controller.ts +656 -656
  123. package/src/mdi/dockviewHost.ts +132 -132
  124. package/src/mdi/fakeHost.ts +200 -200
  125. package/src/mdi/host.ts +44 -44
  126. package/src/mdi/ids.test.ts +20 -20
  127. package/src/mdi/ids.ts +18 -18
  128. package/src/mdi/index.ts +31 -31
  129. package/src/mdi/layoutRestore.test.ts +156 -156
  130. package/src/mdi/layoutRestore.ts +311 -311
  131. package/src/mdi/layoutSpec.test.ts +143 -143
  132. package/src/mdi/layoutSpec.ts +214 -214
  133. package/src/mdi/layoutStore.test.ts +93 -93
  134. package/src/mdi/layoutStore.ts +99 -99
  135. package/src/mdi/memorySettingsStore.ts +21 -21
  136. package/src/mdi/registry.ts +34 -34
  137. package/src/mdi/testTypes.ts +37 -37
  138. package/src/mdi/theme.ts +22 -22
  139. package/src/mdi/types.ts +214 -214
  140. package/src/page/Page.css +53 -53
  141. package/src/page/PageBlock.css +64 -64
  142. package/src/page/PageBlock.tsx +92 -92
  143. package/src/page/PageHeader.css +88 -88
  144. package/src/page/PageHeader.tsx +115 -116
  145. package/src/page/PageTitle.css +5 -0
  146. package/src/page/PageTitle.tsx +21 -0
  147. package/src/page/index.ts +4 -3
  148. package/src/paper/Paper.tsx +52 -52
  149. package/src/progress/LinearProgress.css +93 -93
  150. package/src/progress/LinearProgress.tsx +104 -104
  151. package/src/progress/index.ts +1 -1
  152. package/src/report-downloader/ReportDownloader.css +67 -67
  153. package/src/report-downloader/components/StatusItem.tsx +87 -86
  154. package/src/report-downloader/components/StatusList.tsx +28 -28
  155. package/src/report-downloader/index.ts +41 -41
  156. package/src/report-downloader/status.tsx +92 -92
  157. package/src/sortable/DropIndicator.css +51 -51
  158. package/src/sortable/DropIndicator.tsx +27 -27
  159. package/src/sortable/SortableItemList.css +21 -21
  160. package/src/sortable/SortableItemList.tsx +264 -264
  161. package/src/sortable/index.ts +8 -8
  162. package/src/sortable/reorderSortOrder.ts +126 -126
  163. package/src/sortable/sortOrder.ts +101 -101
  164. package/src/sortable/types.ts +9 -9
  165. package/src/sortable/useSortableContainer.ts +53 -53
  166. package/src/sortable/useSortableItem.ts +95 -95
  167. package/src/sortable/useSortableList.ts +117 -117
  168. package/src/test/happy-dom-document-class.ts +24 -24
  169. package/src/test/setup.ts +12 -12
  170. package/src/theme/useDsColorScheme.ts +53 -53
  171. package/tsconfig.build.json +9 -9
  172. package/tsconfig.json +8 -8
  173. 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
- createExpression,
6
- type FieldMetadata,
7
- type FilterExpression,
8
- getLocalizedString,
9
- } from "@olenbetong/appframe-core";
10
- import type { DataObject } from "@olenbetong/appframe-data";
11
- import { useState } from "react";
12
-
13
- import { InputAdornments, InputSlot } from "../input/index.js";
14
- import { useAfGridContext } from "./AfGridContext.js";
15
- import { AfHeaderFilterPanel } from "./AfHeaderFilterPanel.js";
16
- import { getSimpleValue, isSimpleFieldFilter, summarizeFieldFilter } from "../filter/fieldFilter.js";
17
- import { findFilterField } from "./useAfFilter.js";
18
- import type { AfGridColDef } from "./useAfColumns.js";
19
-
20
- export type AfHeaderFilterCellProps = GridRenderHeaderFilterProps & {
21
- dataObject: DataObject<any>;
22
- };
23
-
24
- /**
25
- * The contents of a header filter cell: an unlabelled input with a filter
26
- * button that opens the per-field filter panel.
27
- *
28
- * MUI keeps ownership of the cell itself (width, pinning, borders, roles and
29
- * keyboard navigation) — this only replaces what goes inside it.
30
- *
31
- * Note that the input deliberately does *not* drive MUI's header filter edit
32
- * mode from `onFocus`/`onBlur` the way MUI's own inputs do. The cell refocuses
33
- * itself in a layout effect whenever `hasFocus` or `isEditing` change, so
34
- * toggling edit mode on every blur means any mousedown that leaves the input
35
- * synchronously pulls focus back into it. That made it impossible to focus the
36
- * filter panel, and it cancelled column drags started from a header while the
37
- * input had focus (a `focus()` call during drag start aborts the drag).
38
- *
39
- * Nothing is lost by staying out of edit mode: MUI focuses the cell's
40
- * `tabindex="0"` element — this input — whenever the cell gains focus, so
41
- * typing and keyboard navigation still work.
42
- *
43
- * A single criterion taking one literal value is edited straight from the
44
- * input. Anything else (no criteria, a list, several criteria, a parameterless
45
- * operator) is shown as a read-only summary and edited in the panel.
46
- */
47
- export function AfHeaderFilterCell({ colDef, hasFocus, inputRef, dataObject }: AfHeaderFilterCellProps) {
48
- let { apiRef, filter, filterFields, getFieldCriteria, setFieldCriteria } = useAfGridContext();
49
- let [isPanelOpen, setPanelOpen] = useState(false);
50
-
51
- let fieldName = (colDef as AfGridColDef).filterColumn ?? colDef.field;
52
- let field = findFilterField(filterFields, fieldName);
53
-
54
- if (!field || colDef.filterable === false || colDef.type === "actions") {
55
- return <span className="AfGrid-headerFilterEmpty" />;
56
- }
57
-
58
- let expressions = getFieldCriteria(fieldName);
59
- let isSimple = isSimpleFieldFilter(expressions);
60
- let hasFilter = expressions.length > 0;
61
- let caption = colDef.headerName ?? colDef.field;
62
-
63
- function apply(next: FilterExpression[]) {
64
- setFieldCriteria(fieldName, next);
65
- }
66
-
67
- /**
68
- * MUI suppresses its refocus effect while its own header filter menu is
69
- * open, so the panel claims that flag for as long as it is open.
70
- */
71
- function handleOpen() {
72
- setPanelOpen(true);
73
- apiRef.current?.showHeaderFilterMenu(colDef.field);
74
- }
75
-
76
- function handleClose() {
77
- setPanelOpen(false);
78
- apiRef.current?.hideHeaderFilterMenu();
79
- }
80
-
81
- function handleChange(value: string) {
82
- if (!field) return;
83
-
84
- if (value === "") {
85
- apply([]);
86
-
87
- return;
88
- }
89
-
90
- // Typing into an empty cell starts a criterion with the field's default
91
- // operator, the same one the panel would offer.
92
- let expression = isSimple ? (expressions[0] as FilterExpression) : createExpression(field);
93
-
94
- apply([{ ...expression, value }]);
95
- }
96
-
97
- return (
98
- <Popover.TriggerContext>
99
- <InputAdornments
100
- className="AfGrid-headerFilterInput"
101
- data-size="sm"
102
- aria-label={getLocalizedString("Filter by {0}").replace("{0}", caption)}
103
- ref={inputRef as React.Ref<HTMLInputElement>}
104
- tabIndex={hasFocus ? 0 : -1}
105
- readOnly={hasFilter && !isSimple}
106
- value={isSimple || !hasFilter ? getSimpleValue(expressions) : summarizeFieldFilter(expressions, field)}
107
- onChange={(event) => handleChange(event.currentTarget.value)}
108
- >
109
- <InputSlot />
110
- {hasFilter && (
111
- <Button
112
- type="button"
113
- icon
114
- variant="tertiary"
115
- data-size="sm"
116
- tabIndex={-1}
117
- aria-label={getLocalizedString("Clear filter")}
118
- title={getLocalizedString("Clear filter")}
119
- onClick={() => apply([])}
120
- >
121
- <XMarkIcon aria-hidden />
122
- </Button>
123
- )}
124
- <Popover.Trigger
125
- type="button"
126
- icon
127
- variant="tertiary"
128
- data-size="sm"
129
- tabIndex={-1}
130
- className="AfGrid-headerFilterButton"
131
- data-active={hasFilter || undefined}
132
- aria-label={getLocalizedString("Filter options")}
133
- title={getLocalizedString("Filter options")}
134
- >
135
- {hasFilter ? <FunnelFillIcon aria-hidden /> : <FunnelIcon aria-hidden />}
136
- </Popover.Trigger>
137
- </InputAdornments>
138
- <AfHeaderFilterPanel
139
- open={isPanelOpen}
140
- onOpen={handleOpen}
141
- onClose={handleClose}
142
- caption={caption}
143
- field={field as FieldMetadata}
144
- dataObject={dataObject}
145
- filter={filter}
146
- expressions={expressions}
147
- onApply={apply}
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
- getLocalizedString,
8
- isCompleteExpression,
9
- } from "@olenbetong/appframe-core";
10
- import type { DataObject } from "@olenbetong/appframe-data";
11
- import { useEffect, useState } from "react";
12
-
13
- import { FieldFilterPanel } from "../filter/FieldFilterPanel.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
- }
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,12 @@
1
+ @layer ds {
2
+ .ObGridEditLookup-root {
3
+ display: flex;
4
+ width: 100%;
5
+ height: 100%;
6
+ }
7
+
8
+ .ObGridEditLookup-actions {
9
+ display: inline-flex;
10
+ align-items: center;
11
+ }
12
+ }
@@ -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
+ }