@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,258 +1,258 @@
|
|
|
1
|
-
import {
|
|
2
|
-
type DataGridPremiumProps as DataGridProps,
|
|
3
|
-
type GridApi,
|
|
4
|
-
type GridEventListener,
|
|
5
|
-
type GridPinnedRowsProp,
|
|
6
|
-
type GridRowId,
|
|
7
|
-
GridRowModes,
|
|
8
|
-
gridFocusCellSelector,
|
|
9
|
-
gridVisibleColumnDefinitionsSelector,
|
|
10
|
-
} from "@mui/x-data-grid-premium";
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import
|
|
19
|
-
|
|
20
|
-
/**
|
|
21
|
-
* Row id of the new item row. It never collides with a data row, whose id is
|
|
22
|
-
* either the data object's uid or the value of the id field.
|
|
23
|
-
*/
|
|
24
|
-
export const NEW_ITEM_ROW_ID = "AfGrid-newItemRow";
|
|
25
|
-
|
|
26
|
-
export const NEW_ITEM_ROW_CLASS = "AfGrid-newItemRow";
|
|
27
|
-
|
|
28
|
-
/**
|
|
29
|
-
* Where the new item row is shown. `none` turns it off, and the Add button falls
|
|
30
|
-
* back to appending an unsaved row to the data.
|
|
31
|
-
*/
|
|
32
|
-
export type AfGridNewItemRowPosition = "top" | "bottom" | "none";
|
|
33
|
-
|
|
34
|
-
export function isNewItemRow(id: GridRowId | null | undefined): boolean {
|
|
35
|
-
return id === NEW_ITEM_ROW_ID;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
export type useAfNewItemRowOptions = {
|
|
39
|
-
apiRef: React.RefObject<GridApi | null>;
|
|
40
|
-
dataObject: DataObject<any>;
|
|
41
|
-
position: AfGridNewItemRowPosition;
|
|
42
|
-
disableInsert?: boolean;
|
|
43
|
-
pinnedRows?: GridPinnedRowsProp;
|
|
44
|
-
getRowClassName?: DataGridProps["getRowClassName"];
|
|
45
|
-
};
|
|
46
|
-
|
|
47
|
-
export type AfNewItemRow = {
|
|
48
|
-
/** True when the row is rendered, i.e. inserting is allowed and it is not turned off */
|
|
49
|
-
enabled: boolean;
|
|
50
|
-
/**
|
|
51
|
-
* Saves the values the user entered in the new item row as a new record at
|
|
52
|
-
* index -1 on the data object. Returns the blank row the grid should show
|
|
53
|
-
* in the new item row afterwards. Throws if the save fails, so the grid keeps
|
|
54
|
-
* the row in edit mode with the entered values.
|
|
55
|
-
*/
|
|
56
|
-
save: (record: Record<string, unknown>) => Promise<Record<string, unknown>>;
|
|
57
|
-
/** Focuses the new item row and starts editing it. Returns false when the row is not rendered. */
|
|
58
|
-
start: () => boolean;
|
|
59
|
-
/** Props to spread onto the grid */
|
|
60
|
-
gridProps: Pick<DataGridProps, "pinnedRows" | "getRowClassName">;
|
|
61
|
-
/** Style for the grid root, carrying the overlay text as a CSS custom property */
|
|
62
|
-
rootStyle: React.CSSProperties;
|
|
63
|
-
};
|
|
64
|
-
|
|
65
|
-
/**
|
|
66
|
-
* A DevExpress-style new item row: a single non-data row pinned above or below
|
|
67
|
-
* the data, showing an overlay text until the user starts editing it. The row
|
|
68
|
-
* lives outside the data set, so sorting, filtering, paging and grouping leave
|
|
69
|
-
* it alone.
|
|
70
|
-
*
|
|
71
|
-
* When editing starts the data object's current index moves to -1, the
|
|
72
|
-
* framework's new record, so bound forms and child data objects follow. The
|
|
73
|
-
* entered values are only written to the data object when the row is
|
|
74
|
-
* committed, exactly like edits to existing rows.
|
|
75
|
-
*/
|
|
76
|
-
export function useAfNewItemRow({
|
|
77
|
-
apiRef,
|
|
78
|
-
dataObject,
|
|
79
|
-
position,
|
|
80
|
-
disableInsert,
|
|
81
|
-
pinnedRows: pinnedRowsProp,
|
|
82
|
-
getRowClassName: getRowClassNameProp,
|
|
83
|
-
}: useAfNewItemRowOptions): AfNewItemRow {
|
|
84
|
-
let { allowInsert } = usePermissions(dataObject);
|
|
85
|
-
let enabled = position !== "none" && allowInsert && !disableInsert;
|
|
86
|
-
// Bumped after a save, so the pinned row is replaced by a blank one
|
|
87
|
-
let [generation, setGeneration] = useState(0);
|
|
88
|
-
// The row that was current before editing started, restored when the edit is cancelled
|
|
89
|
-
let previousIndex = useRef(-1);
|
|
90
|
-
let wasEditing = useRef(false);
|
|
91
|
-
|
|
92
|
-
let row = useMemo(() => {
|
|
93
|
-
if (!enabled) return null;
|
|
94
|
-
// `getData(-1)` is a blank record with every field set to null
|
|
95
|
-
return { ...(dataObject.getData(-1) as Record<string, unknown>), [uid]: NEW_ITEM_ROW_ID, generation };
|
|
96
|
-
}, [enabled, dataObject, generation]);
|
|
97
|
-
|
|
98
|
-
let beginNewRecord = useCallback(() => {
|
|
99
|
-
if (dataObject.getCurrentIndex() !== -1) {
|
|
100
|
-
previousIndex.current = dataObject.getCurrentIndex();
|
|
101
|
-
dataObject.setCurrentIndex(-1);
|
|
102
|
-
}
|
|
103
|
-
}, [dataObject]);
|
|
104
|
-
|
|
105
|
-
let cancelNewRecord = useCallback(() => {
|
|
106
|
-
if (dataObject.getCurrentIndex() !== -1) return;
|
|
107
|
-
|
|
108
|
-
dataObject.cancelEdit();
|
|
109
|
-
|
|
110
|
-
let index = previousIndex.current;
|
|
111
|
-
if (index >= 0 && index < dataObject.getDataLength()) {
|
|
112
|
-
dataObject.setCurrentIndex(index);
|
|
113
|
-
}
|
|
114
|
-
}, [dataObject]);
|
|
115
|
-
|
|
116
|
-
let start = useCallback(() => {
|
|
117
|
-
let api = apiRef.current;
|
|
118
|
-
if (!enabled || !api) return false;
|
|
119
|
-
|
|
120
|
-
let visibleColumns = gridVisibleColumnDefinitionsSelector(apiRef);
|
|
121
|
-
let firstEditable = visibleColumns.find((c) => c.editable === true) ?? visibleColumns[0];
|
|
122
|
-
if (!firstEditable) return false;
|
|
123
|
-
|
|
124
|
-
api.setCellFocus(NEW_ITEM_ROW_ID, firstEditable.field);
|
|
125
|
-
if (api.getRowMode(NEW_ITEM_ROW_ID) !== GridRowModes.Edit) {
|
|
126
|
-
api.startRowEditMode({ id: NEW_ITEM_ROW_ID, fieldToFocus: firstEditable.field });
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
return true;
|
|
130
|
-
}, [apiRef, enabled]);
|
|
131
|
-
|
|
132
|
-
let save = useCallback(
|
|
133
|
-
async (record: Record<string, unknown>) => {
|
|
134
|
-
beginNewRecord();
|
|
135
|
-
|
|
136
|
-
for (let field in record) {
|
|
137
|
-
let value = record[field];
|
|
138
|
-
if (value === undefined || value === null) continue;
|
|
139
|
-
if (dataObject.getFields(field)) {
|
|
140
|
-
setDataObjectField(dataObject, field, value);
|
|
141
|
-
}
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
let blankRow = { ...(dataObject.getData(-1) as Record<string, unknown>), [uid]: NEW_ITEM_ROW_ID };
|
|
145
|
-
|
|
146
|
-
if (!dataObject.isDirty()) {
|
|
147
|
-
// Nothing was entered, so committing the row is the same as cancelling it
|
|
148
|
-
cancelNewRecord();
|
|
149
|
-
return blankRow;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
let focusBefore = gridFocusCellSelector(apiRef);
|
|
153
|
-
|
|
154
|
-
try {
|
|
155
|
-
await dataObject.endEdit();
|
|
156
|
-
} catch (error) {
|
|
157
|
-
// The framework keeps a failed new record in storage as an unsaved row.
|
|
158
|
-
// The grid keeps the draft in the new item row instead, so the unsaved
|
|
159
|
-
// row is dropped and the current index goes back to the new record.
|
|
160
|
-
if (dataObject.getCurrentIndex() >= 0 && dataObject.isNewRecord(dataObject.getCurrentIndex())) {
|
|
161
|
-
dataObject.cancelEdit();
|
|
162
|
-
}
|
|
163
|
-
// Not through `beginNewRecord`, which would record the row the framework
|
|
164
|
-
// landed on as the one to restore on cancel
|
|
165
|
-
dataObject.setCurrentIndex(-1);
|
|
166
|
-
throw error;
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
setGeneration((g) => g + 1);
|
|
170
|
-
|
|
171
|
-
// The created row is the current row now; move the focus there once the
|
|
172
|
-
// grid has rendered it, so the user can keep working from where it landed.
|
|
173
|
-
let createdIndex = dataObject.getCurrentIndex();
|
|
174
|
-
if (createdIndex >= 0 && focusBefore) {
|
|
175
|
-
let createdRow = dataObject.getData(createdIndex) as any;
|
|
176
|
-
let createdId: GridRowId = createdRow[uid];
|
|
177
|
-
setTimeout(() => {
|
|
178
|
-
let api = apiRef.current;
|
|
179
|
-
if (!api || !api.getRow(createdId)) return;
|
|
180
|
-
let rowIndex = api.getRowIndexRelativeToVisibleRows(createdId);
|
|
181
|
-
if (rowIndex >= 0) api.scrollToIndexes({ rowIndex });
|
|
182
|
-
api.setCellFocus(createdId, focusBefore.field);
|
|
183
|
-
});
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
return blankRow;
|
|
187
|
-
},
|
|
188
|
-
[apiRef, dataObject, beginNewRecord, cancelNewRecord],
|
|
189
|
-
);
|
|
190
|
-
|
|
191
|
-
useEffect(() => {
|
|
192
|
-
if (!enabled) return;
|
|
193
|
-
|
|
194
|
-
// Moves the data object to the new record when editing starts, whether the
|
|
195
|
-
// user started it or `start` did, and discards it when the edit is cancelled.
|
|
196
|
-
// A commit goes through `save` instead.
|
|
197
|
-
const handleRowModesModelChange: GridEventListener<"rowModesModelChange"> = (model) => {
|
|
198
|
-
let entry = model[NEW_ITEM_ROW_ID] as { mode: GridRowModes; ignoreModifications?: boolean } | undefined;
|
|
199
|
-
let isEditing = entry?.mode === GridRowModes.Edit;
|
|
200
|
-
|
|
201
|
-
if (isEditing && !wasEditing.current) {
|
|
202
|
-
beginNewRecord();
|
|
203
|
-
} else if (!isEditing && wasEditing.current && entry?.ignoreModifications === true) {
|
|
204
|
-
// Deferred until the grid has left edit mode and put the focus back on the
|
|
205
|
-
// cell, so that a bound current index moves the focus from a mounted cell
|
|
206
|
-
// instead of from an editor that is about to be unmounted.
|
|
207
|
-
setTimeout(cancelNewRecord);
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
wasEditing.current = isEditing;
|
|
211
|
-
};
|
|
212
|
-
|
|
213
|
-
return apiRef.current?.subscribeEvent("rowModesModelChange", handleRowModesModelChange);
|
|
214
|
-
}, [apiRef, enabled, beginNewRecord, cancelNewRecord]);
|
|
215
|
-
|
|
216
|
-
let pinnedRows = useMemo<GridPinnedRowsProp | undefined>(() => {
|
|
217
|
-
if (!row) return pinnedRowsProp;
|
|
218
|
-
|
|
219
|
-
// The new item row sits next to the data, inside any rows the consumer pinned
|
|
220
|
-
return {
|
|
221
|
-
top: position === "top" ? [...(pinnedRowsProp?.top ?? []), row] : pinnedRowsProp?.top,
|
|
222
|
-
bottom: position === "bottom" ? [row, ...(pinnedRowsProp?.bottom ?? [])] : pinnedRowsProp?.bottom,
|
|
223
|
-
};
|
|
224
|
-
}, [row, position, pinnedRowsProp]);
|
|
225
|
-
|
|
226
|
-
let getRowClassName = useCallback<NonNullable<DataGridProps["getRowClassName"]>>(
|
|
227
|
-
(params) => {
|
|
228
|
-
let className = getRowClassNameProp?.(params) ?? "";
|
|
229
|
-
return params.id === NEW_ITEM_ROW_ID ? `${className} ${NEW_ITEM_ROW_CLASS}`.trim() : className;
|
|
230
|
-
},
|
|
231
|
-
[getRowClassNameProp],
|
|
232
|
-
);
|
|
233
|
-
|
|
234
|
-
let rootStyle = useMemo<React.CSSProperties>(
|
|
235
|
-
() =>
|
|
236
|
-
({
|
|
237
|
-
// Read by the overlay's `content`, so the text is localized without a DOM node
|
|
238
|
-
"--AfGrid-newItemRowText": JSON.stringify(getLocalizedString("Click here to add a new row")),
|
|
239
|
-
}) as React.CSSProperties,
|
|
240
|
-
[],
|
|
241
|
-
);
|
|
242
|
-
|
|
243
|
-
useEffect(() => {
|
|
244
|
-
if (apiRef.current) {
|
|
245
|
-
(apiRef.current as AfGridApi).startNewItemRow = start;
|
|
246
|
-
}
|
|
247
|
-
}, [apiRef, start]);
|
|
248
|
-
|
|
249
|
-
return {
|
|
250
|
-
enabled,
|
|
251
|
-
save,
|
|
252
|
-
start,
|
|
253
|
-
gridProps: enabled
|
|
254
|
-
? { pinnedRows, getRowClassName }
|
|
255
|
-
: { pinnedRows: pinnedRowsProp, getRowClassName: getRowClassNameProp },
|
|
256
|
-
rootStyle,
|
|
257
|
-
};
|
|
258
|
-
}
|
|
1
|
+
import {
|
|
2
|
+
type DataGridPremiumProps as DataGridProps,
|
|
3
|
+
type GridApi,
|
|
4
|
+
type GridEventListener,
|
|
5
|
+
type GridPinnedRowsProp,
|
|
6
|
+
type GridRowId,
|
|
7
|
+
GridRowModes,
|
|
8
|
+
gridFocusCellSelector,
|
|
9
|
+
gridVisibleColumnDefinitionsSelector,
|
|
10
|
+
} from "@mui/x-data-grid-premium";
|
|
11
|
+
import { type DataObject, uid } from "@olenbetong/appframe-data";
|
|
12
|
+
import { setDataObjectField, usePermissions } from "@olenbetong/appframe-react";
|
|
13
|
+
|
|
14
|
+
import type React from "react";
|
|
15
|
+
import { useCallback, useEffect, useMemo, useRef, useState } from "react";
|
|
16
|
+
|
|
17
|
+
import type { AfGridApi } from "./useAfGridApi.js";
|
|
18
|
+
import { getLocalizedString } from "../i18n.js";
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* Row id of the new item row. It never collides with a data row, whose id is
|
|
22
|
+
* either the data object's uid or the value of the id field.
|
|
23
|
+
*/
|
|
24
|
+
export const NEW_ITEM_ROW_ID = "AfGrid-newItemRow";
|
|
25
|
+
|
|
26
|
+
export const NEW_ITEM_ROW_CLASS = "AfGrid-newItemRow";
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* Where the new item row is shown. `none` turns it off, and the Add button falls
|
|
30
|
+
* back to appending an unsaved row to the data.
|
|
31
|
+
*/
|
|
32
|
+
export type AfGridNewItemRowPosition = "top" | "bottom" | "none";
|
|
33
|
+
|
|
34
|
+
export function isNewItemRow(id: GridRowId | null | undefined): boolean {
|
|
35
|
+
return id === NEW_ITEM_ROW_ID;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export type useAfNewItemRowOptions = {
|
|
39
|
+
apiRef: React.RefObject<GridApi | null>;
|
|
40
|
+
dataObject: DataObject<any>;
|
|
41
|
+
position: AfGridNewItemRowPosition;
|
|
42
|
+
disableInsert?: boolean;
|
|
43
|
+
pinnedRows?: GridPinnedRowsProp;
|
|
44
|
+
getRowClassName?: DataGridProps["getRowClassName"];
|
|
45
|
+
};
|
|
46
|
+
|
|
47
|
+
export type AfNewItemRow = {
|
|
48
|
+
/** True when the row is rendered, i.e. inserting is allowed and it is not turned off */
|
|
49
|
+
enabled: boolean;
|
|
50
|
+
/**
|
|
51
|
+
* Saves the values the user entered in the new item row as a new record at
|
|
52
|
+
* index -1 on the data object. Returns the blank row the grid should show
|
|
53
|
+
* in the new item row afterwards. Throws if the save fails, so the grid keeps
|
|
54
|
+
* the row in edit mode with the entered values.
|
|
55
|
+
*/
|
|
56
|
+
save: (record: Record<string, unknown>) => Promise<Record<string, unknown>>;
|
|
57
|
+
/** Focuses the new item row and starts editing it. Returns false when the row is not rendered. */
|
|
58
|
+
start: () => boolean;
|
|
59
|
+
/** Props to spread onto the grid */
|
|
60
|
+
gridProps: Pick<DataGridProps, "pinnedRows" | "getRowClassName">;
|
|
61
|
+
/** Style for the grid root, carrying the overlay text as a CSS custom property */
|
|
62
|
+
rootStyle: React.CSSProperties;
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* A DevExpress-style new item row: a single non-data row pinned above or below
|
|
67
|
+
* the data, showing an overlay text until the user starts editing it. The row
|
|
68
|
+
* lives outside the data set, so sorting, filtering, paging and grouping leave
|
|
69
|
+
* it alone.
|
|
70
|
+
*
|
|
71
|
+
* When editing starts the data object's current index moves to -1, the
|
|
72
|
+
* framework's new record, so bound forms and child data objects follow. The
|
|
73
|
+
* entered values are only written to the data object when the row is
|
|
74
|
+
* committed, exactly like edits to existing rows.
|
|
75
|
+
*/
|
|
76
|
+
export function useAfNewItemRow({
|
|
77
|
+
apiRef,
|
|
78
|
+
dataObject,
|
|
79
|
+
position,
|
|
80
|
+
disableInsert,
|
|
81
|
+
pinnedRows: pinnedRowsProp,
|
|
82
|
+
getRowClassName: getRowClassNameProp,
|
|
83
|
+
}: useAfNewItemRowOptions): AfNewItemRow {
|
|
84
|
+
let { allowInsert } = usePermissions(dataObject);
|
|
85
|
+
let enabled = position !== "none" && allowInsert && !disableInsert;
|
|
86
|
+
// Bumped after a save, so the pinned row is replaced by a blank one
|
|
87
|
+
let [generation, setGeneration] = useState(0);
|
|
88
|
+
// The row that was current before editing started, restored when the edit is cancelled
|
|
89
|
+
let previousIndex = useRef(-1);
|
|
90
|
+
let wasEditing = useRef(false);
|
|
91
|
+
|
|
92
|
+
let row = useMemo(() => {
|
|
93
|
+
if (!enabled) return null;
|
|
94
|
+
// `getData(-1)` is a blank record with every field set to null
|
|
95
|
+
return { ...(dataObject.getData(-1) as Record<string, unknown>), [uid]: NEW_ITEM_ROW_ID, generation };
|
|
96
|
+
}, [enabled, dataObject, generation]);
|
|
97
|
+
|
|
98
|
+
let beginNewRecord = useCallback(() => {
|
|
99
|
+
if (dataObject.getCurrentIndex() !== -1) {
|
|
100
|
+
previousIndex.current = dataObject.getCurrentIndex();
|
|
101
|
+
dataObject.setCurrentIndex(-1);
|
|
102
|
+
}
|
|
103
|
+
}, [dataObject]);
|
|
104
|
+
|
|
105
|
+
let cancelNewRecord = useCallback(() => {
|
|
106
|
+
if (dataObject.getCurrentIndex() !== -1) return;
|
|
107
|
+
|
|
108
|
+
dataObject.cancelEdit();
|
|
109
|
+
|
|
110
|
+
let index = previousIndex.current;
|
|
111
|
+
if (index >= 0 && index < dataObject.getDataLength()) {
|
|
112
|
+
dataObject.setCurrentIndex(index);
|
|
113
|
+
}
|
|
114
|
+
}, [dataObject]);
|
|
115
|
+
|
|
116
|
+
let start = useCallback(() => {
|
|
117
|
+
let api = apiRef.current;
|
|
118
|
+
if (!enabled || !api) return false;
|
|
119
|
+
|
|
120
|
+
let visibleColumns = gridVisibleColumnDefinitionsSelector(apiRef);
|
|
121
|
+
let firstEditable = visibleColumns.find((c) => c.editable === true) ?? visibleColumns[0];
|
|
122
|
+
if (!firstEditable) return false;
|
|
123
|
+
|
|
124
|
+
api.setCellFocus(NEW_ITEM_ROW_ID, firstEditable.field);
|
|
125
|
+
if (api.getRowMode(NEW_ITEM_ROW_ID) !== GridRowModes.Edit) {
|
|
126
|
+
api.startRowEditMode({ id: NEW_ITEM_ROW_ID, fieldToFocus: firstEditable.field });
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
return true;
|
|
130
|
+
}, [apiRef, enabled]);
|
|
131
|
+
|
|
132
|
+
let save = useCallback(
|
|
133
|
+
async (record: Record<string, unknown>) => {
|
|
134
|
+
beginNewRecord();
|
|
135
|
+
|
|
136
|
+
for (let field in record) {
|
|
137
|
+
let value = record[field];
|
|
138
|
+
if (value === undefined || value === null) continue;
|
|
139
|
+
if (dataObject.getFields(field)) {
|
|
140
|
+
setDataObjectField(dataObject, field, value);
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
let blankRow = { ...(dataObject.getData(-1) as Record<string, unknown>), [uid]: NEW_ITEM_ROW_ID };
|
|
145
|
+
|
|
146
|
+
if (!dataObject.isDirty()) {
|
|
147
|
+
// Nothing was entered, so committing the row is the same as cancelling it
|
|
148
|
+
cancelNewRecord();
|
|
149
|
+
return blankRow;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
let focusBefore = gridFocusCellSelector(apiRef);
|
|
153
|
+
|
|
154
|
+
try {
|
|
155
|
+
await dataObject.endEdit();
|
|
156
|
+
} catch (error) {
|
|
157
|
+
// The framework keeps a failed new record in storage as an unsaved row.
|
|
158
|
+
// The grid keeps the draft in the new item row instead, so the unsaved
|
|
159
|
+
// row is dropped and the current index goes back to the new record.
|
|
160
|
+
if (dataObject.getCurrentIndex() >= 0 && dataObject.isNewRecord(dataObject.getCurrentIndex())) {
|
|
161
|
+
dataObject.cancelEdit();
|
|
162
|
+
}
|
|
163
|
+
// Not through `beginNewRecord`, which would record the row the framework
|
|
164
|
+
// landed on as the one to restore on cancel
|
|
165
|
+
dataObject.setCurrentIndex(-1);
|
|
166
|
+
throw error;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
setGeneration((g) => g + 1);
|
|
170
|
+
|
|
171
|
+
// The created row is the current row now; move the focus there once the
|
|
172
|
+
// grid has rendered it, so the user can keep working from where it landed.
|
|
173
|
+
let createdIndex = dataObject.getCurrentIndex();
|
|
174
|
+
if (createdIndex >= 0 && focusBefore) {
|
|
175
|
+
let createdRow = dataObject.getData(createdIndex) as any;
|
|
176
|
+
let createdId: GridRowId = createdRow[uid];
|
|
177
|
+
setTimeout(() => {
|
|
178
|
+
let api = apiRef.current;
|
|
179
|
+
if (!api || !api.getRow(createdId)) return;
|
|
180
|
+
let rowIndex = api.getRowIndexRelativeToVisibleRows(createdId);
|
|
181
|
+
if (rowIndex >= 0) api.scrollToIndexes({ rowIndex });
|
|
182
|
+
api.setCellFocus(createdId, focusBefore.field);
|
|
183
|
+
});
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
return blankRow;
|
|
187
|
+
},
|
|
188
|
+
[apiRef, dataObject, beginNewRecord, cancelNewRecord],
|
|
189
|
+
);
|
|
190
|
+
|
|
191
|
+
useEffect(() => {
|
|
192
|
+
if (!enabled) return;
|
|
193
|
+
|
|
194
|
+
// Moves the data object to the new record when editing starts, whether the
|
|
195
|
+
// user started it or `start` did, and discards it when the edit is cancelled.
|
|
196
|
+
// A commit goes through `save` instead.
|
|
197
|
+
const handleRowModesModelChange: GridEventListener<"rowModesModelChange"> = (model) => {
|
|
198
|
+
let entry = model[NEW_ITEM_ROW_ID] as { mode: GridRowModes; ignoreModifications?: boolean } | undefined;
|
|
199
|
+
let isEditing = entry?.mode === GridRowModes.Edit;
|
|
200
|
+
|
|
201
|
+
if (isEditing && !wasEditing.current) {
|
|
202
|
+
beginNewRecord();
|
|
203
|
+
} else if (!isEditing && wasEditing.current && entry?.ignoreModifications === true) {
|
|
204
|
+
// Deferred until the grid has left edit mode and put the focus back on the
|
|
205
|
+
// cell, so that a bound current index moves the focus from a mounted cell
|
|
206
|
+
// instead of from an editor that is about to be unmounted.
|
|
207
|
+
setTimeout(cancelNewRecord);
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
wasEditing.current = isEditing;
|
|
211
|
+
};
|
|
212
|
+
|
|
213
|
+
return apiRef.current?.subscribeEvent("rowModesModelChange", handleRowModesModelChange);
|
|
214
|
+
}, [apiRef, enabled, beginNewRecord, cancelNewRecord]);
|
|
215
|
+
|
|
216
|
+
let pinnedRows = useMemo<GridPinnedRowsProp | undefined>(() => {
|
|
217
|
+
if (!row) return pinnedRowsProp;
|
|
218
|
+
|
|
219
|
+
// The new item row sits next to the data, inside any rows the consumer pinned
|
|
220
|
+
return {
|
|
221
|
+
top: position === "top" ? [...(pinnedRowsProp?.top ?? []), row] : pinnedRowsProp?.top,
|
|
222
|
+
bottom: position === "bottom" ? [row, ...(pinnedRowsProp?.bottom ?? [])] : pinnedRowsProp?.bottom,
|
|
223
|
+
};
|
|
224
|
+
}, [row, position, pinnedRowsProp]);
|
|
225
|
+
|
|
226
|
+
let getRowClassName = useCallback<NonNullable<DataGridProps["getRowClassName"]>>(
|
|
227
|
+
(params) => {
|
|
228
|
+
let className = getRowClassNameProp?.(params) ?? "";
|
|
229
|
+
return params.id === NEW_ITEM_ROW_ID ? `${className} ${NEW_ITEM_ROW_CLASS}`.trim() : className;
|
|
230
|
+
},
|
|
231
|
+
[getRowClassNameProp],
|
|
232
|
+
);
|
|
233
|
+
|
|
234
|
+
let rootStyle = useMemo<React.CSSProperties>(
|
|
235
|
+
() =>
|
|
236
|
+
({
|
|
237
|
+
// Read by the overlay's `content`, so the text is localized without a DOM node
|
|
238
|
+
"--AfGrid-newItemRowText": JSON.stringify(getLocalizedString("Click here to add a new row")),
|
|
239
|
+
}) as React.CSSProperties,
|
|
240
|
+
[],
|
|
241
|
+
);
|
|
242
|
+
|
|
243
|
+
useEffect(() => {
|
|
244
|
+
if (apiRef.current) {
|
|
245
|
+
(apiRef.current as AfGridApi).startNewItemRow = start;
|
|
246
|
+
}
|
|
247
|
+
}, [apiRef, start]);
|
|
248
|
+
|
|
249
|
+
return {
|
|
250
|
+
enabled,
|
|
251
|
+
save,
|
|
252
|
+
start,
|
|
253
|
+
gridProps: enabled
|
|
254
|
+
? { pinnedRows, getRowClassName }
|
|
255
|
+
: { pinnedRows: pinnedRowsProp, getRowClassName: getRowClassNameProp },
|
|
256
|
+
rootStyle,
|
|
257
|
+
};
|
|
258
|
+
}
|
|
@@ -1,53 +1,53 @@
|
|
|
1
|
-
import type { DataGridPremiumProps, GridPaginationModel } from "@mui/x-data-grid-premium";
|
|
2
|
-
import type { DataObject } from "@olenbetong/appframe-data";
|
|
3
|
-
import { useDataLength, usePaging, useParameter } from "@olenbetong/appframe-react";
|
|
4
|
-
|
|
5
|
-
import { useMemo } from "react";
|
|
6
|
-
|
|
7
|
-
/**
|
|
8
|
-
* If the data object is dynamic, returns the data grid properties needed
|
|
9
|
-
* to bind the pagination to the data object.
|
|
10
|
-
*
|
|
11
|
-
* @param dataObject Data object grid is used with
|
|
12
|
-
*/
|
|
13
|
-
export function useAfPagination(dataObject: DataObject<any>): Partial<DataGridPremiumProps> {
|
|
14
|
-
let paging = usePaging(dataObject);
|
|
15
|
-
let maxRecords = useParameter(dataObject, "maxRecords");
|
|
16
|
-
let dataLength = useDataLength(dataObject);
|
|
17
|
-
|
|
18
|
-
let paginationModel = useMemo(
|
|
19
|
-
() => ({
|
|
20
|
-
pageSize: maxRecords ?? 50,
|
|
21
|
-
page: paging.page || 0,
|
|
22
|
-
}),
|
|
23
|
-
[paging.page, maxRecords],
|
|
24
|
-
);
|
|
25
|
-
|
|
26
|
-
if (dataObject.isDynamicLoading()) {
|
|
27
|
-
return {
|
|
28
|
-
pagination: true,
|
|
29
|
-
paginationMode: "server",
|
|
30
|
-
paginationModel,
|
|
31
|
-
rowCount: dataLength,
|
|
32
|
-
pageSizeOptions: [10, 25, 50, 100, 250, 500, 1_000, 10_000],
|
|
33
|
-
onPaginationModelChange(newModel: GridPaginationModel) {
|
|
34
|
-
let newPageSize = newModel.pageSize ?? paginationModel.pageSize ?? 50;
|
|
35
|
-
if (newPageSize !== maxRecords) {
|
|
36
|
-
dataObject.setParameter("maxRecords", newPageSize);
|
|
37
|
-
// We don't want the pagination setup to load data when the grid is not set up to auto load
|
|
38
|
-
// data. To prevent that, we only refresh data if it is already loaded/loading.
|
|
39
|
-
if (dataObject.isDataLoaded() || dataObject.isDataLoading()) {
|
|
40
|
-
dataObject.refreshDataSource();
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
let newPage = typeof newModel.page === "number" && !Number.isNaN(newModel.page) ? newModel.page : paging.page;
|
|
45
|
-
if (newPage !== paging.page) {
|
|
46
|
-
paging.changePage(newPage);
|
|
47
|
-
}
|
|
48
|
-
},
|
|
49
|
-
};
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
return {};
|
|
53
|
-
}
|
|
1
|
+
import type { DataGridPremiumProps, GridPaginationModel } from "@mui/x-data-grid-premium";
|
|
2
|
+
import type { DataObject } from "@olenbetong/appframe-data";
|
|
3
|
+
import { useDataLength, usePaging, useParameter } from "@olenbetong/appframe-react";
|
|
4
|
+
|
|
5
|
+
import { useMemo } from "react";
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* If the data object is dynamic, returns the data grid properties needed
|
|
9
|
+
* to bind the pagination to the data object.
|
|
10
|
+
*
|
|
11
|
+
* @param dataObject Data object grid is used with
|
|
12
|
+
*/
|
|
13
|
+
export function useAfPagination(dataObject: DataObject<any>): Partial<DataGridPremiumProps> {
|
|
14
|
+
let paging = usePaging(dataObject);
|
|
15
|
+
let maxRecords = useParameter(dataObject, "maxRecords");
|
|
16
|
+
let dataLength = useDataLength(dataObject);
|
|
17
|
+
|
|
18
|
+
let paginationModel = useMemo(
|
|
19
|
+
() => ({
|
|
20
|
+
pageSize: maxRecords ?? 50,
|
|
21
|
+
page: paging.page || 0,
|
|
22
|
+
}),
|
|
23
|
+
[paging.page, maxRecords],
|
|
24
|
+
);
|
|
25
|
+
|
|
26
|
+
if (dataObject.isDynamicLoading()) {
|
|
27
|
+
return {
|
|
28
|
+
pagination: true,
|
|
29
|
+
paginationMode: "server",
|
|
30
|
+
paginationModel,
|
|
31
|
+
rowCount: dataLength,
|
|
32
|
+
pageSizeOptions: [10, 25, 50, 100, 250, 500, 1_000, 10_000],
|
|
33
|
+
onPaginationModelChange(newModel: GridPaginationModel) {
|
|
34
|
+
let newPageSize = newModel.pageSize ?? paginationModel.pageSize ?? 50;
|
|
35
|
+
if (newPageSize !== maxRecords) {
|
|
36
|
+
dataObject.setParameter("maxRecords", newPageSize);
|
|
37
|
+
// We don't want the pagination setup to load data when the grid is not set up to auto load
|
|
38
|
+
// data. To prevent that, we only refresh data if it is already loaded/loading.
|
|
39
|
+
if (dataObject.isDataLoaded() || dataObject.isDataLoading()) {
|
|
40
|
+
dataObject.refreshDataSource();
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
let newPage = typeof newModel.page === "number" && !Number.isNaN(newModel.page) ? newModel.page : paging.page;
|
|
45
|
+
if (newPage !== paging.page) {
|
|
46
|
+
paging.changePage(newPage);
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
return {};
|
|
53
|
+
}
|