@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,63 +1,63 @@
|
|
|
1
|
-
import type { GridApi, GridCellParams, GridRowId } from "@mui/x-data-grid-premium";
|
|
2
|
-
import { type DataObject, uid } from "@olenbetong/appframe-data";
|
|
3
|
-
import { useEvent } from "@olenbetong/appframe-react";
|
|
4
|
-
|
|
5
|
-
import { useEffect, useRef } from "react";
|
|
6
|
-
|
|
7
|
-
export type useAfCurrentIndexOptions = {
|
|
8
|
-
apiRef: React.RefObject<GridApi | null>;
|
|
9
|
-
dataObject: DataObject<any>;
|
|
10
|
-
enabled: boolean;
|
|
11
|
-
idField: string;
|
|
12
|
-
/**
|
|
13
|
-
* Id of the grid's new item row, if it has one. A current index of -1 then
|
|
14
|
-
* focuses that row, since the framework's new record has no row in the data.
|
|
15
|
-
*/
|
|
16
|
-
newItemRowId?: GridRowId | null;
|
|
17
|
-
};
|
|
18
|
-
|
|
19
|
-
function getRowId(row: any, idField: string) {
|
|
20
|
-
if (!row) return row;
|
|
21
|
-
return row[uid] ?? row[idField];
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
export function useAfCurrentIndex({ apiRef, dataObject, idField, enabled, newItemRowId }: useAfCurrentIndexOptions) {
|
|
25
|
-
let triggeredByFocusEvent = useRef(false);
|
|
26
|
-
let focusColumn = useRef<string>(null);
|
|
27
|
-
|
|
28
|
-
useEffect(() => {
|
|
29
|
-
function handleFocusChange(options: GridCellParams) {
|
|
30
|
-
focusColumn.current = options.field;
|
|
31
|
-
|
|
32
|
-
let currentId = getRowId(dataObject.currentRow(), idField);
|
|
33
|
-
if (currentId !== options.id) {
|
|
34
|
-
let newIndex = dataObject.findIndex((row) => getRowId(row, idField) === options.id);
|
|
35
|
-
if (newIndex >= 0) {
|
|
36
|
-
triggeredByFocusEvent.current = true;
|
|
37
|
-
dataObject.setCurrentIndex(newIndex);
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
if (enabled) {
|
|
43
|
-
if (!focusColumn.current) {
|
|
44
|
-
focusColumn.current = apiRef.current?.getVisibleColumns()[0]?.field ?? null;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
return apiRef.current?.subscribeEvent("cellFocusIn", handleFocusChange);
|
|
48
|
-
}
|
|
49
|
-
}, [apiRef, dataObject, idField, enabled]);
|
|
50
|
-
|
|
51
|
-
useEvent(dataObject, "onCurrentIndexChanged", (event) => {
|
|
52
|
-
if (enabled && triggeredByFocusEvent.current === false) {
|
|
53
|
-
if (focusColumn.current && document.activeElement?.closest(".MuiDataGrid-cell")) {
|
|
54
|
-
let rowId = event.detail === -1 ? newItemRowId : getRowId(dataObject.getData(event.detail), idField);
|
|
55
|
-
if (rowId != null) {
|
|
56
|
-
apiRef.current?.setCellFocus(rowId, focusColumn.current);
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
} else {
|
|
60
|
-
triggeredByFocusEvent.current = false;
|
|
61
|
-
}
|
|
62
|
-
});
|
|
63
|
-
}
|
|
1
|
+
import type { GridApi, GridCellParams, GridRowId } from "@mui/x-data-grid-premium";
|
|
2
|
+
import { type DataObject, uid } from "@olenbetong/appframe-data";
|
|
3
|
+
import { useEvent } from "@olenbetong/appframe-react";
|
|
4
|
+
|
|
5
|
+
import { useEffect, useRef } from "react";
|
|
6
|
+
|
|
7
|
+
export type useAfCurrentIndexOptions = {
|
|
8
|
+
apiRef: React.RefObject<GridApi | null>;
|
|
9
|
+
dataObject: DataObject<any>;
|
|
10
|
+
enabled: boolean;
|
|
11
|
+
idField: string;
|
|
12
|
+
/**
|
|
13
|
+
* Id of the grid's new item row, if it has one. A current index of -1 then
|
|
14
|
+
* focuses that row, since the framework's new record has no row in the data.
|
|
15
|
+
*/
|
|
16
|
+
newItemRowId?: GridRowId | null;
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
function getRowId(row: any, idField: string) {
|
|
20
|
+
if (!row) return row;
|
|
21
|
+
return row[uid] ?? row[idField];
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export function useAfCurrentIndex({ apiRef, dataObject, idField, enabled, newItemRowId }: useAfCurrentIndexOptions) {
|
|
25
|
+
let triggeredByFocusEvent = useRef(false);
|
|
26
|
+
let focusColumn = useRef<string>(null);
|
|
27
|
+
|
|
28
|
+
useEffect(() => {
|
|
29
|
+
function handleFocusChange(options: GridCellParams) {
|
|
30
|
+
focusColumn.current = options.field;
|
|
31
|
+
|
|
32
|
+
let currentId = getRowId(dataObject.currentRow(), idField);
|
|
33
|
+
if (currentId !== options.id) {
|
|
34
|
+
let newIndex = dataObject.findIndex((row) => getRowId(row, idField) === options.id);
|
|
35
|
+
if (newIndex >= 0) {
|
|
36
|
+
triggeredByFocusEvent.current = true;
|
|
37
|
+
dataObject.setCurrentIndex(newIndex);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
if (enabled) {
|
|
43
|
+
if (!focusColumn.current) {
|
|
44
|
+
focusColumn.current = apiRef.current?.getVisibleColumns()[0]?.field ?? null;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
return apiRef.current?.subscribeEvent("cellFocusIn", handleFocusChange);
|
|
48
|
+
}
|
|
49
|
+
}, [apiRef, dataObject, idField, enabled]);
|
|
50
|
+
|
|
51
|
+
useEvent(dataObject, "onCurrentIndexChanged", (event) => {
|
|
52
|
+
if (enabled && triggeredByFocusEvent.current === false) {
|
|
53
|
+
if (focusColumn.current && document.activeElement?.closest(".MuiDataGrid-cell")) {
|
|
54
|
+
let rowId = event.detail === -1 ? newItemRowId : getRowId(dataObject.getData(event.detail), idField);
|
|
55
|
+
if (rowId != null) {
|
|
56
|
+
apiRef.current?.setCellFocus(rowId, focusColumn.current);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
} else {
|
|
60
|
+
triggeredByFocusEvent.current = false;
|
|
61
|
+
}
|
|
62
|
+
});
|
|
63
|
+
}
|
package/src/grid/useAfData.ts
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import type { DataObject } from "@olenbetong/appframe-data";
|
|
2
|
-
import { useData } from "@olenbetong/appframe-react";
|
|
3
|
-
|
|
4
|
-
import { useMemo } from "react";
|
|
5
|
-
|
|
6
|
-
export function useAfData<T extends Record<string, unknown>, K = T[]>(
|
|
7
|
-
dataObject: DataObject<T>,
|
|
8
|
-
{ getData }: { getData?: (data: T[]) => K },
|
|
9
|
-
): K {
|
|
10
|
-
let rawData = useData(dataObject);
|
|
11
|
-
let data = useMemo(() => {
|
|
12
|
-
if (getData) {
|
|
13
|
-
return getData(rawData as T[]) as K;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
return rawData as K;
|
|
17
|
-
}, [rawData, getData]);
|
|
18
|
-
|
|
19
|
-
return data;
|
|
20
|
-
}
|
|
1
|
+
import type { DataObject } from "@olenbetong/appframe-data";
|
|
2
|
+
import { useData } from "@olenbetong/appframe-react";
|
|
3
|
+
|
|
4
|
+
import { useMemo } from "react";
|
|
5
|
+
|
|
6
|
+
export function useAfData<T extends Record<string, unknown>, K = T[]>(
|
|
7
|
+
dataObject: DataObject<T>,
|
|
8
|
+
{ getData }: { getData?: (data: T[]) => K },
|
|
9
|
+
): K {
|
|
10
|
+
let rawData = useData(dataObject);
|
|
11
|
+
let data = useMemo(() => {
|
|
12
|
+
if (getData) {
|
|
13
|
+
return getData(rawData as T[]) as K;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
return rawData as K;
|
|
17
|
+
}, [rawData, getData]);
|
|
18
|
+
|
|
19
|
+
return data;
|
|
20
|
+
}
|
package/src/grid/useAfFilter.ts
CHANGED
|
@@ -1,160 +1,160 @@
|
|
|
1
|
-
import {
|
|
2
|
-
countExpressions,
|
|
3
|
-
createEmptyFilter,
|
|
4
|
-
type FieldMetadata,
|
|
5
|
-
type FilterExpression,
|
|
6
|
-
type FilterTree,
|
|
7
|
-
pruneFilter,
|
|
8
|
-
toFilterTree,
|
|
9
|
-
} from "@olenbetong/appframe-core";
|
|
10
|
-
import type { DataObject, Filter } from "@olenbetong/appframe-data";
|
|
11
|
-
import { deepEqual, useDebounce, useNamedFilter } from "@olenbetong/appframe-react";
|
|
12
|
-
import { useCallback, useEffect, useMemo, useRef, useState } from "react";
|
|
13
|
-
|
|
14
|
-
import { getFieldExpressions, setFieldExpressions } from "../filter/fieldFilter.js";
|
|
15
|
-
|
|
16
|
-
/**
|
|
17
|
-
* The grid's filter, shared by the header filters and the filter builder.
|
|
18
|
-
*
|
|
19
|
-
* `filter` is the tree being edited and may contain incomplete criteria; only
|
|
20
|
-
* the pruned tree is ever sent to the server.
|
|
21
|
-
*/
|
|
22
|
-
export type AfFilterApi = {
|
|
23
|
-
/** The filter tree currently being edited. */
|
|
24
|
-
filter: FilterTree;
|
|
25
|
-
/** Replaces the whole tree. Applied to the data object after a short debounce. */
|
|
26
|
-
setFilter: (filter: FilterTree) => void;
|
|
27
|
-
/** The field's top level criteria. See `getFieldExpressions`. */
|
|
28
|
-
getFieldCriteria: (field: string) => FilterExpression[];
|
|
29
|
-
/** Replaces the field's top level criteria. */
|
|
30
|
-
setFieldCriteria: (field: string, expressions: FilterExpression[]) => void;
|
|
31
|
-
/** Number of criteria in the whole tree, shown on the toolbar filter button. */
|
|
32
|
-
filterCount: number;
|
|
33
|
-
};
|
|
34
|
-
|
|
35
|
-
/**
|
|
36
|
-
* Finds the grid's own named slice within a (possibly combined) filter object.
|
|
37
|
-
* Falls back to the whole filter object when no named slice is present, which
|
|
38
|
-
* preserves the behaviour for filter objects set without a name.
|
|
39
|
-
*/
|
|
40
|
-
function extractNamedSlice(filter: Filter, name: string): Filter {
|
|
41
|
-
if (!filter) return null;
|
|
42
|
-
|
|
43
|
-
if (filter.type === "group") {
|
|
44
|
-
if (filter.name === name) {
|
|
45
|
-
return filter;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
let named = filter.items.find((item) => item.type === "group" && item.name === name);
|
|
49
|
-
if (named) {
|
|
50
|
-
return named;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
let anyNamed = filter.items.some((item) => item.type === "group" && item.name != null);
|
|
54
|
-
if (anyNamed) {
|
|
55
|
-
return null;
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
return filter;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
/**
|
|
63
|
-
* Owns the grid's filter as a single `FilterTree` in one named filter slot.
|
|
64
|
-
*
|
|
65
|
-
* Both the header filters and the toolbar's filter builder edit this tree, so
|
|
66
|
-
* a criterion added in one is immediately visible in the other. MUI's own
|
|
67
|
-
* `GridFilterModel` is not used as a transport: it cannot represent nested
|
|
68
|
-
* groups or the full Appframe operator set, so mirroring the tree into it would
|
|
69
|
-
* lose information.
|
|
70
|
-
*
|
|
71
|
-
* @param dataObject Data object the filter is applied to
|
|
72
|
-
* @param id The grid id, used as the named filter slot name
|
|
73
|
-
* @param autoLoad Whether the data object should load if it has no data yet
|
|
74
|
-
*/
|
|
75
|
-
export function useAfFilter({
|
|
76
|
-
autoLoad,
|
|
77
|
-
dataObject,
|
|
78
|
-
id,
|
|
79
|
-
}: {
|
|
80
|
-
autoLoad: boolean;
|
|
81
|
-
dataObject: DataObject<any>;
|
|
82
|
-
id: string;
|
|
83
|
-
}): AfFilterApi {
|
|
84
|
-
let defaultFilter = useMemo(
|
|
85
|
-
() => extractNamedSlice(dataObject.getParameter("filterObject") ?? null, id),
|
|
86
|
-
[dataObject, id],
|
|
87
|
-
);
|
|
88
|
-
|
|
89
|
-
// The named slot survives unmounting, so a grid that is navigated away from
|
|
90
|
-
// and back keeps its filter. `defaultFilter` only seeds the slot the first
|
|
91
|
-
// time it is registered.
|
|
92
|
-
let [applied, setApplied] = useNamedFilter(dataObject, id, {
|
|
93
|
-
type: "filterObject",
|
|
94
|
-
autoLoad,
|
|
95
|
-
defaultFilter,
|
|
96
|
-
});
|
|
97
|
-
|
|
98
|
-
let [filter, setFilter] = useState<FilterTree>(() => nameRoot(toFilterTree(applied), id));
|
|
99
|
-
|
|
100
|
-
// Applying on every keystroke would refresh the data object per character.
|
|
101
|
-
let debouncedFilter = useDebounce(filter, 400);
|
|
102
|
-
// The last filter the tree and the data object agreed on, so each direction
|
|
103
|
-
// of the sync below can tell a real change from an echo of its own change.
|
|
104
|
-
let syncedFilter = useRef<Filter>(applied);
|
|
105
|
-
|
|
106
|
-
// Tree -> data object
|
|
107
|
-
useEffect(() => {
|
|
108
|
-
let pruned = pruneFilter(debouncedFilter);
|
|
109
|
-
let next = pruned ? nameRoot(pruned, id) : null;
|
|
110
|
-
|
|
111
|
-
if (deepEqual(next, syncedFilter.current)) return;
|
|
112
|
-
|
|
113
|
-
syncedFilter.current = next;
|
|
114
|
-
setApplied(next);
|
|
115
|
-
}, [debouncedFilter, setApplied, id]);
|
|
116
|
-
|
|
117
|
-
// Data object -> tree, for filters changed by something other than the grid
|
|
118
|
-
useEffect(() => {
|
|
119
|
-
if (deepEqual(applied, syncedFilter.current)) return;
|
|
120
|
-
|
|
121
|
-
syncedFilter.current = applied;
|
|
122
|
-
setFilter(nameRoot(toFilterTree(applied), id));
|
|
123
|
-
}, [applied, id]);
|
|
124
|
-
|
|
125
|
-
let getFieldCriteria = useCallback((field: string) => getFieldExpressions(filter, field), [filter]);
|
|
126
|
-
|
|
127
|
-
let setFieldCriteria = useCallback(
|
|
128
|
-
(field: string, expressions: FilterExpression[]) =>
|
|
129
|
-
setFilter((current) => setFieldExpressions(current, field, expressions)),
|
|
130
|
-
[],
|
|
131
|
-
);
|
|
132
|
-
|
|
133
|
-
return useMemo(
|
|
134
|
-
() => ({
|
|
135
|
-
filter,
|
|
136
|
-
setFilter,
|
|
137
|
-
getFieldCriteria,
|
|
138
|
-
setFieldCriteria,
|
|
139
|
-
filterCount: countExpressions(filter),
|
|
140
|
-
}),
|
|
141
|
-
[filter, getFieldCriteria, setFieldCriteria],
|
|
142
|
-
);
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
/**
|
|
146
|
-
* The root group carries the slot name so a filter read back from the data
|
|
147
|
-
* object's combined `filterObject` can be recognised as this grid's.
|
|
148
|
-
*/
|
|
149
|
-
function nameRoot(filter: FilterTree | null | undefined, id: string): FilterTree {
|
|
150
|
-
let tree = filter ?? createEmptyFilter();
|
|
151
|
-
|
|
152
|
-
return tree.name === id ? tree : { ...tree, name: id };
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
/** Looks up the metadata for a field, matching case-insensitively. */
|
|
156
|
-
export function findFilterField(fields: FieldMetadata[], name: string): FieldMetadata | undefined {
|
|
157
|
-
let lowerName = name.toLowerCase();
|
|
158
|
-
|
|
159
|
-
return fields.find((field) => field.name.toLowerCase() === lowerName);
|
|
160
|
-
}
|
|
1
|
+
import {
|
|
2
|
+
countExpressions,
|
|
3
|
+
createEmptyFilter,
|
|
4
|
+
type FieldMetadata,
|
|
5
|
+
type FilterExpression,
|
|
6
|
+
type FilterTree,
|
|
7
|
+
pruneFilter,
|
|
8
|
+
toFilterTree,
|
|
9
|
+
} from "@olenbetong/appframe-core";
|
|
10
|
+
import type { DataObject, Filter } from "@olenbetong/appframe-data";
|
|
11
|
+
import { deepEqual, useDebounce, useNamedFilter } from "@olenbetong/appframe-react";
|
|
12
|
+
import { useCallback, useEffect, useMemo, useRef, useState } from "react";
|
|
13
|
+
|
|
14
|
+
import { getFieldExpressions, setFieldExpressions } from "../filter/fieldFilter.js";
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* The grid's filter, shared by the header filters and the filter builder.
|
|
18
|
+
*
|
|
19
|
+
* `filter` is the tree being edited and may contain incomplete criteria; only
|
|
20
|
+
* the pruned tree is ever sent to the server.
|
|
21
|
+
*/
|
|
22
|
+
export type AfFilterApi = {
|
|
23
|
+
/** The filter tree currently being edited. */
|
|
24
|
+
filter: FilterTree;
|
|
25
|
+
/** Replaces the whole tree. Applied to the data object after a short debounce. */
|
|
26
|
+
setFilter: (filter: FilterTree) => void;
|
|
27
|
+
/** The field's top level criteria. See `getFieldExpressions`. */
|
|
28
|
+
getFieldCriteria: (field: string) => FilterExpression[];
|
|
29
|
+
/** Replaces the field's top level criteria. */
|
|
30
|
+
setFieldCriteria: (field: string, expressions: FilterExpression[]) => void;
|
|
31
|
+
/** Number of criteria in the whole tree, shown on the toolbar filter button. */
|
|
32
|
+
filterCount: number;
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* Finds the grid's own named slice within a (possibly combined) filter object.
|
|
37
|
+
* Falls back to the whole filter object when no named slice is present, which
|
|
38
|
+
* preserves the behaviour for filter objects set without a name.
|
|
39
|
+
*/
|
|
40
|
+
function extractNamedSlice(filter: Filter, name: string): Filter {
|
|
41
|
+
if (!filter) return null;
|
|
42
|
+
|
|
43
|
+
if (filter.type === "group") {
|
|
44
|
+
if (filter.name === name) {
|
|
45
|
+
return filter;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
let named = filter.items.find((item) => item.type === "group" && item.name === name);
|
|
49
|
+
if (named) {
|
|
50
|
+
return named;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
let anyNamed = filter.items.some((item) => item.type === "group" && item.name != null);
|
|
54
|
+
if (anyNamed) {
|
|
55
|
+
return null;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
return filter;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* Owns the grid's filter as a single `FilterTree` in one named filter slot.
|
|
64
|
+
*
|
|
65
|
+
* Both the header filters and the toolbar's filter builder edit this tree, so
|
|
66
|
+
* a criterion added in one is immediately visible in the other. MUI's own
|
|
67
|
+
* `GridFilterModel` is not used as a transport: it cannot represent nested
|
|
68
|
+
* groups or the full Appframe operator set, so mirroring the tree into it would
|
|
69
|
+
* lose information.
|
|
70
|
+
*
|
|
71
|
+
* @param dataObject Data object the filter is applied to
|
|
72
|
+
* @param id The grid id, used as the named filter slot name
|
|
73
|
+
* @param autoLoad Whether the data object should load if it has no data yet
|
|
74
|
+
*/
|
|
75
|
+
export function useAfFilter({
|
|
76
|
+
autoLoad,
|
|
77
|
+
dataObject,
|
|
78
|
+
id,
|
|
79
|
+
}: {
|
|
80
|
+
autoLoad: boolean;
|
|
81
|
+
dataObject: DataObject<any>;
|
|
82
|
+
id: string;
|
|
83
|
+
}): AfFilterApi {
|
|
84
|
+
let defaultFilter = useMemo(
|
|
85
|
+
() => extractNamedSlice(dataObject.getParameter("filterObject") ?? null, id),
|
|
86
|
+
[dataObject, id],
|
|
87
|
+
);
|
|
88
|
+
|
|
89
|
+
// The named slot survives unmounting, so a grid that is navigated away from
|
|
90
|
+
// and back keeps its filter. `defaultFilter` only seeds the slot the first
|
|
91
|
+
// time it is registered.
|
|
92
|
+
let [applied, setApplied] = useNamedFilter(dataObject, id, {
|
|
93
|
+
type: "filterObject",
|
|
94
|
+
autoLoad,
|
|
95
|
+
defaultFilter,
|
|
96
|
+
});
|
|
97
|
+
|
|
98
|
+
let [filter, setFilter] = useState<FilterTree>(() => nameRoot(toFilterTree(applied), id));
|
|
99
|
+
|
|
100
|
+
// Applying on every keystroke would refresh the data object per character.
|
|
101
|
+
let debouncedFilter = useDebounce(filter, 400);
|
|
102
|
+
// The last filter the tree and the data object agreed on, so each direction
|
|
103
|
+
// of the sync below can tell a real change from an echo of its own change.
|
|
104
|
+
let syncedFilter = useRef<Filter>(applied);
|
|
105
|
+
|
|
106
|
+
// Tree -> data object
|
|
107
|
+
useEffect(() => {
|
|
108
|
+
let pruned = pruneFilter(debouncedFilter);
|
|
109
|
+
let next = pruned ? nameRoot(pruned, id) : null;
|
|
110
|
+
|
|
111
|
+
if (deepEqual(next, syncedFilter.current)) return;
|
|
112
|
+
|
|
113
|
+
syncedFilter.current = next;
|
|
114
|
+
setApplied(next);
|
|
115
|
+
}, [debouncedFilter, setApplied, id]);
|
|
116
|
+
|
|
117
|
+
// Data object -> tree, for filters changed by something other than the grid
|
|
118
|
+
useEffect(() => {
|
|
119
|
+
if (deepEqual(applied, syncedFilter.current)) return;
|
|
120
|
+
|
|
121
|
+
syncedFilter.current = applied;
|
|
122
|
+
setFilter(nameRoot(toFilterTree(applied), id));
|
|
123
|
+
}, [applied, id]);
|
|
124
|
+
|
|
125
|
+
let getFieldCriteria = useCallback((field: string) => getFieldExpressions(filter, field), [filter]);
|
|
126
|
+
|
|
127
|
+
let setFieldCriteria = useCallback(
|
|
128
|
+
(field: string, expressions: FilterExpression[]) =>
|
|
129
|
+
setFilter((current) => setFieldExpressions(current, field, expressions)),
|
|
130
|
+
[],
|
|
131
|
+
);
|
|
132
|
+
|
|
133
|
+
return useMemo(
|
|
134
|
+
() => ({
|
|
135
|
+
filter,
|
|
136
|
+
setFilter,
|
|
137
|
+
getFieldCriteria,
|
|
138
|
+
setFieldCriteria,
|
|
139
|
+
filterCount: countExpressions(filter),
|
|
140
|
+
}),
|
|
141
|
+
[filter, getFieldCriteria, setFieldCriteria],
|
|
142
|
+
);
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
/**
|
|
146
|
+
* The root group carries the slot name so a filter read back from the data
|
|
147
|
+
* object's combined `filterObject` can be recognised as this grid's.
|
|
148
|
+
*/
|
|
149
|
+
function nameRoot(filter: FilterTree | null | undefined, id: string): FilterTree {
|
|
150
|
+
let tree = filter ?? createEmptyFilter();
|
|
151
|
+
|
|
152
|
+
return tree.name === id ? tree : { ...tree, name: id };
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
/** Looks up the metadata for a field, matching case-insensitively. */
|
|
156
|
+
export function findFilterField(fields: FieldMetadata[], name: string): FieldMetadata | undefined {
|
|
157
|
+
let lowerName = name.toLowerCase();
|
|
158
|
+
|
|
159
|
+
return fields.find((field) => field.name.toLowerCase() === lowerName);
|
|
160
|
+
}
|
|
@@ -1,55 +1,55 @@
|
|
|
1
|
-
import type { FieldMetadata, FilterFieldType } from "@olenbetong/appframe-core";
|
|
2
|
-
import type { DataObject } from "@olenbetong/appframe-data";
|
|
3
|
-
import { useMemo } from "react";
|
|
4
|
-
|
|
5
|
-
import type { AfGridColumn } from "./useAfColumns.js";
|
|
6
|
-
|
|
7
|
-
/** Data object field types that do not map onto a filter builder field type. */
|
|
8
|
-
const FIELD_TYPES: Record<string, FilterFieldType> = {
|
|
9
|
-
bigint: "number",
|
|
10
|
-
boolean: "boolean",
|
|
11
|
-
date: "date",
|
|
12
|
-
datetime: "datetime",
|
|
13
|
-
number: "number",
|
|
14
|
-
string: "string",
|
|
15
|
-
time: "string",
|
|
16
|
-
uniqueidentifier: "uniqueidentifier",
|
|
17
|
-
};
|
|
18
|
-
|
|
19
|
-
function toFilterFieldType(type: string | undefined): FilterFieldType {
|
|
20
|
-
return FIELD_TYPES[type?.toLowerCase() ?? ""] ?? "string";
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
/**
|
|
24
|
-
* The fields the filter builder offers, derived from the data object's own
|
|
25
|
-
* field definitions. Column definitions only contribute their header name as
|
|
26
|
-
* the caption, and `filterColumn` remaps a column onto the field it filters on.
|
|
27
|
-
*
|
|
28
|
-
* Fields that no column refers to are still offered, so the user can filter on
|
|
29
|
-
* data that is not displayed — the same as the Windows client.
|
|
30
|
-
*/
|
|
31
|
-
export function useAfFilterFields(dataObject: DataObject<any>, columns: AfGridColumn[]): FieldMetadata[] {
|
|
32
|
-
return useMemo(() => {
|
|
33
|
-
let captions = new Map<string, string>();
|
|
34
|
-
|
|
35
|
-
for (let column of columns) {
|
|
36
|
-
if (typeof column === "string") continue;
|
|
37
|
-
|
|
38
|
-
let field = column.filterColumn ?? column.field;
|
|
39
|
-
|
|
40
|
-
if (column.filterable === false && !column.filterColumn) continue;
|
|
41
|
-
if (column.headerName) captions.set(field.toLowerCase(), column.headerName);
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
return dataObject
|
|
45
|
-
.getFields()
|
|
46
|
-
.filter((field) => !!field.name)
|
|
47
|
-
.map((field) => ({
|
|
48
|
-
name: field.name,
|
|
49
|
-
caption: captions.get(field.name.toLowerCase()) ?? field.caption ?? field.name,
|
|
50
|
-
type: toFilterFieldType(field.type),
|
|
51
|
-
nullable: field.nullable !== false,
|
|
52
|
-
}))
|
|
53
|
-
.sort((a, b) => a.caption.localeCompare(b.caption));
|
|
54
|
-
}, [dataObject, columns]);
|
|
55
|
-
}
|
|
1
|
+
import type { FieldMetadata, FilterFieldType } from "@olenbetong/appframe-core";
|
|
2
|
+
import type { DataObject } from "@olenbetong/appframe-data";
|
|
3
|
+
import { useMemo } from "react";
|
|
4
|
+
|
|
5
|
+
import type { AfGridColumn } from "./useAfColumns.js";
|
|
6
|
+
|
|
7
|
+
/** Data object field types that do not map onto a filter builder field type. */
|
|
8
|
+
const FIELD_TYPES: Record<string, FilterFieldType> = {
|
|
9
|
+
bigint: "number",
|
|
10
|
+
boolean: "boolean",
|
|
11
|
+
date: "date",
|
|
12
|
+
datetime: "datetime",
|
|
13
|
+
number: "number",
|
|
14
|
+
string: "string",
|
|
15
|
+
time: "string",
|
|
16
|
+
uniqueidentifier: "uniqueidentifier",
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
function toFilterFieldType(type: string | undefined): FilterFieldType {
|
|
20
|
+
return FIELD_TYPES[type?.toLowerCase() ?? ""] ?? "string";
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* The fields the filter builder offers, derived from the data object's own
|
|
25
|
+
* field definitions. Column definitions only contribute their header name as
|
|
26
|
+
* the caption, and `filterColumn` remaps a column onto the field it filters on.
|
|
27
|
+
*
|
|
28
|
+
* Fields that no column refers to are still offered, so the user can filter on
|
|
29
|
+
* data that is not displayed — the same as the Windows client.
|
|
30
|
+
*/
|
|
31
|
+
export function useAfFilterFields(dataObject: DataObject<any>, columns: AfGridColumn[]): FieldMetadata[] {
|
|
32
|
+
return useMemo(() => {
|
|
33
|
+
let captions = new Map<string, string>();
|
|
34
|
+
|
|
35
|
+
for (let column of columns) {
|
|
36
|
+
if (typeof column === "string") continue;
|
|
37
|
+
|
|
38
|
+
let field = column.filterColumn ?? column.field;
|
|
39
|
+
|
|
40
|
+
if (column.filterable === false && !column.filterColumn) continue;
|
|
41
|
+
if (column.headerName) captions.set(field.toLowerCase(), column.headerName);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
return dataObject
|
|
45
|
+
.getFields()
|
|
46
|
+
.filter((field) => !!field.name)
|
|
47
|
+
.map((field) => ({
|
|
48
|
+
name: field.name,
|
|
49
|
+
caption: captions.get(field.name.toLowerCase()) ?? field.caption ?? field.name,
|
|
50
|
+
type: toFilterFieldType(field.type),
|
|
51
|
+
nullable: field.nullable !== false,
|
|
52
|
+
}))
|
|
53
|
+
.sort((a, b) => a.caption.localeCompare(b.caption));
|
|
54
|
+
}, [dataObject, columns]);
|
|
55
|
+
}
|