@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/host.ts
CHANGED
|
@@ -1,44 +1,44 @@
|
|
|
1
|
-
import type { SerializedDockview } from "dockview-react";
|
|
2
|
-
|
|
3
|
-
import type { MdiLocked, MdiPosition } from "./types.js";
|
|
4
|
-
|
|
5
|
-
export type MdiHostGroup = {
|
|
6
|
-
id: string;
|
|
7
|
-
panelCount: number;
|
|
8
|
-
setLocked(locked: MdiLocked): void;
|
|
9
|
-
setHeaderHidden(hidden: boolean): void;
|
|
10
|
-
};
|
|
11
|
-
|
|
12
|
-
export type MdiHostPanel = {
|
|
13
|
-
id: string;
|
|
14
|
-
group: MdiHostGroup;
|
|
15
|
-
setTitle(title: string): void;
|
|
16
|
-
setActive(): void;
|
|
17
|
-
/** Removes the panel from dockview. Fires `onDidRemovePanel`. */
|
|
18
|
-
close(): void;
|
|
19
|
-
getWindow(): Window;
|
|
20
|
-
};
|
|
21
|
-
|
|
22
|
-
export type MdiHostAddPanelOptions = {
|
|
23
|
-
id: string;
|
|
24
|
-
title: string;
|
|
25
|
-
position?: MdiPosition;
|
|
26
|
-
inactive?: boolean;
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
/**
|
|
30
|
-
* The slice of the dockview API the controller uses. Narrow on purpose, so the
|
|
31
|
-
* controller can be tested against an in-memory fake.
|
|
32
|
-
*/
|
|
33
|
-
export type MdiHost = {
|
|
34
|
-
addPanel(options: MdiHostAddPanelOptions): MdiHostPanel;
|
|
35
|
-
getPanel(id: string): MdiHostPanel | undefined;
|
|
36
|
-
getGroup(id: string): MdiHostGroup | undefined;
|
|
37
|
-
getActivePanelId(): string | undefined;
|
|
38
|
-
toJSON(): SerializedDockview;
|
|
39
|
-
fromJSON(data: SerializedDockview): void;
|
|
40
|
-
addPopoutGroup(id: string, popoutUrl: string): Promise<boolean>;
|
|
41
|
-
onDidActivePanelChange(handler: (id: string | undefined) => void): () => void;
|
|
42
|
-
onDidRemovePanel(handler: (id: string) => void): () => void;
|
|
43
|
-
onDidLayoutChange(handler: () => void): () => void;
|
|
44
|
-
};
|
|
1
|
+
import type { SerializedDockview } from "dockview-react";
|
|
2
|
+
|
|
3
|
+
import type { MdiLocked, MdiPosition } from "./types.js";
|
|
4
|
+
|
|
5
|
+
export type MdiHostGroup = {
|
|
6
|
+
id: string;
|
|
7
|
+
panelCount: number;
|
|
8
|
+
setLocked(locked: MdiLocked): void;
|
|
9
|
+
setHeaderHidden(hidden: boolean): void;
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
export type MdiHostPanel = {
|
|
13
|
+
id: string;
|
|
14
|
+
group: MdiHostGroup;
|
|
15
|
+
setTitle(title: string): void;
|
|
16
|
+
setActive(): void;
|
|
17
|
+
/** Removes the panel from dockview. Fires `onDidRemovePanel`. */
|
|
18
|
+
close(): void;
|
|
19
|
+
getWindow(): Window;
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
export type MdiHostAddPanelOptions = {
|
|
23
|
+
id: string;
|
|
24
|
+
title: string;
|
|
25
|
+
position?: MdiPosition;
|
|
26
|
+
inactive?: boolean;
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* The slice of the dockview API the controller uses. Narrow on purpose, so the
|
|
31
|
+
* controller can be tested against an in-memory fake.
|
|
32
|
+
*/
|
|
33
|
+
export type MdiHost = {
|
|
34
|
+
addPanel(options: MdiHostAddPanelOptions): MdiHostPanel;
|
|
35
|
+
getPanel(id: string): MdiHostPanel | undefined;
|
|
36
|
+
getGroup(id: string): MdiHostGroup | undefined;
|
|
37
|
+
getActivePanelId(): string | undefined;
|
|
38
|
+
toJSON(): SerializedDockview;
|
|
39
|
+
fromJSON(data: SerializedDockview): void;
|
|
40
|
+
addPopoutGroup(id: string, popoutUrl: string): Promise<boolean>;
|
|
41
|
+
onDidActivePanelChange(handler: (id: string | undefined) => void): () => void;
|
|
42
|
+
onDidRemovePanel(handler: (id: string) => void): () => void;
|
|
43
|
+
onDidLayoutChange(handler: () => void): () => void;
|
|
44
|
+
};
|
package/src/mdi/ids.test.ts
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import { describe, expect, it } from "vitest";
|
|
2
|
-
|
|
3
|
-
import { panelId, parsePanelId } from "./ids.js";
|
|
4
|
-
|
|
5
|
-
describe("panel ids", () => {
|
|
6
|
-
it("uses the type alone when there is no key", () => {
|
|
7
|
-
expect(panelId("explorer")).toBe("explorer");
|
|
8
|
-
expect(parsePanelId("explorer")).toEqual({ type: "explorer" });
|
|
9
|
-
});
|
|
10
|
-
|
|
11
|
-
it("joins type and key with a colon", () => {
|
|
12
|
-
expect(panelId("editor", "42")).toBe("editor:42");
|
|
13
|
-
expect(parsePanelId("editor:42")).toEqual({ type: "editor", key: "42" });
|
|
14
|
-
});
|
|
15
|
-
|
|
16
|
-
it("round-trips keys that contain colons", () => {
|
|
17
|
-
let id = panelId("editor", "a:b:c");
|
|
18
|
-
expect(parsePanelId(id)).toEqual({ type: "editor", key: "a:b:c" });
|
|
19
|
-
});
|
|
20
|
-
});
|
|
1
|
+
import { describe, expect, it } from "vitest";
|
|
2
|
+
|
|
3
|
+
import { panelId, parsePanelId } from "./ids.js";
|
|
4
|
+
|
|
5
|
+
describe("panel ids", () => {
|
|
6
|
+
it("uses the type alone when there is no key", () => {
|
|
7
|
+
expect(panelId("explorer")).toBe("explorer");
|
|
8
|
+
expect(parsePanelId("explorer")).toEqual({ type: "explorer" });
|
|
9
|
+
});
|
|
10
|
+
|
|
11
|
+
it("joins type and key with a colon", () => {
|
|
12
|
+
expect(panelId("editor", "42")).toBe("editor:42");
|
|
13
|
+
expect(parsePanelId("editor:42")).toEqual({ type: "editor", key: "42" });
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
it("round-trips keys that contain colons", () => {
|
|
17
|
+
let id = panelId("editor", "a:b:c");
|
|
18
|
+
expect(parsePanelId(id)).toEqual({ type: "editor", key: "a:b:c" });
|
|
19
|
+
});
|
|
20
|
+
});
|
package/src/mdi/ids.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* The panel id scheme: `type` for documents without a key (singletons) and `type:key`
|
|
3
|
-
* otherwise. Deterministic ids make "open or activate" a lookup, and join the
|
|
4
|
-
* `documents` map with dockview's own panel list.
|
|
5
|
-
*/
|
|
6
|
-
export function panelId(type: string, key?: string): string {
|
|
7
|
-
return key === undefined ? type : `${type}:${key}`;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export function parsePanelId(id: string): { type: string; key?: string } {
|
|
11
|
-
let separator = id.indexOf(":");
|
|
12
|
-
|
|
13
|
-
if (separator === -1) {
|
|
14
|
-
return { type: id };
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
return { type: id.slice(0, separator), key: id.slice(separator + 1) };
|
|
18
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* The panel id scheme: `type` for documents without a key (singletons) and `type:key`
|
|
3
|
+
* otherwise. Deterministic ids make "open or activate" a lookup, and join the
|
|
4
|
+
* `documents` map with dockview's own panel list.
|
|
5
|
+
*/
|
|
6
|
+
export function panelId(type: string, key?: string): string {
|
|
7
|
+
return key === undefined ? type : `${type}:${key}`;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export function parsePanelId(id: string): { type: string; key?: string } {
|
|
11
|
+
let separator = id.indexOf(":");
|
|
12
|
+
|
|
13
|
+
if (separator === -1) {
|
|
14
|
+
return { type: id };
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
return { type: id.slice(0, separator), key: id.slice(separator + 1) };
|
|
18
|
+
}
|
package/src/mdi/index.ts
CHANGED
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
export { Mdi, type MdiProps } from "./Mdi.js";
|
|
2
|
-
export { MdiProvider, type MdiProviderProps, useMdi, useMdiActiveDocument, useMdiDocuments } from "./MdiContext.js";
|
|
3
|
-
export { useMdiDocument } from "./MdiDocumentContext.js";
|
|
4
|
-
export { MdiConfirmCloseDialog, type MdiConfirmCloseDialogProps } from "./MdiConfirmCloseDialog.js";
|
|
5
|
-
export { panelId, parsePanelId } from "./ids.js";
|
|
6
|
-
export { layoutSpecToLayout } from "./layoutSpec.js";
|
|
7
|
-
export type {
|
|
8
|
-
MdiApi,
|
|
9
|
-
MdiCloseOptions,
|
|
10
|
-
MdiConfirmCloseResult,
|
|
11
|
-
MdiDirection,
|
|
12
|
-
MdiDocumentHandle,
|
|
13
|
-
MdiDocumentInfo,
|
|
14
|
-
MdiDocumentOptions,
|
|
15
|
-
MdiDocumentProps,
|
|
16
|
-
MdiDocumentSpec,
|
|
17
|
-
MdiDocumentState,
|
|
18
|
-
MdiDocumentType,
|
|
19
|
-
MdiDocumentTypes,
|
|
20
|
-
MdiEvents,
|
|
21
|
-
MdiGroupSpec,
|
|
22
|
-
MdiLayout,
|
|
23
|
-
MdiLayoutNode,
|
|
24
|
-
MdiLayoutSpec,
|
|
25
|
-
MdiLocked,
|
|
26
|
-
MdiOpenOptions,
|
|
27
|
-
MdiParams,
|
|
28
|
-
MdiPosition,
|
|
29
|
-
MdiRestoreResult,
|
|
30
|
-
MdiSplitSpec,
|
|
31
|
-
} from "./types.js";
|
|
1
|
+
export { Mdi, type MdiProps } from "./Mdi.js";
|
|
2
|
+
export { MdiProvider, type MdiProviderProps, useMdi, useMdiActiveDocument, useMdiDocuments } from "./MdiContext.js";
|
|
3
|
+
export { useMdiDocument } from "./MdiDocumentContext.js";
|
|
4
|
+
export { MdiConfirmCloseDialog, type MdiConfirmCloseDialogProps } from "./MdiConfirmCloseDialog.js";
|
|
5
|
+
export { panelId, parsePanelId } from "./ids.js";
|
|
6
|
+
export { layoutSpecToLayout } from "./layoutSpec.js";
|
|
7
|
+
export type {
|
|
8
|
+
MdiApi,
|
|
9
|
+
MdiCloseOptions,
|
|
10
|
+
MdiConfirmCloseResult,
|
|
11
|
+
MdiDirection,
|
|
12
|
+
MdiDocumentHandle,
|
|
13
|
+
MdiDocumentInfo,
|
|
14
|
+
MdiDocumentOptions,
|
|
15
|
+
MdiDocumentProps,
|
|
16
|
+
MdiDocumentSpec,
|
|
17
|
+
MdiDocumentState,
|
|
18
|
+
MdiDocumentType,
|
|
19
|
+
MdiDocumentTypes,
|
|
20
|
+
MdiEvents,
|
|
21
|
+
MdiGroupSpec,
|
|
22
|
+
MdiLayout,
|
|
23
|
+
MdiLayoutNode,
|
|
24
|
+
MdiLayoutSpec,
|
|
25
|
+
MdiLocked,
|
|
26
|
+
MdiOpenOptions,
|
|
27
|
+
MdiParams,
|
|
28
|
+
MdiPosition,
|
|
29
|
+
MdiRestoreResult,
|
|
30
|
+
MdiSplitSpec,
|
|
31
|
+
} from "./types.js";
|
|
@@ -1,156 +1,156 @@
|
|
|
1
|
-
import { describe, expect, it } from "vitest";
|
|
2
|
-
|
|
3
|
-
import { dockPopoutGroups, missingRequiredDocuments, placementFor, pruneLayout } from "./layoutRestore.js";
|
|
4
|
-
import { layoutSpecToLayout, type MdiGroupState } from "./layoutSpec.js";
|
|
5
|
-
import { testSpec, testTypes } from "./testTypes.js";
|
|
6
|
-
import type { MdiLayout } from "./types.js";
|
|
7
|
-
|
|
8
|
-
type Node = { type: string; size?: number; visible?: boolean; data: Node[] | MdiGroupState };
|
|
9
|
-
|
|
10
|
-
function leaves(node: Node): MdiGroupState[] {
|
|
11
|
-
return node.type === "leaf" ? [node.data as MdiGroupState] : (node.data as Node[]).flatMap(leaves);
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
function baseLayout(): MdiLayout {
|
|
15
|
-
return layoutSpecToLayout(testSpec, testTypes, 1);
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
describe("dockPopoutGroups", () => {
|
|
19
|
-
it("returns the layout untouched when nothing is popped out", () => {
|
|
20
|
-
let layout = baseLayout();
|
|
21
|
-
let result = dockPopoutGroups(layout.dockview);
|
|
22
|
-
|
|
23
|
-
expect(result.grid).toEqual(layout.dockview.grid);
|
|
24
|
-
expect(result.popoutGroups).toBeUndefined();
|
|
25
|
-
});
|
|
26
|
-
|
|
27
|
-
it("puts a popped-out group back into its hidden reference group", () => {
|
|
28
|
-
let layout = baseLayout();
|
|
29
|
-
let root = layout.dockview.grid.root as Node;
|
|
30
|
-
let explorerLeaf = (root.data as Node[])[0]!;
|
|
31
|
-
explorerLeaf.visible = false;
|
|
32
|
-
(explorerLeaf.data as MdiGroupState).views = [];
|
|
33
|
-
delete (explorerLeaf.data as MdiGroupState).activeView;
|
|
34
|
-
layout.dockview.popoutGroups = [
|
|
35
|
-
{
|
|
36
|
-
data: { id: "popout-1", views: ["explorer"], activeView: "explorer" },
|
|
37
|
-
gridReferenceGroup: "mdi-g1",
|
|
38
|
-
position: null,
|
|
39
|
-
},
|
|
40
|
-
];
|
|
41
|
-
|
|
42
|
-
let result = dockPopoutGroups(layout.dockview);
|
|
43
|
-
let restored = (result.grid.root.data as Node[])[0]!;
|
|
44
|
-
|
|
45
|
-
expect(result.popoutGroups).toBeUndefined();
|
|
46
|
-
expect(restored.visible).toBeUndefined();
|
|
47
|
-
expect((restored.data as MdiGroupState).views).toEqual(["explorer"]);
|
|
48
|
-
expect((restored.data as MdiGroupState).activeView).toBe("explorer");
|
|
49
|
-
});
|
|
50
|
-
|
|
51
|
-
it("appends a popped-out group to the root when it has no reference group", () => {
|
|
52
|
-
let layout = baseLayout();
|
|
53
|
-
layout.dockview.popoutGroups = [
|
|
54
|
-
{ data: { id: "mdi-g1", views: ["settings"], activeView: "settings" }, position: null },
|
|
55
|
-
];
|
|
56
|
-
layout.dockview.floatingGroups = [
|
|
57
|
-
{ data: { id: "float", views: ["editor:c"] }, position: { top: 0, left: 0, width: 100, height: 100 } },
|
|
58
|
-
];
|
|
59
|
-
|
|
60
|
-
let result = dockPopoutGroups(layout.dockview);
|
|
61
|
-
let ids = leaves(result.grid.root as Node).map((group) => group.id);
|
|
62
|
-
|
|
63
|
-
expect(ids).toEqual(["mdi-g1", "mdi-g2", "mdi-g3", "mdi-g1-docked", "float"]);
|
|
64
|
-
expect(result.floatingGroups).toBeUndefined();
|
|
65
|
-
});
|
|
66
|
-
});
|
|
67
|
-
|
|
68
|
-
describe("pruneLayout", () => {
|
|
69
|
-
it("drops documents, panels, empty groups and collapses single-leaf branches", () => {
|
|
70
|
-
let layout = baseLayout();
|
|
71
|
-
let pruned = pruneLayout(layout, new Set(["explorer", "editor:a"]));
|
|
72
|
-
|
|
73
|
-
expect(Object.keys(pruned.documents)).toEqual(["explorer", "editor:a"]);
|
|
74
|
-
expect(Object.keys(pruned.dockview.panels)).toEqual(["explorer", "editor:a"]);
|
|
75
|
-
|
|
76
|
-
let root = pruned.dockview.grid.root as Node;
|
|
77
|
-
let children = root.data as Node[];
|
|
78
|
-
expect(children).toHaveLength(2);
|
|
79
|
-
// The vertical branch lost its properties group and now wraps a single leaf, so it collapses.
|
|
80
|
-
expect(children[1]!.type).toBe("leaf");
|
|
81
|
-
expect(children[1]!.size).toBe(750);
|
|
82
|
-
expect((children[1]!.data as MdiGroupState).views).toEqual(["editor:a"]);
|
|
83
|
-
expect((children[1]!.data as MdiGroupState).activeView).toBe("editor:a");
|
|
84
|
-
});
|
|
85
|
-
|
|
86
|
-
it("clears the active group when it was removed", () => {
|
|
87
|
-
let layout = baseLayout();
|
|
88
|
-
let pruned = pruneLayout(layout, new Set(["editor:a"]));
|
|
89
|
-
|
|
90
|
-
expect(pruned.dockview.activeGroup).toBeUndefined();
|
|
91
|
-
});
|
|
92
|
-
|
|
93
|
-
it("keeps the active group when it survives", () => {
|
|
94
|
-
let layout = baseLayout();
|
|
95
|
-
let pruned = pruneLayout(layout, new Set(["explorer"]));
|
|
96
|
-
|
|
97
|
-
expect(pruned.dockview.activeGroup).toBe("mdi-g1");
|
|
98
|
-
});
|
|
99
|
-
|
|
100
|
-
it("returns an empty root when nothing is kept", () => {
|
|
101
|
-
let pruned = pruneLayout(baseLayout(), new Set());
|
|
102
|
-
|
|
103
|
-
expect(pruned.documents).toEqual({});
|
|
104
|
-
expect(pruned.dockview.grid.root).toEqual({ type: "branch", size: 1000, data: [] });
|
|
105
|
-
});
|
|
106
|
-
});
|
|
107
|
-
|
|
108
|
-
describe("missingRequiredDocuments", () => {
|
|
109
|
-
it("lists unclosable spec documents that are not in the layout", () => {
|
|
110
|
-
let layout = pruneLayout(baseLayout(), new Set(["editor:a", "editor:b"]));
|
|
111
|
-
let missing = missingRequiredDocuments(testSpec, testTypes, layout);
|
|
112
|
-
|
|
113
|
-
expect(missing.map((document) => document.id)).toEqual(["explorer", "properties"]);
|
|
114
|
-
});
|
|
115
|
-
|
|
116
|
-
it("is empty for the default layout", () => {
|
|
117
|
-
expect(missingRequiredDocuments(testSpec, testTypes, baseLayout())).toEqual([]);
|
|
118
|
-
});
|
|
119
|
-
});
|
|
120
|
-
|
|
121
|
-
describe("placementFor", () => {
|
|
122
|
-
it("places a document with an open sibling tab in that group", () => {
|
|
123
|
-
let existing = new Set(["explorer", "editor:b"]);
|
|
124
|
-
expect(placementFor(testSpec, "editor:a", testTypes, existing).position).toEqual({
|
|
125
|
-
referencePanel: "editor:b",
|
|
126
|
-
direction: "within",
|
|
127
|
-
});
|
|
128
|
-
});
|
|
129
|
-
|
|
130
|
-
it("places a document next to the nearest sibling subtree", () => {
|
|
131
|
-
let existing = new Set(["explorer", "editor:a"]);
|
|
132
|
-
let { position, groupSpec } = placementFor(testSpec, "properties", testTypes, existing);
|
|
133
|
-
|
|
134
|
-
expect(position).toEqual({ referencePanel: "editor:a", direction: "below" });
|
|
135
|
-
expect(groupSpec?.tabs[0]?.type).toBe("properties");
|
|
136
|
-
});
|
|
137
|
-
|
|
138
|
-
it("walks up to the parent split when the sibling subtree is empty", () => {
|
|
139
|
-
let existing = new Set(["explorer"]);
|
|
140
|
-
expect(placementFor(testSpec, "properties", testTypes, existing).position).toEqual({
|
|
141
|
-
referencePanel: "explorer",
|
|
142
|
-
direction: "right",
|
|
143
|
-
});
|
|
144
|
-
expect(placementFor(testSpec, "explorer", testTypes, new Set(["editor:a"])).position).toEqual({
|
|
145
|
-
referencePanel: "editor:a",
|
|
146
|
-
direction: "left",
|
|
147
|
-
});
|
|
148
|
-
});
|
|
149
|
-
|
|
150
|
-
it("falls back to the right edge", () => {
|
|
151
|
-
expect(placementFor(testSpec, "explorer", testTypes, new Set()).position).toEqual({ direction: "right" });
|
|
152
|
-
expect(placementFor(testSpec, "settings", testTypes, new Set(["explorer"])).position).toEqual({
|
|
153
|
-
direction: "right",
|
|
154
|
-
});
|
|
155
|
-
});
|
|
156
|
-
});
|
|
1
|
+
import { describe, expect, it } from "vitest";
|
|
2
|
+
|
|
3
|
+
import { dockPopoutGroups, missingRequiredDocuments, placementFor, pruneLayout } from "./layoutRestore.js";
|
|
4
|
+
import { layoutSpecToLayout, type MdiGroupState } from "./layoutSpec.js";
|
|
5
|
+
import { testSpec, testTypes } from "./testTypes.js";
|
|
6
|
+
import type { MdiLayout } from "./types.js";
|
|
7
|
+
|
|
8
|
+
type Node = { type: string; size?: number; visible?: boolean; data: Node[] | MdiGroupState };
|
|
9
|
+
|
|
10
|
+
function leaves(node: Node): MdiGroupState[] {
|
|
11
|
+
return node.type === "leaf" ? [node.data as MdiGroupState] : (node.data as Node[]).flatMap(leaves);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
function baseLayout(): MdiLayout {
|
|
15
|
+
return layoutSpecToLayout(testSpec, testTypes, 1);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
describe("dockPopoutGroups", () => {
|
|
19
|
+
it("returns the layout untouched when nothing is popped out", () => {
|
|
20
|
+
let layout = baseLayout();
|
|
21
|
+
let result = dockPopoutGroups(layout.dockview);
|
|
22
|
+
|
|
23
|
+
expect(result.grid).toEqual(layout.dockview.grid);
|
|
24
|
+
expect(result.popoutGroups).toBeUndefined();
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
it("puts a popped-out group back into its hidden reference group", () => {
|
|
28
|
+
let layout = baseLayout();
|
|
29
|
+
let root = layout.dockview.grid.root as Node;
|
|
30
|
+
let explorerLeaf = (root.data as Node[])[0]!;
|
|
31
|
+
explorerLeaf.visible = false;
|
|
32
|
+
(explorerLeaf.data as MdiGroupState).views = [];
|
|
33
|
+
delete (explorerLeaf.data as MdiGroupState).activeView;
|
|
34
|
+
layout.dockview.popoutGroups = [
|
|
35
|
+
{
|
|
36
|
+
data: { id: "popout-1", views: ["explorer"], activeView: "explorer" },
|
|
37
|
+
gridReferenceGroup: "mdi-g1",
|
|
38
|
+
position: null,
|
|
39
|
+
},
|
|
40
|
+
];
|
|
41
|
+
|
|
42
|
+
let result = dockPopoutGroups(layout.dockview);
|
|
43
|
+
let restored = (result.grid.root.data as Node[])[0]!;
|
|
44
|
+
|
|
45
|
+
expect(result.popoutGroups).toBeUndefined();
|
|
46
|
+
expect(restored.visible).toBeUndefined();
|
|
47
|
+
expect((restored.data as MdiGroupState).views).toEqual(["explorer"]);
|
|
48
|
+
expect((restored.data as MdiGroupState).activeView).toBe("explorer");
|
|
49
|
+
});
|
|
50
|
+
|
|
51
|
+
it("appends a popped-out group to the root when it has no reference group", () => {
|
|
52
|
+
let layout = baseLayout();
|
|
53
|
+
layout.dockview.popoutGroups = [
|
|
54
|
+
{ data: { id: "mdi-g1", views: ["settings"], activeView: "settings" }, position: null },
|
|
55
|
+
];
|
|
56
|
+
layout.dockview.floatingGroups = [
|
|
57
|
+
{ data: { id: "float", views: ["editor:c"] }, position: { top: 0, left: 0, width: 100, height: 100 } },
|
|
58
|
+
];
|
|
59
|
+
|
|
60
|
+
let result = dockPopoutGroups(layout.dockview);
|
|
61
|
+
let ids = leaves(result.grid.root as Node).map((group) => group.id);
|
|
62
|
+
|
|
63
|
+
expect(ids).toEqual(["mdi-g1", "mdi-g2", "mdi-g3", "mdi-g1-docked", "float"]);
|
|
64
|
+
expect(result.floatingGroups).toBeUndefined();
|
|
65
|
+
});
|
|
66
|
+
});
|
|
67
|
+
|
|
68
|
+
describe("pruneLayout", () => {
|
|
69
|
+
it("drops documents, panels, empty groups and collapses single-leaf branches", () => {
|
|
70
|
+
let layout = baseLayout();
|
|
71
|
+
let pruned = pruneLayout(layout, new Set(["explorer", "editor:a"]));
|
|
72
|
+
|
|
73
|
+
expect(Object.keys(pruned.documents)).toEqual(["explorer", "editor:a"]);
|
|
74
|
+
expect(Object.keys(pruned.dockview.panels)).toEqual(["explorer", "editor:a"]);
|
|
75
|
+
|
|
76
|
+
let root = pruned.dockview.grid.root as Node;
|
|
77
|
+
let children = root.data as Node[];
|
|
78
|
+
expect(children).toHaveLength(2);
|
|
79
|
+
// The vertical branch lost its properties group and now wraps a single leaf, so it collapses.
|
|
80
|
+
expect(children[1]!.type).toBe("leaf");
|
|
81
|
+
expect(children[1]!.size).toBe(750);
|
|
82
|
+
expect((children[1]!.data as MdiGroupState).views).toEqual(["editor:a"]);
|
|
83
|
+
expect((children[1]!.data as MdiGroupState).activeView).toBe("editor:a");
|
|
84
|
+
});
|
|
85
|
+
|
|
86
|
+
it("clears the active group when it was removed", () => {
|
|
87
|
+
let layout = baseLayout();
|
|
88
|
+
let pruned = pruneLayout(layout, new Set(["editor:a"]));
|
|
89
|
+
|
|
90
|
+
expect(pruned.dockview.activeGroup).toBeUndefined();
|
|
91
|
+
});
|
|
92
|
+
|
|
93
|
+
it("keeps the active group when it survives", () => {
|
|
94
|
+
let layout = baseLayout();
|
|
95
|
+
let pruned = pruneLayout(layout, new Set(["explorer"]));
|
|
96
|
+
|
|
97
|
+
expect(pruned.dockview.activeGroup).toBe("mdi-g1");
|
|
98
|
+
});
|
|
99
|
+
|
|
100
|
+
it("returns an empty root when nothing is kept", () => {
|
|
101
|
+
let pruned = pruneLayout(baseLayout(), new Set());
|
|
102
|
+
|
|
103
|
+
expect(pruned.documents).toEqual({});
|
|
104
|
+
expect(pruned.dockview.grid.root).toEqual({ type: "branch", size: 1000, data: [] });
|
|
105
|
+
});
|
|
106
|
+
});
|
|
107
|
+
|
|
108
|
+
describe("missingRequiredDocuments", () => {
|
|
109
|
+
it("lists unclosable spec documents that are not in the layout", () => {
|
|
110
|
+
let layout = pruneLayout(baseLayout(), new Set(["editor:a", "editor:b"]));
|
|
111
|
+
let missing = missingRequiredDocuments(testSpec, testTypes, layout);
|
|
112
|
+
|
|
113
|
+
expect(missing.map((document) => document.id)).toEqual(["explorer", "properties"]);
|
|
114
|
+
});
|
|
115
|
+
|
|
116
|
+
it("is empty for the default layout", () => {
|
|
117
|
+
expect(missingRequiredDocuments(testSpec, testTypes, baseLayout())).toEqual([]);
|
|
118
|
+
});
|
|
119
|
+
});
|
|
120
|
+
|
|
121
|
+
describe("placementFor", () => {
|
|
122
|
+
it("places a document with an open sibling tab in that group", () => {
|
|
123
|
+
let existing = new Set(["explorer", "editor:b"]);
|
|
124
|
+
expect(placementFor(testSpec, "editor:a", testTypes, existing).position).toEqual({
|
|
125
|
+
referencePanel: "editor:b",
|
|
126
|
+
direction: "within",
|
|
127
|
+
});
|
|
128
|
+
});
|
|
129
|
+
|
|
130
|
+
it("places a document next to the nearest sibling subtree", () => {
|
|
131
|
+
let existing = new Set(["explorer", "editor:a"]);
|
|
132
|
+
let { position, groupSpec } = placementFor(testSpec, "properties", testTypes, existing);
|
|
133
|
+
|
|
134
|
+
expect(position).toEqual({ referencePanel: "editor:a", direction: "below" });
|
|
135
|
+
expect(groupSpec?.tabs[0]?.type).toBe("properties");
|
|
136
|
+
});
|
|
137
|
+
|
|
138
|
+
it("walks up to the parent split when the sibling subtree is empty", () => {
|
|
139
|
+
let existing = new Set(["explorer"]);
|
|
140
|
+
expect(placementFor(testSpec, "properties", testTypes, existing).position).toEqual({
|
|
141
|
+
referencePanel: "explorer",
|
|
142
|
+
direction: "right",
|
|
143
|
+
});
|
|
144
|
+
expect(placementFor(testSpec, "explorer", testTypes, new Set(["editor:a"])).position).toEqual({
|
|
145
|
+
referencePanel: "editor:a",
|
|
146
|
+
direction: "left",
|
|
147
|
+
});
|
|
148
|
+
});
|
|
149
|
+
|
|
150
|
+
it("falls back to the right edge", () => {
|
|
151
|
+
expect(placementFor(testSpec, "explorer", testTypes, new Set()).position).toEqual({ direction: "right" });
|
|
152
|
+
expect(placementFor(testSpec, "settings", testTypes, new Set(["explorer"])).position).toEqual({
|
|
153
|
+
direction: "right",
|
|
154
|
+
});
|
|
155
|
+
});
|
|
156
|
+
});
|