@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,233 +1,233 @@
1
- import { Button, Dropdown } from "@digdir/designsystemet-react";
2
- import {
3
- type GridApi,
4
- type GridExportMenuItemProps,
5
- gridVisibleColumnDefinitionsSelector,
6
- useGridApiContext,
7
- } from "@mui/x-data-grid-premium";
8
- import {
9
- ArrowsCirclepathIcon,
10
- Density1Icon,
11
- Density2Icon,
12
- Density3Icon,
13
- FileCsvIcon,
14
- FileExcelIcon,
15
- FilterIcon,
16
- MenuElipsisVerticalIcon,
17
- PlusIcon,
18
- TableIcon,
19
- } from "@navikt/aksel-icons";
20
- import { getLocalizedString } from "@olenbetong/appframe-core";
21
- import { type DataObject, exportOptionsFromDataObject } from "@olenbetong/appframe-data";
22
- import { useDataObject, useLoading, usePermissions } from "@olenbetong/appframe-react";
23
-
24
- import { openDataObjectReportWithProgress } from "../report-downloader/index.js";
25
- import { useAfGridContext } from "./AfGridContext.js";
26
- import { addRow } from "./editing.js";
27
- import type { AfGridApi } from "./useAfGridApi.js";
28
-
29
- export function GridToolbarAddButton({ onClick }: { onClick: () => void }) {
30
- return (
31
- <Button variant="tertiary" data-size="sm" onClick={onClick}>
32
- <PlusIcon aria-hidden />
33
- {getLocalizedString("Add")}
34
- </Button>
35
- );
36
- }
37
-
38
- export function GridToolbarAddIfAllowedButton({ disableInsert }: { disableInsert?: boolean }) {
39
- let dataObject = useDataObject();
40
- let apiRef = useGridApiContext();
41
- let permissions = usePermissions(dataObject);
42
-
43
- return permissions.allowInsert && !disableInsert ? (
44
- <GridToolbarAddButton onClick={() => addRow({ apiRef, dataObject })} />
45
- ) : null;
46
- }
47
-
48
- export function GridToolbarRefreshButton() {
49
- let dataObject = useDataObject();
50
- let isLoading = useLoading(dataObject);
51
-
52
- return (
53
- <Button variant="tertiary" data-size="sm" loading={isLoading} onClick={() => dataObject.refreshDataSource()}>
54
- {/* Designsystemet prepends the spinner rather than replacing the children, so
55
- the icon is hidden while loading to keep the button from changing width */}
56
- {!isLoading && <ArrowsCirclepathIcon aria-hidden />}
57
- {getLocalizedString("Refresh")}
58
- </Button>
59
- );
60
- }
61
-
62
- export function GridToolbarColumnsButton() {
63
- let { openColumnsPanel } = useAfGridContext();
64
-
65
- return (
66
- <Button variant="tertiary" data-size="sm" onClick={openColumnsPanel}>
67
- <TableIcon aria-hidden />
68
- {getLocalizedString("Columns")}
69
- </Button>
70
- );
71
- }
72
-
73
- /**
74
- * Opens the filter builder instead of the grid's own filter panel. The count
75
- * reflects the conditions in the builder's filter, not the header filters.
76
- */
77
- export function GridToolbarFilterButton() {
78
- let { openFilterBuilder, filterCount } = useAfGridContext();
79
-
80
- return (
81
- <Button variant="tertiary" data-size="sm" onClick={openFilterBuilder}>
82
- <FilterIcon aria-hidden />
83
- {getLocalizedString("Filter")}
84
- {filterCount > 0 ? ` (${filterCount})` : ""}
85
- </Button>
86
- );
87
- }
88
-
89
- export function GridToolbarResetLayoutButton() {
90
- let apiRef = useGridApiContext();
91
-
92
- function handleReset() {
93
- (apiRef.current as AfGridApi).resetLayout?.();
94
- }
95
-
96
- return (
97
- <Button variant="tertiary" data-size="sm" onClick={handleReset}>
98
- <ArrowsCirclepathIcon aria-hidden />
99
- {getLocalizedString("Reset layout")}
100
- </Button>
101
- );
102
- }
103
-
104
- function handleExportToExcel(
105
- apiRef: React.RefObject<GridApi>,
106
- dataObject: DataObject<any>,
107
- fileName?: string,
108
- title?: string,
109
- ) {
110
- let visibleColumns = gridVisibleColumnDefinitionsSelector(apiRef);
111
- openDataObjectReportWithProgress({
112
- dataObject: dataObject.getDataSourceId(),
113
- exportUrl: dataObject.getExportURL("xlsx"),
114
- fileName: fileName ?? dataObject.getDataSourceId(),
115
- format: "xlsx",
116
- options: exportOptionsFromDataObject(dataObject, {
117
- columns: visibleColumns
118
- .filter((c) => !!dataObject.getFieldDefinition(c.field))
119
- .map((column) => ({
120
- name: column.field,
121
- caption: column.headerName ?? column.field,
122
- })),
123
- maxRecords: -1,
124
- }),
125
- title,
126
- });
127
- }
128
-
129
- export type AfExcelExportOptions = { fileName?: string; title?: string };
130
- export type AfGridExcelExportOptions = GridExportMenuItemProps<AfExcelExportOptions>;
131
-
132
- export function AfGridExcelExportMenuItem({ options = {}, hideMenu }: AfGridExcelExportOptions) {
133
- let apiRef = useGridApiContext();
134
- let dataObject = useDataObject();
135
-
136
- return (
137
- <Dropdown.Item>
138
- <Dropdown.Button
139
- onClick={() => {
140
- handleExportToExcel(apiRef, dataObject, options.fileName, options.title);
141
- hideMenu?.();
142
- }}
143
- >
144
- <FileExcelIcon aria-hidden />
145
- {getLocalizedString("Download as Excel")}
146
- </Dropdown.Button>
147
- </Dropdown.Item>
148
- );
149
- }
150
-
151
- export function AfGridToolbarExcelExportButton({ fileName, title }: { fileName?: string; title?: string }) {
152
- let apiRef = useGridApiContext();
153
- let dataObject = useDataObject();
154
-
155
- return (
156
- <Button variant="tertiary" data-size="sm" onClick={() => handleExportToExcel(apiRef, dataObject, fileName, title)}>
157
- <FileExcelIcon aria-hidden />
158
- {getLocalizedString("Export")}
159
- </Button>
160
- );
161
- }
162
-
163
- export function GridToolbarMoreOptionsButton() {
164
- let apiRef = useGridApiContext();
165
-
166
- return (
167
- <Dropdown.TriggerContext>
168
- <Dropdown.Trigger variant="tertiary" icon data-size="sm" aria-label={getLocalizedString("More options")}>
169
- <MenuElipsisVerticalIcon aria-hidden />
170
- </Dropdown.Trigger>
171
- <Dropdown placement="bottom-end" data-size="sm">
172
- <Dropdown.List>
173
- <Dropdown.Item>
174
- <Dropdown.Button onClick={() => apiRef.current.exportDataAsCsv()}>
175
- <FileCsvIcon aria-hidden />
176
- {getLocalizedString("Export as CSV")}
177
- </Dropdown.Button>
178
- </Dropdown.Item>
179
- <AfGridExcelExportMenuItem />
180
- <Dropdown.Item>
181
- <Dropdown.Button onClick={() => apiRef.current.setDensity("compact")}>
182
- <Density1Icon aria-hidden />
183
- {getLocalizedString("Compact")}
184
- </Dropdown.Button>
185
- </Dropdown.Item>
186
- <Dropdown.Item>
187
- <Dropdown.Button onClick={() => apiRef.current.setDensity("standard")}>
188
- <Density2Icon aria-hidden />
189
- {getLocalizedString("Standard")}
190
- </Dropdown.Button>
191
- </Dropdown.Item>
192
- <Dropdown.Item>
193
- <Dropdown.Button onClick={() => apiRef.current.setDensity("comfortable")}>
194
- <Density3Icon aria-hidden />
195
- {getLocalizedString("Comfortable")}
196
- </Dropdown.Button>
197
- </Dropdown.Item>
198
- <Dropdown.Item>
199
- <Dropdown.Button onClick={() => (apiRef.current as AfGridApi).resetLayout?.()}>
200
- <ArrowsCirclepathIcon aria-hidden />
201
- {getLocalizedString("Reset layout")}
202
- </Dropdown.Button>
203
- </Dropdown.Item>
204
- </Dropdown.List>
205
- </Dropdown>
206
- </Dropdown.TriggerContext>
207
- );
208
- }
209
-
210
- export function AfGridToolbar({ children, disableInsert }: React.PropsWithChildren<{ disableInsert?: boolean }>) {
211
- return (
212
- <GridToolbarContainer>
213
- <GridToolbarAddIfAllowedButton disableInsert={disableInsert} />
214
- <GridToolbarColumnsButton />
215
- <GridToolbarFilterButton />
216
- <GridToolbarRefreshButton />
217
- <GridToolbarMoreOptionsButton />
218
- {children}
219
- </GridToolbarContainer>
220
- );
221
- }
222
-
223
- /**
224
- * The toolbar surface itself, for grids that compose their own set of buttons.
225
- * Replaces MUI's `DataGrid.Toolbar`.
226
- */
227
- export function GridToolbarContainer({ children, className, ...props }: React.ComponentProps<"div">) {
228
- return (
229
- <div {...props} className={className ? `AfGrid-toolbar ${className}` : "AfGrid-toolbar"}>
230
- {children}
231
- </div>
232
- );
233
- }
1
+ import { Button, Dropdown } from "@digdir/designsystemet-react";
2
+ import {
3
+ type GridApi,
4
+ type GridExportMenuItemProps,
5
+ gridVisibleColumnDefinitionsSelector,
6
+ useGridApiContext,
7
+ } from "@mui/x-data-grid-premium";
8
+ import {
9
+ ArrowsCirclepathIcon,
10
+ Density1Icon,
11
+ Density2Icon,
12
+ Density3Icon,
13
+ FileCsvIcon,
14
+ FileExcelIcon,
15
+ FilterIcon,
16
+ MenuElipsisVerticalIcon,
17
+ PlusIcon,
18
+ TableIcon,
19
+ } from "@navikt/aksel-icons";
20
+ import { type DataObject, exportOptionsFromDataObject } from "@olenbetong/appframe-data";
21
+ import { useDataObject, useLoading, usePermissions } from "@olenbetong/appframe-react";
22
+
23
+ import { openDataObjectReportWithProgress } from "../report-downloader/index.js";
24
+ import { useAfGridContext } from "./AfGridContext.js";
25
+ import { addRow } from "./editing.js";
26
+ import type { AfGridApi } from "./useAfGridApi.js";
27
+ import { getLocalizedString } from "../i18n.js";
28
+
29
+ export function GridToolbarAddButton({ onClick }: { onClick: () => void }) {
30
+ return (
31
+ <Button variant="tertiary" data-size="sm" onClick={onClick}>
32
+ <PlusIcon aria-hidden />
33
+ {getLocalizedString("Add")}
34
+ </Button>
35
+ );
36
+ }
37
+
38
+ export function GridToolbarAddIfAllowedButton({ disableInsert }: { disableInsert?: boolean }) {
39
+ let dataObject = useDataObject();
40
+ let apiRef = useGridApiContext();
41
+ let permissions = usePermissions(dataObject);
42
+
43
+ return permissions.allowInsert && !disableInsert ? (
44
+ <GridToolbarAddButton onClick={() => addRow({ apiRef, dataObject })} />
45
+ ) : null;
46
+ }
47
+
48
+ export function GridToolbarRefreshButton() {
49
+ let dataObject = useDataObject();
50
+ let isLoading = useLoading(dataObject);
51
+
52
+ return (
53
+ <Button variant="tertiary" data-size="sm" loading={isLoading} onClick={() => dataObject.refreshDataSource()}>
54
+ {/* Designsystemet prepends the spinner rather than replacing the children, so
55
+ the icon is hidden while loading to keep the button from changing width */}
56
+ {!isLoading && <ArrowsCirclepathIcon aria-hidden />}
57
+ {getLocalizedString("Refresh")}
58
+ </Button>
59
+ );
60
+ }
61
+
62
+ export function GridToolbarColumnsButton() {
63
+ let { openColumnsPanel } = useAfGridContext();
64
+
65
+ return (
66
+ <Button variant="tertiary" data-size="sm" onClick={openColumnsPanel}>
67
+ <TableIcon aria-hidden />
68
+ {getLocalizedString("Columns")}
69
+ </Button>
70
+ );
71
+ }
72
+
73
+ /**
74
+ * Opens the filter builder instead of the grid's own filter panel. The count
75
+ * reflects the conditions in the builder's filter, not the header filters.
76
+ */
77
+ export function GridToolbarFilterButton() {
78
+ let { openFilterBuilder, filterCount } = useAfGridContext();
79
+
80
+ return (
81
+ <Button variant="tertiary" data-size="sm" onClick={openFilterBuilder}>
82
+ <FilterIcon aria-hidden />
83
+ {getLocalizedString("Filter")}
84
+ {filterCount > 0 ? ` (${filterCount})` : ""}
85
+ </Button>
86
+ );
87
+ }
88
+
89
+ export function GridToolbarResetLayoutButton() {
90
+ let apiRef = useGridApiContext();
91
+
92
+ function handleReset() {
93
+ (apiRef.current as AfGridApi).resetLayout?.();
94
+ }
95
+
96
+ return (
97
+ <Button variant="tertiary" data-size="sm" onClick={handleReset}>
98
+ <ArrowsCirclepathIcon aria-hidden />
99
+ {getLocalizedString("Reset layout")}
100
+ </Button>
101
+ );
102
+ }
103
+
104
+ function handleExportToExcel(
105
+ apiRef: React.RefObject<GridApi>,
106
+ dataObject: DataObject<any>,
107
+ fileName?: string,
108
+ title?: string,
109
+ ) {
110
+ let visibleColumns = gridVisibleColumnDefinitionsSelector(apiRef);
111
+ openDataObjectReportWithProgress({
112
+ dataObject: dataObject.getDataSourceId(),
113
+ exportUrl: dataObject.getExportURL("xlsx"),
114
+ fileName: fileName ?? dataObject.getDataSourceId(),
115
+ format: "xlsx",
116
+ options: exportOptionsFromDataObject(dataObject, {
117
+ columns: visibleColumns
118
+ .filter((c) => !!dataObject.getFieldDefinition(c.field))
119
+ .map((column) => ({
120
+ name: column.field,
121
+ caption: column.headerName ?? column.field,
122
+ })),
123
+ maxRecords: -1,
124
+ }),
125
+ title,
126
+ });
127
+ }
128
+
129
+ export type AfExcelExportOptions = { fileName?: string; title?: string };
130
+ export type AfGridExcelExportOptions = GridExportMenuItemProps<AfExcelExportOptions>;
131
+
132
+ export function AfGridExcelExportMenuItem({ options = {}, hideMenu }: AfGridExcelExportOptions) {
133
+ let apiRef = useGridApiContext();
134
+ let dataObject = useDataObject();
135
+
136
+ return (
137
+ <Dropdown.Item>
138
+ <Dropdown.Button
139
+ onClick={() => {
140
+ handleExportToExcel(apiRef, dataObject, options.fileName, options.title);
141
+ hideMenu?.();
142
+ }}
143
+ >
144
+ <FileExcelIcon aria-hidden />
145
+ {getLocalizedString("Download as Excel")}
146
+ </Dropdown.Button>
147
+ </Dropdown.Item>
148
+ );
149
+ }
150
+
151
+ export function AfGridToolbarExcelExportButton({ fileName, title }: { fileName?: string; title?: string }) {
152
+ let apiRef = useGridApiContext();
153
+ let dataObject = useDataObject();
154
+
155
+ return (
156
+ <Button variant="tertiary" data-size="sm" onClick={() => handleExportToExcel(apiRef, dataObject, fileName, title)}>
157
+ <FileExcelIcon aria-hidden />
158
+ {getLocalizedString("Export")}
159
+ </Button>
160
+ );
161
+ }
162
+
163
+ export function GridToolbarMoreOptionsButton() {
164
+ let apiRef = useGridApiContext();
165
+
166
+ return (
167
+ <Dropdown.TriggerContext>
168
+ <Dropdown.Trigger variant="tertiary" icon data-size="sm" aria-label={getLocalizedString("More options")}>
169
+ <MenuElipsisVerticalIcon aria-hidden />
170
+ </Dropdown.Trigger>
171
+ <Dropdown placement="bottom-end" data-size="sm">
172
+ <Dropdown.List>
173
+ <Dropdown.Item>
174
+ <Dropdown.Button onClick={() => apiRef.current.exportDataAsCsv()}>
175
+ <FileCsvIcon aria-hidden />
176
+ {getLocalizedString("Export as CSV")}
177
+ </Dropdown.Button>
178
+ </Dropdown.Item>
179
+ <AfGridExcelExportMenuItem />
180
+ <Dropdown.Item>
181
+ <Dropdown.Button onClick={() => apiRef.current.setDensity("compact")}>
182
+ <Density1Icon aria-hidden />
183
+ {getLocalizedString("Compact")}
184
+ </Dropdown.Button>
185
+ </Dropdown.Item>
186
+ <Dropdown.Item>
187
+ <Dropdown.Button onClick={() => apiRef.current.setDensity("standard")}>
188
+ <Density2Icon aria-hidden />
189
+ {getLocalizedString("Standard")}
190
+ </Dropdown.Button>
191
+ </Dropdown.Item>
192
+ <Dropdown.Item>
193
+ <Dropdown.Button onClick={() => apiRef.current.setDensity("comfortable")}>
194
+ <Density3Icon aria-hidden />
195
+ {getLocalizedString("Comfortable")}
196
+ </Dropdown.Button>
197
+ </Dropdown.Item>
198
+ <Dropdown.Item>
199
+ <Dropdown.Button onClick={() => (apiRef.current as AfGridApi).resetLayout?.()}>
200
+ <ArrowsCirclepathIcon aria-hidden />
201
+ {getLocalizedString("Reset layout")}
202
+ </Dropdown.Button>
203
+ </Dropdown.Item>
204
+ </Dropdown.List>
205
+ </Dropdown>
206
+ </Dropdown.TriggerContext>
207
+ );
208
+ }
209
+
210
+ export function AfGridToolbar({ children, disableInsert }: React.PropsWithChildren<{ disableInsert?: boolean }>) {
211
+ return (
212
+ <GridToolbarContainer>
213
+ <GridToolbarAddIfAllowedButton disableInsert={disableInsert} />
214
+ <GridToolbarColumnsButton />
215
+ <GridToolbarFilterButton />
216
+ <GridToolbarRefreshButton />
217
+ <GridToolbarMoreOptionsButton />
218
+ {children}
219
+ </GridToolbarContainer>
220
+ );
221
+ }
222
+
223
+ /**
224
+ * The toolbar surface itself, for grids that compose their own set of buttons.
225
+ * Replaces MUI's `DataGrid.Toolbar`.
226
+ */
227
+ export function GridToolbarContainer({ children, className, ...props }: React.ComponentProps<"div">) {
228
+ return (
229
+ <div {...props} className={className ? `AfGrid-toolbar ${className}` : "AfGrid-toolbar"}>
230
+ {children}
231
+ </div>
232
+ );
233
+ }
@@ -1,100 +1,100 @@
1
- import { type GridApi, gridFocusCellSelector, gridVisibleColumnDefinitionsSelector } from "@mui/x-data-grid-premium";
2
- import { getLocalizedString } from "@olenbetong/appframe-core";
3
- import { type DataObject, uid } from "@olenbetong/appframe-data";
4
-
5
- import type React from "react";
6
-
7
- import type { AfGridApi } from "./useAfGridApi.js";
8
-
9
- /**
10
- * Starts a new row. With a new item row on the grid that row is focused and put
11
- * in edit mode; otherwise an unsaved row is appended to the data and edited there.
12
- */
13
- export function addRow<T extends { PrimKey: string }>({
14
- apiRef,
15
- dataObject,
16
- }: {
17
- apiRef: React.RefObject<GridApi | null>;
18
- dataObject: DataObject<T>;
19
- }) {
20
- if ((apiRef.current as AfGridApi | null)?.startNewItemRow?.()) {
21
- return;
22
- }
23
-
24
- let newRow = dataObject.newRow();
25
- let id = (newRow as any)[uid];
26
- apiRef.current?.updateRows([{ [uid]: id, id, isNew: true } as any]);
27
- apiRef.current?.startRowEditMode({ id });
28
-
29
- // Wait for the grid to render with the new row
30
- setTimeout(() => {
31
- apiRef.current?.scrollToIndexes({
32
- rowIndex: apiRef.current?.getRowsCount() - 1,
33
- });
34
-
35
- let visibleColumns = gridVisibleColumnDefinitionsSelector(apiRef);
36
- let firstEditable = visibleColumns.find((c) => c.editable === true);
37
-
38
- if (firstEditable) {
39
- apiRef.current?.setCellFocus(id, firstEditable.field);
40
- }
41
- });
42
- }
43
-
44
- export async function deleteRow<T extends { PrimKey: string }>({
45
- apiRef,
46
- dataObject,
47
- id,
48
- idField,
49
- }: {
50
- apiRef: React.RefObject<GridApi | null>;
51
- dataObject: DataObject<T>;
52
- id: string | number;
53
- idField: string;
54
- }) {
55
- try {
56
- if (!window.confirm(getLocalizedString("Are you sure you want to delete the selected row?"))) {
57
- return;
58
- }
59
-
60
- let focusBefore = gridFocusCellSelector(apiRef);
61
- let index = dataObject.findIndex((r) => (r as any)[idField] === id || (r as any)[uid] === id);
62
-
63
- if (index < 0) {
64
- alert(getLocalizedString("Row not found"));
65
- return;
66
- }
67
-
68
- await dataObject.deleteRow(index);
69
-
70
- let focusAfter = gridFocusCellSelector(apiRef);
71
-
72
- // Need to run this operation to prevent MUI errors
73
- apiRef.current?.updateRows([{ [uid]: id, id, _action: "delete" }]);
74
-
75
- if (!focusAfter || focusAfter.id === id) {
76
- if (dataObject.getDataLength() > 0) {
77
- let newIndex = Math.max(0, Math.min(dataObject.getDataLength() - 1, index - 1));
78
- let newId = (dataObject.getData(newIndex) as any)[uid];
79
- let newField = focusBefore?.field ?? gridVisibleColumnDefinitionsSelector(apiRef)[0]?.field;
80
-
81
- if (newId && newField) {
82
- apiRef.current?.setCellFocus(newId, newField);
83
- }
84
- }
85
- }
86
- } catch (error) {
87
- alert((error as Error).message ?? error);
88
- }
89
- }
90
-
91
- export function cancelEdit<T extends { PrimKey: string }>({
92
- apiRef,
93
- id,
94
- }: {
95
- apiRef: React.RefObject<GridApi>;
96
- dataObject: DataObject<T>;
97
- id: string | number;
98
- }) {
99
- apiRef.current.stopRowEditMode({ id, ignoreModifications: true });
100
- }
1
+ import { type GridApi, gridFocusCellSelector, gridVisibleColumnDefinitionsSelector } from "@mui/x-data-grid-premium";
2
+ import { type DataObject, uid } from "@olenbetong/appframe-data";
3
+
4
+ import type React from "react";
5
+
6
+ import type { AfGridApi } from "./useAfGridApi.js";
7
+ import { getLocalizedString } from "../i18n.js";
8
+
9
+ /**
10
+ * Starts a new row. With a new item row on the grid that row is focused and put
11
+ * in edit mode; otherwise an unsaved row is appended to the data and edited there.
12
+ */
13
+ export function addRow<T extends { PrimKey: string }>({
14
+ apiRef,
15
+ dataObject,
16
+ }: {
17
+ apiRef: React.RefObject<GridApi | null>;
18
+ dataObject: DataObject<T>;
19
+ }) {
20
+ if ((apiRef.current as AfGridApi | null)?.startNewItemRow?.()) {
21
+ return;
22
+ }
23
+
24
+ let newRow = dataObject.newRow();
25
+ let id = (newRow as any)[uid];
26
+ apiRef.current?.updateRows([{ [uid]: id, id, isNew: true } as any]);
27
+ apiRef.current?.startRowEditMode({ id });
28
+
29
+ // Wait for the grid to render with the new row
30
+ setTimeout(() => {
31
+ apiRef.current?.scrollToIndexes({
32
+ rowIndex: apiRef.current?.getRowsCount() - 1,
33
+ });
34
+
35
+ let visibleColumns = gridVisibleColumnDefinitionsSelector(apiRef);
36
+ let firstEditable = visibleColumns.find((c) => c.editable === true);
37
+
38
+ if (firstEditable) {
39
+ apiRef.current?.setCellFocus(id, firstEditable.field);
40
+ }
41
+ });
42
+ }
43
+
44
+ export async function deleteRow<T extends { PrimKey: string }>({
45
+ apiRef,
46
+ dataObject,
47
+ id,
48
+ idField,
49
+ }: {
50
+ apiRef: React.RefObject<GridApi | null>;
51
+ dataObject: DataObject<T>;
52
+ id: string | number;
53
+ idField: string;
54
+ }) {
55
+ try {
56
+ if (!window.confirm(getLocalizedString("Are you sure you want to delete the selected row?"))) {
57
+ return;
58
+ }
59
+
60
+ let focusBefore = gridFocusCellSelector(apiRef);
61
+ let index = dataObject.findIndex((r) => (r as any)[idField] === id || (r as any)[uid] === id);
62
+
63
+ if (index < 0) {
64
+ alert(getLocalizedString("Row not found"));
65
+ return;
66
+ }
67
+
68
+ await dataObject.deleteRow(index);
69
+
70
+ let focusAfter = gridFocusCellSelector(apiRef);
71
+
72
+ // Need to run this operation to prevent MUI errors
73
+ apiRef.current?.updateRows([{ [uid]: id, id, _action: "delete" }]);
74
+
75
+ if (!focusAfter || focusAfter.id === id) {
76
+ if (dataObject.getDataLength() > 0) {
77
+ let newIndex = Math.max(0, Math.min(dataObject.getDataLength() - 1, index - 1));
78
+ let newId = (dataObject.getData(newIndex) as any)[uid];
79
+ let newField = focusBefore?.field ?? gridVisibleColumnDefinitionsSelector(apiRef)[0]?.field;
80
+
81
+ if (newId && newField) {
82
+ apiRef.current?.setCellFocus(newId, newField);
83
+ }
84
+ }
85
+ }
86
+ } catch (error) {
87
+ alert((error as Error).message ?? error);
88
+ }
89
+ }
90
+
91
+ export function cancelEdit<T extends { PrimKey: string }>({
92
+ apiRef,
93
+ id,
94
+ }: {
95
+ apiRef: React.RefObject<GridApi>;
96
+ dataObject: DataObject<T>;
97
+ id: string | number;
98
+ }) {
99
+ apiRef.current.stopRowEditMode({ id, ignoreModifications: true });
100
+ }