@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,145 +1,145 @@
|
|
|
1
|
-
import {
|
|
2
|
-
type DataGridPremiumProps as DataGridProps,
|
|
3
|
-
type GridApi,
|
|
4
|
-
type GridEventListener,
|
|
5
|
-
type GridRowId,
|
|
6
|
-
GridRowModes,
|
|
7
|
-
gridFocusCellSelector,
|
|
8
|
-
gridVisibleColumnFieldsSelector,
|
|
9
|
-
} from "@mui/x-data-grid-premium";
|
|
10
|
-
import { type DataObject, uid } from "@olenbetong/appframe-data";
|
|
11
|
-
import { setDataObjectField } from "@olenbetong/appframe-react";
|
|
12
|
-
|
|
13
|
-
import type React from "react";
|
|
14
|
-
import { useCallback, useEffect } from "react";
|
|
15
|
-
|
|
16
|
-
import { type AfNewItemRow, isNewItemRow } from "./useAfNewItemRow.js";
|
|
17
|
-
|
|
18
|
-
function localDateAsUtcDate(date: Date) {
|
|
19
|
-
const utcDate = new Date(date);
|
|
20
|
-
console.log("year", utcDate, utcDate.getUTCFullYear(), date.getFullYear());
|
|
21
|
-
utcDate.setUTCFullYear(date.getFullYear());
|
|
22
|
-
console.log("month", utcDate, utcDate.getUTCMonth(), date.getMonth());
|
|
23
|
-
utcDate.setUTCMonth(date.getMonth());
|
|
24
|
-
console.log("date", utcDate, utcDate.getUTCDate(), date.getDate());
|
|
25
|
-
utcDate.setUTCDate(date.getDate());
|
|
26
|
-
console.log("hours", utcDate, utcDate.getUTCHours(), date.getHours());
|
|
27
|
-
utcDate.setUTCHours(date.getHours());
|
|
28
|
-
console.log("done", utcDate);
|
|
29
|
-
|
|
30
|
-
return utcDate;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
export type AfRowEditModelProps<T extends Record<string, unknown> = Record<string, unknown>> = {
|
|
34
|
-
apiRef: React.RefObject<GridApi | null>;
|
|
35
|
-
dataObject: DataObject<T>;
|
|
36
|
-
idField: string;
|
|
37
|
-
disableEdit: boolean;
|
|
38
|
-
/** The new item row, when the grid renders one. Commits on that row are saved through it. */
|
|
39
|
-
newItemRow?: AfNewItemRow;
|
|
40
|
-
};
|
|
41
|
-
|
|
42
|
-
/**
|
|
43
|
-
* Binds a MUI DataGridPremium row editing model to a data object. Editing will not affect the
|
|
44
|
-
* data object until a save event is triggered. If saving fails, will attempt to go back
|
|
45
|
-
* into edit mode with the unsaved changes.
|
|
46
|
-
*/
|
|
47
|
-
export function useAfRowEditModel<T extends Record<string, unknown> = Record<string, unknown>>({
|
|
48
|
-
apiRef,
|
|
49
|
-
dataObject,
|
|
50
|
-
idField,
|
|
51
|
-
disableEdit,
|
|
52
|
-
newItemRow,
|
|
53
|
-
}: AfRowEditModelProps<T>): Partial<DataGridProps> {
|
|
54
|
-
let processRowUpdate = useCallback(
|
|
55
|
-
async (newRow: any, oldRow: any) => {
|
|
56
|
-
let { id, isNew, ...record } = newRow;
|
|
57
|
-
id = (record as any)[uid] ?? (record as any)[idField] ?? id;
|
|
58
|
-
|
|
59
|
-
if (isNewItemRow(id) && newItemRow) {
|
|
60
|
-
return newItemRow.save(record);
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
if (isNew) {
|
|
64
|
-
let savedRow = await dataObject.addRow(newRow);
|
|
65
|
-
if (savedRow) {
|
|
66
|
-
Object.assign(savedRow, { isNew: false });
|
|
67
|
-
return savedRow;
|
|
68
|
-
} else {
|
|
69
|
-
return oldRow;
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
let index = dataObject.findIndex((row) => (row as any)[uid] === id || (row as any)[idField] === id);
|
|
74
|
-
if (index < 0) {
|
|
75
|
-
throw Error(`Failed to find the row to save in the data object (${idField}=${id})`);
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
dataObject.setCurrentIndex(index);
|
|
79
|
-
for (let field in record as Partial<T>) {
|
|
80
|
-
if (dataObject.getFields(field)) {
|
|
81
|
-
let value = record[field];
|
|
82
|
-
if (value === undefined) continue;
|
|
83
|
-
if (value instanceof Date && value.getTime() !== (dataObject.currentRow(field) as Date | null)?.getTime()) {
|
|
84
|
-
value = localDateAsUtcDate(value);
|
|
85
|
-
}
|
|
86
|
-
setDataObjectField<T, keyof T>(dataObject, field, value);
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
let result = await dataObject.endEdit();
|
|
91
|
-
let savedNewRow = { id, isNew: false };
|
|
92
|
-
if (result === false) {
|
|
93
|
-
Object.assign(savedNewRow, dataObject.getData(index));
|
|
94
|
-
} else {
|
|
95
|
-
Object.assign(savedNewRow, result);
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
return savedNewRow;
|
|
99
|
-
},
|
|
100
|
-
[dataObject, idField, newItemRow],
|
|
101
|
-
);
|
|
102
|
-
|
|
103
|
-
useEffect(() => {
|
|
104
|
-
// The row added with addRow is not managed by data objects, but by the grid, so we need
|
|
105
|
-
// to remove it manually if editing is cancelled
|
|
106
|
-
const handleRowModesModelChange: GridEventListener<"rowModesModelChange"> = (model) => {
|
|
107
|
-
for (let id of Object.keys(model)) {
|
|
108
|
-
// The new item row is not in the data object; `useAfNewItemRow` handles it
|
|
109
|
-
if (isNewItemRow(id)) continue;
|
|
110
|
-
|
|
111
|
-
if (model[id].mode === GridRowModes.View && (model[id] as any)?.ignoreModifications === true) {
|
|
112
|
-
let row = apiRef.current?.getRow(id);
|
|
113
|
-
if (row?.isNew) {
|
|
114
|
-
let focusBefore = gridFocusCellSelector(apiRef);
|
|
115
|
-
|
|
116
|
-
apiRef.current?.updateRows([{ [uid]: id, id, _action: "delete" } as any]);
|
|
117
|
-
|
|
118
|
-
setTimeout(() => {
|
|
119
|
-
if (focusBefore && dataObject.getDataLength()) {
|
|
120
|
-
let lastRow = dataObject.getData(dataObject.getDataLength() - 1);
|
|
121
|
-
apiRef.current?.setCellFocus(lastRow[uid] as GridRowId, focusBefore.field);
|
|
122
|
-
} else {
|
|
123
|
-
apiRef.current?.setColumnHeaderFocus(gridVisibleColumnFieldsSelector(apiRef)[0]);
|
|
124
|
-
}
|
|
125
|
-
}, 1);
|
|
126
|
-
} else {
|
|
127
|
-
// MUI grid only reverts changes on editable fields, while for example lookups can have edited
|
|
128
|
-
// values that are not editable, so we need to manually revert those changes
|
|
129
|
-
let index = dataObject.findIndex((r) => (r as any)[uid] === id || (r as any)[idField] === id);
|
|
130
|
-
apiRef.current?.updateRows([{ [uid]: id, id, ...(dataObject.getData(index) as any) } as any]);
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
};
|
|
135
|
-
|
|
136
|
-
return apiRef.current?.subscribeEvent("rowModesModelChange", handleRowModesModelChange);
|
|
137
|
-
}, [dataObject, apiRef, idField]);
|
|
138
|
-
|
|
139
|
-
return disableEdit
|
|
140
|
-
? {}
|
|
141
|
-
: {
|
|
142
|
-
editMode: "row",
|
|
143
|
-
processRowUpdate,
|
|
144
|
-
};
|
|
145
|
-
}
|
|
1
|
+
import {
|
|
2
|
+
type DataGridPremiumProps as DataGridProps,
|
|
3
|
+
type GridApi,
|
|
4
|
+
type GridEventListener,
|
|
5
|
+
type GridRowId,
|
|
6
|
+
GridRowModes,
|
|
7
|
+
gridFocusCellSelector,
|
|
8
|
+
gridVisibleColumnFieldsSelector,
|
|
9
|
+
} from "@mui/x-data-grid-premium";
|
|
10
|
+
import { type DataObject, uid } from "@olenbetong/appframe-data";
|
|
11
|
+
import { setDataObjectField } from "@olenbetong/appframe-react";
|
|
12
|
+
|
|
13
|
+
import type React from "react";
|
|
14
|
+
import { useCallback, useEffect } from "react";
|
|
15
|
+
|
|
16
|
+
import { type AfNewItemRow, isNewItemRow } from "./useAfNewItemRow.js";
|
|
17
|
+
|
|
18
|
+
function localDateAsUtcDate(date: Date) {
|
|
19
|
+
const utcDate = new Date(date);
|
|
20
|
+
console.log("year", utcDate, utcDate.getUTCFullYear(), date.getFullYear());
|
|
21
|
+
utcDate.setUTCFullYear(date.getFullYear());
|
|
22
|
+
console.log("month", utcDate, utcDate.getUTCMonth(), date.getMonth());
|
|
23
|
+
utcDate.setUTCMonth(date.getMonth());
|
|
24
|
+
console.log("date", utcDate, utcDate.getUTCDate(), date.getDate());
|
|
25
|
+
utcDate.setUTCDate(date.getDate());
|
|
26
|
+
console.log("hours", utcDate, utcDate.getUTCHours(), date.getHours());
|
|
27
|
+
utcDate.setUTCHours(date.getHours());
|
|
28
|
+
console.log("done", utcDate);
|
|
29
|
+
|
|
30
|
+
return utcDate;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export type AfRowEditModelProps<T extends Record<string, unknown> = Record<string, unknown>> = {
|
|
34
|
+
apiRef: React.RefObject<GridApi | null>;
|
|
35
|
+
dataObject: DataObject<T>;
|
|
36
|
+
idField: string;
|
|
37
|
+
disableEdit: boolean;
|
|
38
|
+
/** The new item row, when the grid renders one. Commits on that row are saved through it. */
|
|
39
|
+
newItemRow?: AfNewItemRow;
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* Binds a MUI DataGridPremium row editing model to a data object. Editing will not affect the
|
|
44
|
+
* data object until a save event is triggered. If saving fails, will attempt to go back
|
|
45
|
+
* into edit mode with the unsaved changes.
|
|
46
|
+
*/
|
|
47
|
+
export function useAfRowEditModel<T extends Record<string, unknown> = Record<string, unknown>>({
|
|
48
|
+
apiRef,
|
|
49
|
+
dataObject,
|
|
50
|
+
idField,
|
|
51
|
+
disableEdit,
|
|
52
|
+
newItemRow,
|
|
53
|
+
}: AfRowEditModelProps<T>): Partial<DataGridProps> {
|
|
54
|
+
let processRowUpdate = useCallback(
|
|
55
|
+
async (newRow: any, oldRow: any) => {
|
|
56
|
+
let { id, isNew, ...record } = newRow;
|
|
57
|
+
id = (record as any)[uid] ?? (record as any)[idField] ?? id;
|
|
58
|
+
|
|
59
|
+
if (isNewItemRow(id) && newItemRow) {
|
|
60
|
+
return newItemRow.save(record);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
if (isNew) {
|
|
64
|
+
let savedRow = await dataObject.addRow(newRow);
|
|
65
|
+
if (savedRow) {
|
|
66
|
+
Object.assign(savedRow, { isNew: false });
|
|
67
|
+
return savedRow;
|
|
68
|
+
} else {
|
|
69
|
+
return oldRow;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
let index = dataObject.findIndex((row) => (row as any)[uid] === id || (row as any)[idField] === id);
|
|
74
|
+
if (index < 0) {
|
|
75
|
+
throw Error(`Failed to find the row to save in the data object (${idField}=${id})`);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
dataObject.setCurrentIndex(index);
|
|
79
|
+
for (let field in record as Partial<T>) {
|
|
80
|
+
if (dataObject.getFields(field)) {
|
|
81
|
+
let value = record[field];
|
|
82
|
+
if (value === undefined) continue;
|
|
83
|
+
if (value instanceof Date && value.getTime() !== (dataObject.currentRow(field) as Date | null)?.getTime()) {
|
|
84
|
+
value = localDateAsUtcDate(value);
|
|
85
|
+
}
|
|
86
|
+
setDataObjectField<T, keyof T>(dataObject, field, value);
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
let result = await dataObject.endEdit();
|
|
91
|
+
let savedNewRow = { id, isNew: false };
|
|
92
|
+
if (result === false) {
|
|
93
|
+
Object.assign(savedNewRow, dataObject.getData(index));
|
|
94
|
+
} else {
|
|
95
|
+
Object.assign(savedNewRow, result);
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
return savedNewRow;
|
|
99
|
+
},
|
|
100
|
+
[dataObject, idField, newItemRow],
|
|
101
|
+
);
|
|
102
|
+
|
|
103
|
+
useEffect(() => {
|
|
104
|
+
// The row added with addRow is not managed by data objects, but by the grid, so we need
|
|
105
|
+
// to remove it manually if editing is cancelled
|
|
106
|
+
const handleRowModesModelChange: GridEventListener<"rowModesModelChange"> = (model) => {
|
|
107
|
+
for (let id of Object.keys(model)) {
|
|
108
|
+
// The new item row is not in the data object; `useAfNewItemRow` handles it
|
|
109
|
+
if (isNewItemRow(id)) continue;
|
|
110
|
+
|
|
111
|
+
if (model[id].mode === GridRowModes.View && (model[id] as any)?.ignoreModifications === true) {
|
|
112
|
+
let row = apiRef.current?.getRow(id);
|
|
113
|
+
if (row?.isNew) {
|
|
114
|
+
let focusBefore = gridFocusCellSelector(apiRef);
|
|
115
|
+
|
|
116
|
+
apiRef.current?.updateRows([{ [uid]: id, id, _action: "delete" } as any]);
|
|
117
|
+
|
|
118
|
+
setTimeout(() => {
|
|
119
|
+
if (focusBefore && dataObject.getDataLength()) {
|
|
120
|
+
let lastRow = dataObject.getData(dataObject.getDataLength() - 1);
|
|
121
|
+
apiRef.current?.setCellFocus(lastRow[uid] as GridRowId, focusBefore.field);
|
|
122
|
+
} else {
|
|
123
|
+
apiRef.current?.setColumnHeaderFocus(gridVisibleColumnFieldsSelector(apiRef)[0]);
|
|
124
|
+
}
|
|
125
|
+
}, 1);
|
|
126
|
+
} else {
|
|
127
|
+
// MUI grid only reverts changes on editable fields, while for example lookups can have edited
|
|
128
|
+
// values that are not editable, so we need to manually revert those changes
|
|
129
|
+
let index = dataObject.findIndex((r) => (r as any)[uid] === id || (r as any)[idField] === id);
|
|
130
|
+
apiRef.current?.updateRows([{ [uid]: id, id, ...(dataObject.getData(index) as any) } as any]);
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
};
|
|
135
|
+
|
|
136
|
+
return apiRef.current?.subscribeEvent("rowModesModelChange", handleRowModesModelChange);
|
|
137
|
+
}, [dataObject, apiRef, idField]);
|
|
138
|
+
|
|
139
|
+
return disableEdit
|
|
140
|
+
? {}
|
|
141
|
+
: {
|
|
142
|
+
editMode: "row",
|
|
143
|
+
processRowUpdate,
|
|
144
|
+
};
|
|
145
|
+
}
|
|
@@ -1,47 +1,47 @@
|
|
|
1
|
-
import type { GridAggregationModel, GridInitialState, GridRowGroupingModel } from "@mui/x-data-grid-premium";
|
|
2
|
-
|
|
3
|
-
import { useState } from "react";
|
|
4
|
-
|
|
5
|
-
export type AfGridGroupingProps = {
|
|
6
|
-
aggregationModel: GridAggregationModel;
|
|
7
|
-
onAggregationModelChange: (model: GridAggregationModel) => void;
|
|
8
|
-
rowGroupingModel: GridRowGroupingModel;
|
|
9
|
-
onRowGroupingModelChange: (model: GridRowGroupingModel) => void;
|
|
10
|
-
};
|
|
11
|
-
|
|
12
|
-
export type AfGridGrouping = {
|
|
13
|
-
/**
|
|
14
|
-
* True while at least one column is grouped. The grid uses this to fall back
|
|
15
|
-
* to client side sorting, which row grouping requires.
|
|
16
|
-
*/
|
|
17
|
-
isGrouping: boolean;
|
|
18
|
-
gridProps: AfGridGroupingProps;
|
|
19
|
-
};
|
|
20
|
-
|
|
21
|
-
/**
|
|
22
|
-
* Holds the row grouping and aggregation models in component state so the grid
|
|
23
|
-
* knows when a grouping is active, and seeds them from the restored layout.
|
|
24
|
-
*
|
|
25
|
-
* Both features are computed on the client, over the rows the grid has been
|
|
26
|
-
* given. With a dynamically loading data object that is the current page only,
|
|
27
|
-
* so a grouped grid usually wants `maxRecords` high enough to hold the whole
|
|
28
|
-
* result, or `dynamicLoading` turned off.
|
|
29
|
-
*/
|
|
30
|
-
export function useAfRowGrouping(initialState: GridInitialState): AfGridGrouping {
|
|
31
|
-
let [rowGroupingModel, setRowGroupingModel] = useState<GridRowGroupingModel>(
|
|
32
|
-
() => initialState.rowGrouping?.model ?? [],
|
|
33
|
-
);
|
|
34
|
-
let [aggregationModel, setAggregationModel] = useState<GridAggregationModel>(
|
|
35
|
-
() => initialState.aggregation?.model ?? {},
|
|
36
|
-
);
|
|
37
|
-
|
|
38
|
-
return {
|
|
39
|
-
isGrouping: rowGroupingModel.length > 0,
|
|
40
|
-
gridProps: {
|
|
41
|
-
aggregationModel,
|
|
42
|
-
onAggregationModelChange: setAggregationModel,
|
|
43
|
-
rowGroupingModel,
|
|
44
|
-
onRowGroupingModelChange: setRowGroupingModel,
|
|
45
|
-
},
|
|
46
|
-
};
|
|
47
|
-
}
|
|
1
|
+
import type { GridAggregationModel, GridInitialState, GridRowGroupingModel } from "@mui/x-data-grid-premium";
|
|
2
|
+
|
|
3
|
+
import { useState } from "react";
|
|
4
|
+
|
|
5
|
+
export type AfGridGroupingProps = {
|
|
6
|
+
aggregationModel: GridAggregationModel;
|
|
7
|
+
onAggregationModelChange: (model: GridAggregationModel) => void;
|
|
8
|
+
rowGroupingModel: GridRowGroupingModel;
|
|
9
|
+
onRowGroupingModelChange: (model: GridRowGroupingModel) => void;
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
export type AfGridGrouping = {
|
|
13
|
+
/**
|
|
14
|
+
* True while at least one column is grouped. The grid uses this to fall back
|
|
15
|
+
* to client side sorting, which row grouping requires.
|
|
16
|
+
*/
|
|
17
|
+
isGrouping: boolean;
|
|
18
|
+
gridProps: AfGridGroupingProps;
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* Holds the row grouping and aggregation models in component state so the grid
|
|
23
|
+
* knows when a grouping is active, and seeds them from the restored layout.
|
|
24
|
+
*
|
|
25
|
+
* Both features are computed on the client, over the rows the grid has been
|
|
26
|
+
* given. With a dynamically loading data object that is the current page only,
|
|
27
|
+
* so a grouped grid usually wants `maxRecords` high enough to hold the whole
|
|
28
|
+
* result, or `dynamicLoading` turned off.
|
|
29
|
+
*/
|
|
30
|
+
export function useAfRowGrouping(initialState: GridInitialState): AfGridGrouping {
|
|
31
|
+
let [rowGroupingModel, setRowGroupingModel] = useState<GridRowGroupingModel>(
|
|
32
|
+
() => initialState.rowGrouping?.model ?? [],
|
|
33
|
+
);
|
|
34
|
+
let [aggregationModel, setAggregationModel] = useState<GridAggregationModel>(
|
|
35
|
+
() => initialState.aggregation?.model ?? {},
|
|
36
|
+
);
|
|
37
|
+
|
|
38
|
+
return {
|
|
39
|
+
isGrouping: rowGroupingModel.length > 0,
|
|
40
|
+
gridProps: {
|
|
41
|
+
aggregationModel,
|
|
42
|
+
onAggregationModelChange: setAggregationModel,
|
|
43
|
+
rowGroupingModel,
|
|
44
|
+
onRowGroupingModelChange: setRowGroupingModel,
|
|
45
|
+
},
|
|
46
|
+
};
|
|
47
|
+
}
|