@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
package/src/mdi/MdiContext.tsx
CHANGED
|
@@ -1,59 +1,59 @@
|
|
|
1
|
-
import { createContext, type ReactNode, use, useEffect, useMemo, useState, useSyncExternalStore } from "react";
|
|
2
|
-
|
|
3
|
-
import { MdiController } from "./controller.js";
|
|
4
|
-
import type { MdiApi, MdiDocumentInfo, MdiDocumentTypes } from "./types.js";
|
|
5
|
-
|
|
6
|
-
const MdiControllerContext = createContext<MdiController | null>(null);
|
|
7
|
-
|
|
8
|
-
export type MdiProviderProps = {
|
|
9
|
-
/** The document types this workspace can show, keyed by type name */
|
|
10
|
-
types: MdiDocumentTypes;
|
|
11
|
-
children: ReactNode;
|
|
12
|
-
};
|
|
13
|
-
|
|
14
|
-
/**
|
|
15
|
-
* Owns the document controller. Anything inside it can call `useMdi()`, so
|
|
16
|
-
* toolbars and menus outside the dock itself can open and close documents.
|
|
17
|
-
*/
|
|
18
|
-
export function MdiProvider({ types, children }: MdiProviderProps) {
|
|
19
|
-
let [controller] = useState(() => new MdiController(types));
|
|
20
|
-
|
|
21
|
-
useEffect(() => {
|
|
22
|
-
controller.setTypes(types);
|
|
23
|
-
}, [controller, types]);
|
|
24
|
-
|
|
25
|
-
return <MdiControllerContext value={controller}>{children}</MdiControllerContext>;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
export function useMdiController(): MdiController {
|
|
29
|
-
let controller = use(MdiControllerContext);
|
|
30
|
-
|
|
31
|
-
if (!controller) {
|
|
32
|
-
throw new Error("Mdi: this component must be rendered inside <MdiProvider>.");
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
return controller;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
/** The imperative document API: open, activate, close, titles, layout commands. */
|
|
39
|
-
export function useMdi(): MdiApi {
|
|
40
|
-
return useMdiController();
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
/** The active document, re-rendering when it changes. Drives shared panels such as a property grid. */
|
|
44
|
-
export function useMdiActiveDocument(): MdiDocumentInfo | undefined {
|
|
45
|
-
let controller = useMdiController();
|
|
46
|
-
return useSyncExternalStore(controller.subscribeStore, controller.getActive, controller.getActive);
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
/** The open documents, optionally of one type. For "Windows" menus and the like. */
|
|
50
|
-
export function useMdiDocuments(type?: string): MdiDocumentInfo[] {
|
|
51
|
-
let controller = useMdiController();
|
|
52
|
-
let all = useSyncExternalStore(
|
|
53
|
-
controller.subscribeStore,
|
|
54
|
-
controller.getDocumentsSnapshot,
|
|
55
|
-
controller.getDocumentsSnapshot,
|
|
56
|
-
);
|
|
57
|
-
|
|
58
|
-
return useMemo(() => (type === undefined ? all : all.filter((document) => document.type === type)), [all, type]);
|
|
59
|
-
}
|
|
1
|
+
import { createContext, type ReactNode, use, useEffect, useMemo, useState, useSyncExternalStore } from "react";
|
|
2
|
+
|
|
3
|
+
import { MdiController } from "./controller.js";
|
|
4
|
+
import type { MdiApi, MdiDocumentInfo, MdiDocumentTypes } from "./types.js";
|
|
5
|
+
|
|
6
|
+
const MdiControllerContext = createContext<MdiController | null>(null);
|
|
7
|
+
|
|
8
|
+
export type MdiProviderProps = {
|
|
9
|
+
/** The document types this workspace can show, keyed by type name */
|
|
10
|
+
types: MdiDocumentTypes;
|
|
11
|
+
children: ReactNode;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Owns the document controller. Anything inside it can call `useMdi()`, so
|
|
16
|
+
* toolbars and menus outside the dock itself can open and close documents.
|
|
17
|
+
*/
|
|
18
|
+
export function MdiProvider({ types, children }: MdiProviderProps) {
|
|
19
|
+
let [controller] = useState(() => new MdiController(types));
|
|
20
|
+
|
|
21
|
+
useEffect(() => {
|
|
22
|
+
controller.setTypes(types);
|
|
23
|
+
}, [controller, types]);
|
|
24
|
+
|
|
25
|
+
return <MdiControllerContext value={controller}>{children}</MdiControllerContext>;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export function useMdiController(): MdiController {
|
|
29
|
+
let controller = use(MdiControllerContext);
|
|
30
|
+
|
|
31
|
+
if (!controller) {
|
|
32
|
+
throw new Error("Mdi: this component must be rendered inside <MdiProvider>.");
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
return controller;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/** The imperative document API: open, activate, close, titles, layout commands. */
|
|
39
|
+
export function useMdi(): MdiApi {
|
|
40
|
+
return useMdiController();
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
/** The active document, re-rendering when it changes. Drives shared panels such as a property grid. */
|
|
44
|
+
export function useMdiActiveDocument(): MdiDocumentInfo | undefined {
|
|
45
|
+
let controller = useMdiController();
|
|
46
|
+
return useSyncExternalStore(controller.subscribeStore, controller.getActive, controller.getActive);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
/** The open documents, optionally of one type. For "Windows" menus and the like. */
|
|
50
|
+
export function useMdiDocuments(type?: string): MdiDocumentInfo[] {
|
|
51
|
+
let controller = useMdiController();
|
|
52
|
+
let all = useSyncExternalStore(
|
|
53
|
+
controller.subscribeStore,
|
|
54
|
+
controller.getDocumentsSnapshot,
|
|
55
|
+
controller.getDocumentsSnapshot,
|
|
56
|
+
);
|
|
57
|
+
|
|
58
|
+
return useMemo(() => (type === undefined ? all : all.filter((document) => document.type === type)), [all, type]);
|
|
59
|
+
}
|
|
@@ -1,60 +1,60 @@
|
|
|
1
|
-
import { createContext, use, useEffect, useMemo, useRef, useState, useSyncExternalStore } from "react";
|
|
2
|
-
|
|
3
|
-
import { parsePanelId } from "./ids.js";
|
|
4
|
-
import { useMdiController } from "./MdiContext.js";
|
|
5
|
-
import type { MdiCloseOptions, MdiDocumentHandle, MdiDocumentOptions, MdiParams } from "./types.js";
|
|
6
|
-
|
|
7
|
-
export const MdiDocumentIdContext = createContext<string | null>(null);
|
|
8
|
-
|
|
9
|
-
/**
|
|
10
|
-
* The document a component is rendered in: its params, whether it is active, and
|
|
11
|
-
* the handle to set its title and dirty state or close it. Pass `onSave`/`onClosing`
|
|
12
|
-
* to take part in the close flow.
|
|
13
|
-
*/
|
|
14
|
-
export function useMdiDocument<P extends MdiParams = MdiParams>(options?: MdiDocumentOptions): MdiDocumentHandle<P> {
|
|
15
|
-
let controller = useMdiController();
|
|
16
|
-
let id = use(MdiDocumentIdContext);
|
|
17
|
-
|
|
18
|
-
if (!id) {
|
|
19
|
-
throw new Error("Mdi: useMdiDocument() must be called from a component rendered as an Mdi document.");
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
// The guards are registered once; they always call the latest callbacks.
|
|
23
|
-
let latest = useRef(options);
|
|
24
|
-
useEffect(() => {
|
|
25
|
-
latest.current = options;
|
|
26
|
-
});
|
|
27
|
-
|
|
28
|
-
let [guards] = useState<MdiDocumentOptions>(() => ({
|
|
29
|
-
onSave: () => latest.current?.onSave?.() ?? true,
|
|
30
|
-
onClosing: () => latest.current?.onClosing?.() ?? true,
|
|
31
|
-
}));
|
|
32
|
-
|
|
33
|
-
useEffect(() => controller.registerGuards(id, guards), [controller, id, guards]);
|
|
34
|
-
|
|
35
|
-
let info = useSyncExternalStore(
|
|
36
|
-
controller.subscribeStore,
|
|
37
|
-
() => controller.getDocument(id),
|
|
38
|
-
() => controller.getDocument(id),
|
|
39
|
-
);
|
|
40
|
-
|
|
41
|
-
return useMemo(() => {
|
|
42
|
-
let parsed = parsePanelId(id);
|
|
43
|
-
|
|
44
|
-
return {
|
|
45
|
-
id,
|
|
46
|
-
type: info?.type ?? parsed.type,
|
|
47
|
-
key: info?.key ?? parsed.key,
|
|
48
|
-
params: (info?.params ?? {}) as P,
|
|
49
|
-
isActive: info?.isActive ?? false,
|
|
50
|
-
dirty: info?.dirty ?? false,
|
|
51
|
-
closable: info?.closable ?? true,
|
|
52
|
-
setTitle: (title: string) => controller.setTitle(id, title),
|
|
53
|
-
setDirty: (dirty: boolean) => controller.setDirty(id, dirty),
|
|
54
|
-
close: (closeOptions?: MdiCloseOptions) => controller.close(id, closeOptions),
|
|
55
|
-
activate: () => controller.activate(id),
|
|
56
|
-
getWindow: () => controller.getWindow(id),
|
|
57
|
-
mdi: controller,
|
|
58
|
-
};
|
|
59
|
-
}, [controller, id, info]);
|
|
60
|
-
}
|
|
1
|
+
import { createContext, use, useEffect, useMemo, useRef, useState, useSyncExternalStore } from "react";
|
|
2
|
+
|
|
3
|
+
import { parsePanelId } from "./ids.js";
|
|
4
|
+
import { useMdiController } from "./MdiContext.js";
|
|
5
|
+
import type { MdiCloseOptions, MdiDocumentHandle, MdiDocumentOptions, MdiParams } from "./types.js";
|
|
6
|
+
|
|
7
|
+
export const MdiDocumentIdContext = createContext<string | null>(null);
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* The document a component is rendered in: its params, whether it is active, and
|
|
11
|
+
* the handle to set its title and dirty state or close it. Pass `onSave`/`onClosing`
|
|
12
|
+
* to take part in the close flow.
|
|
13
|
+
*/
|
|
14
|
+
export function useMdiDocument<P extends MdiParams = MdiParams>(options?: MdiDocumentOptions): MdiDocumentHandle<P> {
|
|
15
|
+
let controller = useMdiController();
|
|
16
|
+
let id = use(MdiDocumentIdContext);
|
|
17
|
+
|
|
18
|
+
if (!id) {
|
|
19
|
+
throw new Error("Mdi: useMdiDocument() must be called from a component rendered as an Mdi document.");
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
// The guards are registered once; they always call the latest callbacks.
|
|
23
|
+
let latest = useRef(options);
|
|
24
|
+
useEffect(() => {
|
|
25
|
+
latest.current = options;
|
|
26
|
+
});
|
|
27
|
+
|
|
28
|
+
let [guards] = useState<MdiDocumentOptions>(() => ({
|
|
29
|
+
onSave: () => latest.current?.onSave?.() ?? true,
|
|
30
|
+
onClosing: () => latest.current?.onClosing?.() ?? true,
|
|
31
|
+
}));
|
|
32
|
+
|
|
33
|
+
useEffect(() => controller.registerGuards(id, guards), [controller, id, guards]);
|
|
34
|
+
|
|
35
|
+
let info = useSyncExternalStore(
|
|
36
|
+
controller.subscribeStore,
|
|
37
|
+
() => controller.getDocument(id),
|
|
38
|
+
() => controller.getDocument(id),
|
|
39
|
+
);
|
|
40
|
+
|
|
41
|
+
return useMemo(() => {
|
|
42
|
+
let parsed = parsePanelId(id);
|
|
43
|
+
|
|
44
|
+
return {
|
|
45
|
+
id,
|
|
46
|
+
type: info?.type ?? parsed.type,
|
|
47
|
+
key: info?.key ?? parsed.key,
|
|
48
|
+
params: (info?.params ?? {}) as P,
|
|
49
|
+
isActive: info?.isActive ?? false,
|
|
50
|
+
dirty: info?.dirty ?? false,
|
|
51
|
+
closable: info?.closable ?? true,
|
|
52
|
+
setTitle: (title: string) => controller.setTitle(id, title),
|
|
53
|
+
setDirty: (dirty: boolean) => controller.setDirty(id, dirty),
|
|
54
|
+
close: (closeOptions?: MdiCloseOptions) => controller.close(id, closeOptions),
|
|
55
|
+
activate: () => controller.activate(id),
|
|
56
|
+
getWindow: () => controller.getWindow(id),
|
|
57
|
+
mdi: controller,
|
|
58
|
+
};
|
|
59
|
+
}, [controller, id, info]);
|
|
60
|
+
}
|
package/src/mdi/MdiPanel.tsx
CHANGED
|
@@ -1,61 +1,61 @@
|
|
|
1
|
-
import { Button } from "@digdir/designsystemet-react";
|
|
2
|
-
import {
|
|
3
|
-
import
|
|
4
|
-
import {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
function MdiErrorFallback({ error, resetErrorBoundary }: FallbackProps) {
|
|
11
|
-
let message = error instanceof Error ? error.message : String(error);
|
|
12
|
-
|
|
13
|
-
return (
|
|
14
|
-
<div className="ObMdi-error" role="alert">
|
|
15
|
-
<p className="ObMdi-error-title">{getLocalizedString("The document could not be displayed")}</p>
|
|
16
|
-
<pre className="ObMdi-error-message">{message}</pre>
|
|
17
|
-
<Button data-size="sm" variant="secondary" onClick={resetErrorBoundary}>
|
|
18
|
-
{getLocalizedString("Try again")}
|
|
19
|
-
</Button>
|
|
20
|
-
</div>
|
|
21
|
-
);
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
/**
|
|
25
|
-
* The one dockview content component. Every panel renders through it; it looks the
|
|
26
|
-
* document up by panel id and renders the component registered for its type.
|
|
27
|
-
*/
|
|
28
|
-
export function MdiPanel(props: IDockviewPanelProps) {
|
|
29
|
-
let id = props.api.id;
|
|
30
|
-
let controller = useMdiController();
|
|
31
|
-
let info = useSyncExternalStore(
|
|
32
|
-
controller.subscribeStore,
|
|
33
|
-
() => controller.getDocument(id),
|
|
34
|
-
() => controller.getDocument(id),
|
|
35
|
-
);
|
|
36
|
-
|
|
37
|
-
if (!info) {
|
|
38
|
-
return null;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
let definition = controller.getTypes()[info.type];
|
|
42
|
-
|
|
43
|
-
if (!definition) {
|
|
44
|
-
return (
|
|
45
|
-
<div className="ObMdi-error" role="alert">
|
|
46
|
-
<p className="ObMdi-error-title">{getLocalizedString("Unknown document type")}</p>
|
|
47
|
-
<pre className="ObMdi-error-message">{info.type}</pre>
|
|
48
|
-
</div>
|
|
49
|
-
);
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
let Component = definition.component;
|
|
53
|
-
|
|
54
|
-
return (
|
|
55
|
-
<MdiDocumentIdContext value={id}>
|
|
56
|
-
<ErrorBoundary FallbackComponent={MdiErrorFallback} resetKeys={[info.params]}>
|
|
57
|
-
<Component id={id} type={info.type} documentKey={info.key} params={info.params} />
|
|
58
|
-
</ErrorBoundary>
|
|
59
|
-
</MdiDocumentIdContext>
|
|
60
|
-
);
|
|
61
|
-
}
|
|
1
|
+
import { Button } from "@digdir/designsystemet-react";
|
|
2
|
+
import type { IDockviewPanelProps } from "dockview-react";
|
|
3
|
+
import { useSyncExternalStore } from "react";
|
|
4
|
+
import { ErrorBoundary, type FallbackProps } from "react-error-boundary";
|
|
5
|
+
|
|
6
|
+
import { useMdiController } from "./MdiContext.js";
|
|
7
|
+
import { MdiDocumentIdContext } from "./MdiDocumentContext.js";
|
|
8
|
+
import { getLocalizedString } from "../i18n.js";
|
|
9
|
+
|
|
10
|
+
function MdiErrorFallback({ error, resetErrorBoundary }: FallbackProps) {
|
|
11
|
+
let message = error instanceof Error ? error.message : String(error);
|
|
12
|
+
|
|
13
|
+
return (
|
|
14
|
+
<div className="ObMdi-error" role="alert">
|
|
15
|
+
<p className="ObMdi-error-title">{getLocalizedString("The document could not be displayed")}</p>
|
|
16
|
+
<pre className="ObMdi-error-message">{message}</pre>
|
|
17
|
+
<Button data-size="sm" variant="secondary" onClick={resetErrorBoundary}>
|
|
18
|
+
{getLocalizedString("Try again")}
|
|
19
|
+
</Button>
|
|
20
|
+
</div>
|
|
21
|
+
);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* The one dockview content component. Every panel renders through it; it looks the
|
|
26
|
+
* document up by panel id and renders the component registered for its type.
|
|
27
|
+
*/
|
|
28
|
+
export function MdiPanel(props: IDockviewPanelProps) {
|
|
29
|
+
let id = props.api.id;
|
|
30
|
+
let controller = useMdiController();
|
|
31
|
+
let info = useSyncExternalStore(
|
|
32
|
+
controller.subscribeStore,
|
|
33
|
+
() => controller.getDocument(id),
|
|
34
|
+
() => controller.getDocument(id),
|
|
35
|
+
);
|
|
36
|
+
|
|
37
|
+
if (!info) {
|
|
38
|
+
return null;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
let definition = controller.getTypes()[info.type];
|
|
42
|
+
|
|
43
|
+
if (!definition) {
|
|
44
|
+
return (
|
|
45
|
+
<div className="ObMdi-error" role="alert">
|
|
46
|
+
<p className="ObMdi-error-title">{getLocalizedString("Unknown document type")}</p>
|
|
47
|
+
<pre className="ObMdi-error-message">{info.type}</pre>
|
|
48
|
+
</div>
|
|
49
|
+
);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
let Component = definition.component;
|
|
53
|
+
|
|
54
|
+
return (
|
|
55
|
+
<MdiDocumentIdContext value={id}>
|
|
56
|
+
<ErrorBoundary FallbackComponent={MdiErrorFallback} resetKeys={[info.params]}>
|
|
57
|
+
<Component id={id} type={info.type} documentKey={info.key} params={info.params} />
|
|
58
|
+
</ErrorBoundary>
|
|
59
|
+
</MdiDocumentIdContext>
|
|
60
|
+
);
|
|
61
|
+
}
|
|
@@ -1,82 +1,86 @@
|
|
|
1
|
-
import { render, screen } from "@testing-library/react";
|
|
2
|
-
import { describe, expect, it, vi } from "vitest";
|
|
3
|
-
|
|
4
|
-
import { layoutSpecToLayout } from "./layoutSpec.js";
|
|
5
|
-
import { layoutStore } from "./layoutStore.js";
|
|
6
|
-
import { Mdi } from "./Mdi.js";
|
|
7
|
-
import { MdiProvider } from "./MdiContext.js";
|
|
8
|
-
import type { MdiDocumentProps, MdiDocumentTypes, MdiLayout, MdiLayoutSpec } from "./types.js";
|
|
9
|
-
|
|
10
|
-
vi.mock("@olenbetong/appframe-core", () => ({
|
|
11
|
-
getLocalizedString: (value: string) => value,
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
},
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
layout
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
expect(
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
1
|
+
import { render, screen } from "@testing-library/react";
|
|
2
|
+
import { describe, expect, it, vi } from "vitest";
|
|
3
|
+
|
|
4
|
+
import { layoutSpecToLayout } from "./layoutSpec.js";
|
|
5
|
+
import { layoutStore } from "./layoutStore.js";
|
|
6
|
+
import { Mdi } from "./Mdi.js";
|
|
7
|
+
import { MdiProvider } from "./MdiContext.js";
|
|
8
|
+
import type { MdiDocumentProps, MdiDocumentTypes, MdiLayout, MdiLayoutSpec } from "./types.js";
|
|
9
|
+
|
|
10
|
+
vi.mock("@olenbetong/appframe-core", () => ({
|
|
11
|
+
getLocalizedString: (value: string) => value,
|
|
12
|
+
createLocalizer: () => ({
|
|
13
|
+
getLocalizedString: (value: string) => value,
|
|
14
|
+
localize: (parts: TemplateStringsArray) => parts.join(""),
|
|
15
|
+
}),
|
|
16
|
+
}));
|
|
17
|
+
|
|
18
|
+
function Doc({ id }: MdiDocumentProps) {
|
|
19
|
+
return <div data-testid={id}>{id}</div>;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
const types: MdiDocumentTypes = {
|
|
23
|
+
explorer: { component: Doc, singleton: true, closable: false, title: "Explorer" },
|
|
24
|
+
properties: { component: Doc, singleton: true, closable: false, title: "Properties" },
|
|
25
|
+
welcome: { component: Doc, singleton: true, title: "Welcome" },
|
|
26
|
+
serie: { component: Doc, title: "Serie", restore: async () => true },
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
const spec: MdiLayoutSpec = {
|
|
30
|
+
root: {
|
|
31
|
+
direction: "horizontal",
|
|
32
|
+
children: [
|
|
33
|
+
{ tabs: [{ type: "explorer" }], hideHeader: true, locked: true },
|
|
34
|
+
{
|
|
35
|
+
direction: "vertical",
|
|
36
|
+
children: [{ tabs: [{ type: "welcome" }] }, { tabs: [{ type: "properties" }] }],
|
|
37
|
+
},
|
|
38
|
+
],
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* What dockview serialises after a panel was popped out of the welcome group: the
|
|
44
|
+
* panel sits in `popoutGroups` with the welcome group as its reference group.
|
|
45
|
+
*/
|
|
46
|
+
function layoutWithPopout(): MdiLayout {
|
|
47
|
+
let layout = layoutSpecToLayout(spec, types, 1);
|
|
48
|
+
let serieId = "serie:abc";
|
|
49
|
+
|
|
50
|
+
layout.documents[serieId] = { type: "serie", key: "abc", params: { name: "S" }, title: "S", closable: true };
|
|
51
|
+
layout.dockview.panels[serieId] = { id: serieId, contentComponent: "mdi", tabComponent: "mdi", title: "S" };
|
|
52
|
+
layout.dockview.popoutGroups = [
|
|
53
|
+
{
|
|
54
|
+
data: { id: "4", views: [serieId], activeView: serieId },
|
|
55
|
+
gridReferenceGroup: "mdi-g2",
|
|
56
|
+
position: { top: 10, left: 10, width: 300, height: 200 },
|
|
57
|
+
url: "/popout",
|
|
58
|
+
},
|
|
59
|
+
];
|
|
60
|
+
|
|
61
|
+
return layout;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
describe("Mdi restore", () => {
|
|
65
|
+
it("re-docks a popped-out document when a saved layout is restored", async () => {
|
|
66
|
+
let key = layoutStore.key("restore-popout");
|
|
67
|
+
await layoutStore.setNow(key, layoutWithPopout());
|
|
68
|
+
|
|
69
|
+
render(
|
|
70
|
+
<MdiProvider types={types}>
|
|
71
|
+
<div style={{ width: 800, height: 600 }}>
|
|
72
|
+
<Mdi id="restore-popout" layoutVersion={1} defaultLayout={spec} />
|
|
73
|
+
</div>
|
|
74
|
+
</MdiProvider>,
|
|
75
|
+
);
|
|
76
|
+
|
|
77
|
+
// dockview only mounts the content of the active tab of a group, so check the tabs.
|
|
78
|
+
expect(await screen.findByTestId("welcome")).toBeInTheDocument();
|
|
79
|
+
let tabIds = [...document.querySelectorAll("[data-tab-panel-id]")].map((tab) =>
|
|
80
|
+
tab.getAttribute("data-tab-panel-id"),
|
|
81
|
+
);
|
|
82
|
+
expect(tabIds).toEqual(["explorer", "welcome", "serie:abc", "properties"]);
|
|
83
|
+
expect(screen.getByTestId("explorer")).toBeInTheDocument();
|
|
84
|
+
expect(screen.getByTestId("properties")).toBeInTheDocument();
|
|
85
|
+
});
|
|
86
|
+
});
|
package/src/mdi/MdiTab.tsx
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
import clsx from "clsx";
|
|
2
|
-
import { DockviewDefaultTab, type IDockviewPanelHeaderProps } from "dockview-react";
|
|
3
|
-
import { useCallback, useSyncExternalStore } from "react";
|
|
4
|
-
|
|
5
|
-
import { useMdiController } from "./MdiContext.js";
|
|
6
|
-
|
|
7
|
-
/**
|
|
8
|
-
* The default tab with the close button hidden for unclosable documents, and every
|
|
9
|
-
* close (button and middle-click) routed through the controller guards.
|
|
10
|
-
*/
|
|
11
|
-
export function MdiTab(props: IDockviewPanelHeaderProps) {
|
|
12
|
-
let id = props.api.id;
|
|
13
|
-
let controller = useMdiController();
|
|
14
|
-
let info = useSyncExternalStore(
|
|
15
|
-
controller.subscribeStore,
|
|
16
|
-
() => controller.getDocument(id),
|
|
17
|
-
() => controller.getDocument(id),
|
|
18
|
-
);
|
|
19
|
-
|
|
20
|
-
let close = useCallback(() => {
|
|
21
|
-
void controller.close(id);
|
|
22
|
-
}, [controller, id]);
|
|
23
|
-
|
|
24
|
-
// DockviewDefaultTab overwrites `className`, so the state classes go on a layout-neutral wrapper.
|
|
25
|
-
return (
|
|
26
|
-
<div className={clsx("ObMdi-tab", info?.dirty && "ObMdi-tab--dirty")} style={{ display: "contents" }}>
|
|
27
|
-
<DockviewDefaultTab {...props} hideClose={info ? !info.closable : false} closeActionOverride={close} />
|
|
28
|
-
</div>
|
|
29
|
-
);
|
|
30
|
-
}
|
|
1
|
+
import clsx from "clsx";
|
|
2
|
+
import { DockviewDefaultTab, type IDockviewPanelHeaderProps } from "dockview-react";
|
|
3
|
+
import { useCallback, useSyncExternalStore } from "react";
|
|
4
|
+
|
|
5
|
+
import { useMdiController } from "./MdiContext.js";
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* The default tab with the close button hidden for unclosable documents, and every
|
|
9
|
+
* close (button and middle-click) routed through the controller guards.
|
|
10
|
+
*/
|
|
11
|
+
export function MdiTab(props: IDockviewPanelHeaderProps) {
|
|
12
|
+
let id = props.api.id;
|
|
13
|
+
let controller = useMdiController();
|
|
14
|
+
let info = useSyncExternalStore(
|
|
15
|
+
controller.subscribeStore,
|
|
16
|
+
() => controller.getDocument(id),
|
|
17
|
+
() => controller.getDocument(id),
|
|
18
|
+
);
|
|
19
|
+
|
|
20
|
+
let close = useCallback(() => {
|
|
21
|
+
void controller.close(id);
|
|
22
|
+
}, [controller, id]);
|
|
23
|
+
|
|
24
|
+
// DockviewDefaultTab overwrites `className`, so the state classes go on a layout-neutral wrapper.
|
|
25
|
+
return (
|
|
26
|
+
<div className={clsx("ObMdi-tab", info?.dirty && "ObMdi-tab--dirty")} style={{ display: "contents" }}>
|
|
27
|
+
<DockviewDefaultTab {...props} hideClose={info ? !info.closable : false} closeActionOverride={close} />
|
|
28
|
+
</div>
|
|
29
|
+
);
|
|
30
|
+
}
|