@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/dockviewHost.ts
CHANGED
|
@@ -1,132 +1,132 @@
|
|
|
1
|
-
import type { AddPanelOptions, DockviewApi, IDockviewGroupPanel, IDockviewPanel } from "dockview-react";
|
|
2
|
-
|
|
3
|
-
import type { MdiHost, MdiHostGroup, MdiHostPanel } from "./host.js";
|
|
4
|
-
import { MDI_COMPONENT } from "./layoutSpec.js";
|
|
5
|
-
import type { MdiPosition } from "./types.js";
|
|
6
|
-
|
|
7
|
-
function wrapGroup(group: IDockviewGroupPanel): MdiHostGroup {
|
|
8
|
-
return {
|
|
9
|
-
id: group.id,
|
|
10
|
-
get panelCount() {
|
|
11
|
-
return group.panels.length;
|
|
12
|
-
},
|
|
13
|
-
setLocked(locked) {
|
|
14
|
-
group.locked = locked;
|
|
15
|
-
},
|
|
16
|
-
setHeaderHidden(hidden) {
|
|
17
|
-
group.model.header.hidden = hidden;
|
|
18
|
-
},
|
|
19
|
-
};
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
function wrapPanel(panel: IDockviewPanel): MdiHostPanel {
|
|
23
|
-
return {
|
|
24
|
-
id: panel.id,
|
|
25
|
-
get group() {
|
|
26
|
-
return wrapGroup(panel.group);
|
|
27
|
-
},
|
|
28
|
-
setTitle: (title) => panel.api.setTitle(title),
|
|
29
|
-
setActive: () => panel.api.setActive(),
|
|
30
|
-
close: () => panel.api.close(),
|
|
31
|
-
getWindow: () => panel.api.getWindow(),
|
|
32
|
-
};
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
function toPosition(position: MdiPosition): AddPanelOptions["position"] {
|
|
36
|
-
if ("referencePanel" in position) {
|
|
37
|
-
return { referencePanel: position.referencePanel, direction: position.direction, index: position.index };
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
return { direction: position.direction };
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
/** A group that shows tabs and accepts documents: not locked, header visible. */
|
|
44
|
-
function isDocumentGroup(group: IDockviewGroupPanel): boolean {
|
|
45
|
-
return !group.locked && !group.model.header.hidden;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
/** Adapts the dockview API to the slice the controller works against. */
|
|
49
|
-
export function createDockviewHost(api: DockviewApi): MdiHost {
|
|
50
|
-
// Where new documents go by default: the active group, unless that is a fixed pane
|
|
51
|
-
// (locked or without a tab bar), then the document group that was active most recently.
|
|
52
|
-
let lastDocumentGroup: string | undefined;
|
|
53
|
-
api.onDidActivePanelChange((event) => {
|
|
54
|
-
let group = event.panel?.group;
|
|
55
|
-
if (group && isDocumentGroup(group)) lastDocumentGroup = group.id;
|
|
56
|
-
});
|
|
57
|
-
|
|
58
|
-
function defaultPosition(): AddPanelOptions["position"] {
|
|
59
|
-
let active = api.activePanel;
|
|
60
|
-
|
|
61
|
-
if (active && isDocumentGroup(active.group)) {
|
|
62
|
-
return { referencePanel: active.id, direction: "within" };
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
let group = (lastDocumentGroup && api.getGroup(lastDocumentGroup)) || api.groups.find(isDocumentGroup);
|
|
66
|
-
return group ? { referenceGroup: group.id, direction: "within" } : undefined;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
return {
|
|
70
|
-
addPanel({ id, title, position, inactive }) {
|
|
71
|
-
let panel = api.addPanel({
|
|
72
|
-
id,
|
|
73
|
-
title,
|
|
74
|
-
component: MDI_COMPONENT,
|
|
75
|
-
tabComponent: MDI_COMPONENT,
|
|
76
|
-
position: position ? toPosition(position) : defaultPosition(),
|
|
77
|
-
inactive,
|
|
78
|
-
});
|
|
79
|
-
|
|
80
|
-
return wrapPanel(panel);
|
|
81
|
-
},
|
|
82
|
-
getPanel(id) {
|
|
83
|
-
let panel = api.getPanel(id);
|
|
84
|
-
return panel ? wrapPanel(panel) : undefined;
|
|
85
|
-
},
|
|
86
|
-
getGroup(id) {
|
|
87
|
-
let group = api.getGroup(id);
|
|
88
|
-
return group ? wrapGroup(group) : undefined;
|
|
89
|
-
},
|
|
90
|
-
getActivePanelId: () => api.activePanel?.id,
|
|
91
|
-
toJSON: () => api.toJSON(),
|
|
92
|
-
fromJSON: (data) => api.fromJSON(data),
|
|
93
|
-
async addPopoutGroup(id, popoutUrl) {
|
|
94
|
-
let panel = api.getPanel(id);
|
|
95
|
-
return panel ? api.addPopoutGroup(panel, { popoutUrl }) : false;
|
|
96
|
-
},
|
|
97
|
-
onDidActivePanelChange(handler) {
|
|
98
|
-
let disposable = api.onDidActivePanelChange((event) => handler(event.panel?.id));
|
|
99
|
-
return () => disposable.dispose();
|
|
100
|
-
},
|
|
101
|
-
onDidRemovePanel(handler) {
|
|
102
|
-
let disposable = api.onDidRemovePanel((panel) => handler(panel.id));
|
|
103
|
-
return () => disposable.dispose();
|
|
104
|
-
},
|
|
105
|
-
onDidLayoutChange(handler) {
|
|
106
|
-
let disposable = api.onDidLayoutChange(() => handler());
|
|
107
|
-
return () => disposable.dispose();
|
|
108
|
-
},
|
|
109
|
-
};
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
/**
|
|
113
|
-
* dockview copies the stylesheets into a popout window, but not the attributes
|
|
114
|
-
* Designsystemet keys its tokens off (`data-color-scheme`, `data-size`, `lang`, …).
|
|
115
|
-
*/
|
|
116
|
-
export function copyDocumentAttributes(from: Document, to: Document) {
|
|
117
|
-
let pairs: [Element, Element][] = [
|
|
118
|
-
[from.documentElement, to.documentElement],
|
|
119
|
-
[from.body, to.body],
|
|
120
|
-
];
|
|
121
|
-
|
|
122
|
-
for (let [source, target] of pairs) {
|
|
123
|
-
for (let attribute of Array.from(source.attributes)) {
|
|
124
|
-
if (attribute.name === "lang" || attribute.name === "class" || attribute.name.startsWith("data-")) {
|
|
125
|
-
target.setAttribute(attribute.name, attribute.value);
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
to.body.style.margin = "0";
|
|
131
|
-
to.body.style.overflow = "hidden";
|
|
132
|
-
}
|
|
1
|
+
import type { AddPanelOptions, DockviewApi, IDockviewGroupPanel, IDockviewPanel } from "dockview-react";
|
|
2
|
+
|
|
3
|
+
import type { MdiHost, MdiHostGroup, MdiHostPanel } from "./host.js";
|
|
4
|
+
import { MDI_COMPONENT } from "./layoutSpec.js";
|
|
5
|
+
import type { MdiPosition } from "./types.js";
|
|
6
|
+
|
|
7
|
+
function wrapGroup(group: IDockviewGroupPanel): MdiHostGroup {
|
|
8
|
+
return {
|
|
9
|
+
id: group.id,
|
|
10
|
+
get panelCount() {
|
|
11
|
+
return group.panels.length;
|
|
12
|
+
},
|
|
13
|
+
setLocked(locked) {
|
|
14
|
+
group.locked = locked;
|
|
15
|
+
},
|
|
16
|
+
setHeaderHidden(hidden) {
|
|
17
|
+
group.model.header.hidden = hidden;
|
|
18
|
+
},
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
function wrapPanel(panel: IDockviewPanel): MdiHostPanel {
|
|
23
|
+
return {
|
|
24
|
+
id: panel.id,
|
|
25
|
+
get group() {
|
|
26
|
+
return wrapGroup(panel.group);
|
|
27
|
+
},
|
|
28
|
+
setTitle: (title) => panel.api.setTitle(title),
|
|
29
|
+
setActive: () => panel.api.setActive(),
|
|
30
|
+
close: () => panel.api.close(),
|
|
31
|
+
getWindow: () => panel.api.getWindow(),
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
function toPosition(position: MdiPosition): AddPanelOptions["position"] {
|
|
36
|
+
if ("referencePanel" in position) {
|
|
37
|
+
return { referencePanel: position.referencePanel, direction: position.direction, index: position.index };
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
return { direction: position.direction };
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
/** A group that shows tabs and accepts documents: not locked, header visible. */
|
|
44
|
+
function isDocumentGroup(group: IDockviewGroupPanel): boolean {
|
|
45
|
+
return !group.locked && !group.model.header.hidden;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/** Adapts the dockview API to the slice the controller works against. */
|
|
49
|
+
export function createDockviewHost(api: DockviewApi): MdiHost {
|
|
50
|
+
// Where new documents go by default: the active group, unless that is a fixed pane
|
|
51
|
+
// (locked or without a tab bar), then the document group that was active most recently.
|
|
52
|
+
let lastDocumentGroup: string | undefined;
|
|
53
|
+
api.onDidActivePanelChange((event) => {
|
|
54
|
+
let group = event.panel?.group;
|
|
55
|
+
if (group && isDocumentGroup(group)) lastDocumentGroup = group.id;
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
function defaultPosition(): AddPanelOptions["position"] {
|
|
59
|
+
let active = api.activePanel;
|
|
60
|
+
|
|
61
|
+
if (active && isDocumentGroup(active.group)) {
|
|
62
|
+
return { referencePanel: active.id, direction: "within" };
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
let group = (lastDocumentGroup && api.getGroup(lastDocumentGroup)) || api.groups.find(isDocumentGroup);
|
|
66
|
+
return group ? { referenceGroup: group.id, direction: "within" } : undefined;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
return {
|
|
70
|
+
addPanel({ id, title, position, inactive }) {
|
|
71
|
+
let panel = api.addPanel({
|
|
72
|
+
id,
|
|
73
|
+
title,
|
|
74
|
+
component: MDI_COMPONENT,
|
|
75
|
+
tabComponent: MDI_COMPONENT,
|
|
76
|
+
position: position ? toPosition(position) : defaultPosition(),
|
|
77
|
+
inactive,
|
|
78
|
+
});
|
|
79
|
+
|
|
80
|
+
return wrapPanel(panel);
|
|
81
|
+
},
|
|
82
|
+
getPanel(id) {
|
|
83
|
+
let panel = api.getPanel(id);
|
|
84
|
+
return panel ? wrapPanel(panel) : undefined;
|
|
85
|
+
},
|
|
86
|
+
getGroup(id) {
|
|
87
|
+
let group = api.getGroup(id);
|
|
88
|
+
return group ? wrapGroup(group) : undefined;
|
|
89
|
+
},
|
|
90
|
+
getActivePanelId: () => api.activePanel?.id,
|
|
91
|
+
toJSON: () => api.toJSON(),
|
|
92
|
+
fromJSON: (data) => api.fromJSON(data),
|
|
93
|
+
async addPopoutGroup(id, popoutUrl) {
|
|
94
|
+
let panel = api.getPanel(id);
|
|
95
|
+
return panel ? api.addPopoutGroup(panel, { popoutUrl }) : false;
|
|
96
|
+
},
|
|
97
|
+
onDidActivePanelChange(handler) {
|
|
98
|
+
let disposable = api.onDidActivePanelChange((event) => handler(event.panel?.id));
|
|
99
|
+
return () => disposable.dispose();
|
|
100
|
+
},
|
|
101
|
+
onDidRemovePanel(handler) {
|
|
102
|
+
let disposable = api.onDidRemovePanel((panel) => handler(panel.id));
|
|
103
|
+
return () => disposable.dispose();
|
|
104
|
+
},
|
|
105
|
+
onDidLayoutChange(handler) {
|
|
106
|
+
let disposable = api.onDidLayoutChange(() => handler());
|
|
107
|
+
return () => disposable.dispose();
|
|
108
|
+
},
|
|
109
|
+
};
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
/**
|
|
113
|
+
* dockview copies the stylesheets into a popout window, but not the attributes
|
|
114
|
+
* Designsystemet keys its tokens off (`data-color-scheme`, `data-size`, `lang`, …).
|
|
115
|
+
*/
|
|
116
|
+
export function copyDocumentAttributes(from: Document, to: Document) {
|
|
117
|
+
let pairs: [Element, Element][] = [
|
|
118
|
+
[from.documentElement, to.documentElement],
|
|
119
|
+
[from.body, to.body],
|
|
120
|
+
];
|
|
121
|
+
|
|
122
|
+
for (let [source, target] of pairs) {
|
|
123
|
+
for (let attribute of Array.from(source.attributes)) {
|
|
124
|
+
if (attribute.name === "lang" || attribute.name === "class" || attribute.name.startsWith("data-")) {
|
|
125
|
+
target.setAttribute(attribute.name, attribute.value);
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
to.body.style.margin = "0";
|
|
131
|
+
to.body.style.overflow = "hidden";
|
|
132
|
+
}
|
package/src/mdi/fakeHost.ts
CHANGED
|
@@ -1,200 +1,200 @@
|
|
|
1
|
-
import type { SerializedDockview } from "dockview-react";
|
|
2
|
-
|
|
3
|
-
import type { MdiHost, MdiHostAddPanelOptions, MdiHostGroup, MdiHostPanel } from "./host.js";
|
|
4
|
-
import type { MdiGroupState } from "./layoutSpec.js";
|
|
5
|
-
import type { MdiLocked } from "./types.js";
|
|
6
|
-
|
|
7
|
-
type FakePanel = { id: string; title: string; groupId: string };
|
|
8
|
-
type FakeGroup = { id: string; locked: MdiLocked; headerHidden: boolean };
|
|
9
|
-
|
|
10
|
-
/**
|
|
11
|
-
* An in-memory stand-in for dockview: one flat list of groups, panels with a title
|
|
12
|
-
* and a group, and the events the controller listens to.
|
|
13
|
-
*/
|
|
14
|
-
export function createFakeHost() {
|
|
15
|
-
let panels = new Map<string, FakePanel>();
|
|
16
|
-
let groups = new Map<string, FakeGroup>();
|
|
17
|
-
let activeId: string | undefined;
|
|
18
|
-
let groupCounter = 0;
|
|
19
|
-
let activeHandlers: ((id: string | undefined) => void)[] = [];
|
|
20
|
-
let removeHandlers: ((id: string) => void)[] = [];
|
|
21
|
-
let layoutHandlers: (() => void)[] = [];
|
|
22
|
-
let popouts: { id: string; popoutUrl: string }[] = [];
|
|
23
|
-
|
|
24
|
-
function fireLayout() {
|
|
25
|
-
for (let handler of layoutHandlers) handler();
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
function setActive(id: string | undefined) {
|
|
29
|
-
if (id === activeId) return;
|
|
30
|
-
activeId = id;
|
|
31
|
-
for (let handler of activeHandlers) handler(id);
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
function newGroup(): FakeGroup {
|
|
35
|
-
groupCounter += 1;
|
|
36
|
-
let group = { id: `fake-g${groupCounter}`, locked: false, headerHidden: false };
|
|
37
|
-
groups.set(group.id, group);
|
|
38
|
-
return group;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
function wrapGroup(group: FakeGroup): MdiHostGroup {
|
|
42
|
-
return {
|
|
43
|
-
id: group.id,
|
|
44
|
-
get panelCount() {
|
|
45
|
-
return [...panels.values()].filter((other) => other.groupId === group.id).length;
|
|
46
|
-
},
|
|
47
|
-
setLocked: (locked) => {
|
|
48
|
-
group.locked = locked;
|
|
49
|
-
},
|
|
50
|
-
setHeaderHidden: (hidden) => {
|
|
51
|
-
group.headerHidden = hidden;
|
|
52
|
-
},
|
|
53
|
-
};
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
function wrap(panel: FakePanel): MdiHostPanel {
|
|
57
|
-
return {
|
|
58
|
-
id: panel.id,
|
|
59
|
-
get group() {
|
|
60
|
-
return wrapGroup(groups.get(panel.groupId)!);
|
|
61
|
-
},
|
|
62
|
-
setTitle: (title: string) => {
|
|
63
|
-
panel.title = title;
|
|
64
|
-
},
|
|
65
|
-
setActive: () => setActive(panel.id),
|
|
66
|
-
close: () => {
|
|
67
|
-
panels.delete(panel.id);
|
|
68
|
-
for (let handler of removeHandlers) handler(panel.id);
|
|
69
|
-
if (activeId === panel.id) {
|
|
70
|
-
setActive([...panels.keys()][0]);
|
|
71
|
-
}
|
|
72
|
-
fireLayout();
|
|
73
|
-
},
|
|
74
|
-
getWindow: () => globalThis.window,
|
|
75
|
-
};
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
let host: MdiHost = {
|
|
79
|
-
addPanel({ id, title, position, inactive }: MdiHostAddPanelOptions) {
|
|
80
|
-
let groupId: string;
|
|
81
|
-
|
|
82
|
-
if (position && "referencePanel" in position && position.direction === "within") {
|
|
83
|
-
groupId = panels.get(position.referencePanel)?.groupId ?? newGroup().id;
|
|
84
|
-
} else if (!position && activeId) {
|
|
85
|
-
groupId = panels.get(activeId)!.groupId;
|
|
86
|
-
} else {
|
|
87
|
-
groupId = newGroup().id;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
let panel = { id, title, groupId };
|
|
91
|
-
panels.set(id, panel);
|
|
92
|
-
if (!inactive) setActive(id);
|
|
93
|
-
fireLayout();
|
|
94
|
-
|
|
95
|
-
return wrap(panel);
|
|
96
|
-
},
|
|
97
|
-
getPanel(id) {
|
|
98
|
-
let panel = panels.get(id);
|
|
99
|
-
return panel ? wrap(panel) : undefined;
|
|
100
|
-
},
|
|
101
|
-
getGroup(id) {
|
|
102
|
-
let group = groups.get(id);
|
|
103
|
-
return group ? wrapGroup(group) : undefined;
|
|
104
|
-
},
|
|
105
|
-
getActivePanelId: () => activeId,
|
|
106
|
-
toJSON() {
|
|
107
|
-
let groupStates: MdiGroupState[] = [...groups.values()].map((group) => ({
|
|
108
|
-
id: group.id,
|
|
109
|
-
views: [...panels.values()].filter((panel) => panel.groupId === group.id).map((panel) => panel.id),
|
|
110
|
-
activeView: activeId && panels.get(activeId)?.groupId === group.id ? activeId : undefined,
|
|
111
|
-
locked: group.locked || undefined,
|
|
112
|
-
hideHeader: group.headerHidden || undefined,
|
|
113
|
-
}));
|
|
114
|
-
|
|
115
|
-
return {
|
|
116
|
-
grid: {
|
|
117
|
-
root: { type: "branch", size: 1000, data: groupStates.map((data) => ({ type: "leaf", data, size: 1000 })) },
|
|
118
|
-
width: 1000,
|
|
119
|
-
height: 1000,
|
|
120
|
-
orientation: "HORIZONTAL" as SerializedDockview["grid"]["orientation"],
|
|
121
|
-
},
|
|
122
|
-
panels: Object.fromEntries(
|
|
123
|
-
[...panels.values()].map((panel) => [
|
|
124
|
-
panel.id,
|
|
125
|
-
{ id: panel.id, contentComponent: "mdi", title: panel.title },
|
|
126
|
-
]),
|
|
127
|
-
),
|
|
128
|
-
activeGroup: activeId ? panels.get(activeId)?.groupId : undefined,
|
|
129
|
-
};
|
|
130
|
-
},
|
|
131
|
-
fromJSON(data) {
|
|
132
|
-
// Mimic dockview: existing panels are removed (and reported) before the new ones are created.
|
|
133
|
-
for (let id of panels.keys()) {
|
|
134
|
-
panels.delete(id);
|
|
135
|
-
for (let handler of removeHandlers) handler(id);
|
|
136
|
-
}
|
|
137
|
-
groups.clear();
|
|
138
|
-
activeId = undefined;
|
|
139
|
-
|
|
140
|
-
function visit(node: { type: string; data: unknown }) {
|
|
141
|
-
if (node.type === "leaf") {
|
|
142
|
-
let state = node.data as MdiGroupState;
|
|
143
|
-
// dockview reduces `locked` to a boolean here; the controller puts the stricter value back.
|
|
144
|
-
groups.set(state.id, { id: state.id, locked: !!state.locked, headerHidden: !!state.hideHeader });
|
|
145
|
-
for (let view of state.views) {
|
|
146
|
-
let title = data.panels[view]?.title ?? view;
|
|
147
|
-
panels.set(view, { id: view, title, groupId: state.id });
|
|
148
|
-
}
|
|
149
|
-
if (state.id === data.activeGroup) {
|
|
150
|
-
activeId = state.activeView ?? state.views[0];
|
|
151
|
-
}
|
|
152
|
-
} else {
|
|
153
|
-
for (let child of node.data as { type: string; data: unknown }[]) visit(child);
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
visit(data.grid.root);
|
|
158
|
-
activeId ??= [...panels.keys()][0];
|
|
159
|
-
for (let handler of activeHandlers) handler(activeId);
|
|
160
|
-
fireLayout();
|
|
161
|
-
},
|
|
162
|
-
async addPopoutGroup(id, popoutUrl) {
|
|
163
|
-
if (!panels.has(id)) return false;
|
|
164
|
-
popouts.push({ id, popoutUrl });
|
|
165
|
-
return true;
|
|
166
|
-
},
|
|
167
|
-
onDidActivePanelChange(handler) {
|
|
168
|
-
activeHandlers.push(handler);
|
|
169
|
-
return () => {
|
|
170
|
-
activeHandlers = activeHandlers.filter((other) => other !== handler);
|
|
171
|
-
};
|
|
172
|
-
},
|
|
173
|
-
onDidRemovePanel(handler) {
|
|
174
|
-
removeHandlers.push(handler);
|
|
175
|
-
return () => {
|
|
176
|
-
removeHandlers = removeHandlers.filter((other) => other !== handler);
|
|
177
|
-
};
|
|
178
|
-
},
|
|
179
|
-
onDidLayoutChange(handler) {
|
|
180
|
-
layoutHandlers.push(handler);
|
|
181
|
-
return () => {
|
|
182
|
-
layoutHandlers = layoutHandlers.filter((other) => other !== handler);
|
|
183
|
-
};
|
|
184
|
-
},
|
|
185
|
-
};
|
|
186
|
-
|
|
187
|
-
return {
|
|
188
|
-
host,
|
|
189
|
-
panels,
|
|
190
|
-
groups,
|
|
191
|
-
popouts,
|
|
192
|
-
get activeId() {
|
|
193
|
-
return activeId;
|
|
194
|
-
},
|
|
195
|
-
/** Simulates the user activating a tab */
|
|
196
|
-
activate: setActive,
|
|
197
|
-
/** Simulates a layout change such as a sash drag */
|
|
198
|
-
fireLayout,
|
|
199
|
-
};
|
|
200
|
-
}
|
|
1
|
+
import type { SerializedDockview } from "dockview-react";
|
|
2
|
+
|
|
3
|
+
import type { MdiHost, MdiHostAddPanelOptions, MdiHostGroup, MdiHostPanel } from "./host.js";
|
|
4
|
+
import type { MdiGroupState } from "./layoutSpec.js";
|
|
5
|
+
import type { MdiLocked } from "./types.js";
|
|
6
|
+
|
|
7
|
+
type FakePanel = { id: string; title: string; groupId: string };
|
|
8
|
+
type FakeGroup = { id: string; locked: MdiLocked; headerHidden: boolean };
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* An in-memory stand-in for dockview: one flat list of groups, panels with a title
|
|
12
|
+
* and a group, and the events the controller listens to.
|
|
13
|
+
*/
|
|
14
|
+
export function createFakeHost() {
|
|
15
|
+
let panels = new Map<string, FakePanel>();
|
|
16
|
+
let groups = new Map<string, FakeGroup>();
|
|
17
|
+
let activeId: string | undefined;
|
|
18
|
+
let groupCounter = 0;
|
|
19
|
+
let activeHandlers: ((id: string | undefined) => void)[] = [];
|
|
20
|
+
let removeHandlers: ((id: string) => void)[] = [];
|
|
21
|
+
let layoutHandlers: (() => void)[] = [];
|
|
22
|
+
let popouts: { id: string; popoutUrl: string }[] = [];
|
|
23
|
+
|
|
24
|
+
function fireLayout() {
|
|
25
|
+
for (let handler of layoutHandlers) handler();
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
function setActive(id: string | undefined) {
|
|
29
|
+
if (id === activeId) return;
|
|
30
|
+
activeId = id;
|
|
31
|
+
for (let handler of activeHandlers) handler(id);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
function newGroup(): FakeGroup {
|
|
35
|
+
groupCounter += 1;
|
|
36
|
+
let group = { id: `fake-g${groupCounter}`, locked: false, headerHidden: false };
|
|
37
|
+
groups.set(group.id, group);
|
|
38
|
+
return group;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
function wrapGroup(group: FakeGroup): MdiHostGroup {
|
|
42
|
+
return {
|
|
43
|
+
id: group.id,
|
|
44
|
+
get panelCount() {
|
|
45
|
+
return [...panels.values()].filter((other) => other.groupId === group.id).length;
|
|
46
|
+
},
|
|
47
|
+
setLocked: (locked) => {
|
|
48
|
+
group.locked = locked;
|
|
49
|
+
},
|
|
50
|
+
setHeaderHidden: (hidden) => {
|
|
51
|
+
group.headerHidden = hidden;
|
|
52
|
+
},
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
function wrap(panel: FakePanel): MdiHostPanel {
|
|
57
|
+
return {
|
|
58
|
+
id: panel.id,
|
|
59
|
+
get group() {
|
|
60
|
+
return wrapGroup(groups.get(panel.groupId)!);
|
|
61
|
+
},
|
|
62
|
+
setTitle: (title: string) => {
|
|
63
|
+
panel.title = title;
|
|
64
|
+
},
|
|
65
|
+
setActive: () => setActive(panel.id),
|
|
66
|
+
close: () => {
|
|
67
|
+
panels.delete(panel.id);
|
|
68
|
+
for (let handler of removeHandlers) handler(panel.id);
|
|
69
|
+
if (activeId === panel.id) {
|
|
70
|
+
setActive([...panels.keys()][0]);
|
|
71
|
+
}
|
|
72
|
+
fireLayout();
|
|
73
|
+
},
|
|
74
|
+
getWindow: () => globalThis.window,
|
|
75
|
+
};
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
let host: MdiHost = {
|
|
79
|
+
addPanel({ id, title, position, inactive }: MdiHostAddPanelOptions) {
|
|
80
|
+
let groupId: string;
|
|
81
|
+
|
|
82
|
+
if (position && "referencePanel" in position && position.direction === "within") {
|
|
83
|
+
groupId = panels.get(position.referencePanel)?.groupId ?? newGroup().id;
|
|
84
|
+
} else if (!position && activeId) {
|
|
85
|
+
groupId = panels.get(activeId)!.groupId;
|
|
86
|
+
} else {
|
|
87
|
+
groupId = newGroup().id;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
let panel = { id, title, groupId };
|
|
91
|
+
panels.set(id, panel);
|
|
92
|
+
if (!inactive) setActive(id);
|
|
93
|
+
fireLayout();
|
|
94
|
+
|
|
95
|
+
return wrap(panel);
|
|
96
|
+
},
|
|
97
|
+
getPanel(id) {
|
|
98
|
+
let panel = panels.get(id);
|
|
99
|
+
return panel ? wrap(panel) : undefined;
|
|
100
|
+
},
|
|
101
|
+
getGroup(id) {
|
|
102
|
+
let group = groups.get(id);
|
|
103
|
+
return group ? wrapGroup(group) : undefined;
|
|
104
|
+
},
|
|
105
|
+
getActivePanelId: () => activeId,
|
|
106
|
+
toJSON() {
|
|
107
|
+
let groupStates: MdiGroupState[] = [...groups.values()].map((group) => ({
|
|
108
|
+
id: group.id,
|
|
109
|
+
views: [...panels.values()].filter((panel) => panel.groupId === group.id).map((panel) => panel.id),
|
|
110
|
+
activeView: activeId && panels.get(activeId)?.groupId === group.id ? activeId : undefined,
|
|
111
|
+
locked: group.locked || undefined,
|
|
112
|
+
hideHeader: group.headerHidden || undefined,
|
|
113
|
+
}));
|
|
114
|
+
|
|
115
|
+
return {
|
|
116
|
+
grid: {
|
|
117
|
+
root: { type: "branch", size: 1000, data: groupStates.map((data) => ({ type: "leaf", data, size: 1000 })) },
|
|
118
|
+
width: 1000,
|
|
119
|
+
height: 1000,
|
|
120
|
+
orientation: "HORIZONTAL" as SerializedDockview["grid"]["orientation"],
|
|
121
|
+
},
|
|
122
|
+
panels: Object.fromEntries(
|
|
123
|
+
[...panels.values()].map((panel) => [
|
|
124
|
+
panel.id,
|
|
125
|
+
{ id: panel.id, contentComponent: "mdi", title: panel.title },
|
|
126
|
+
]),
|
|
127
|
+
),
|
|
128
|
+
activeGroup: activeId ? panels.get(activeId)?.groupId : undefined,
|
|
129
|
+
};
|
|
130
|
+
},
|
|
131
|
+
fromJSON(data) {
|
|
132
|
+
// Mimic dockview: existing panels are removed (and reported) before the new ones are created.
|
|
133
|
+
for (let id of panels.keys()) {
|
|
134
|
+
panels.delete(id);
|
|
135
|
+
for (let handler of removeHandlers) handler(id);
|
|
136
|
+
}
|
|
137
|
+
groups.clear();
|
|
138
|
+
activeId = undefined;
|
|
139
|
+
|
|
140
|
+
function visit(node: { type: string; data: unknown }) {
|
|
141
|
+
if (node.type === "leaf") {
|
|
142
|
+
let state = node.data as MdiGroupState;
|
|
143
|
+
// dockview reduces `locked` to a boolean here; the controller puts the stricter value back.
|
|
144
|
+
groups.set(state.id, { id: state.id, locked: !!state.locked, headerHidden: !!state.hideHeader });
|
|
145
|
+
for (let view of state.views) {
|
|
146
|
+
let title = data.panels[view]?.title ?? view;
|
|
147
|
+
panels.set(view, { id: view, title, groupId: state.id });
|
|
148
|
+
}
|
|
149
|
+
if (state.id === data.activeGroup) {
|
|
150
|
+
activeId = state.activeView ?? state.views[0];
|
|
151
|
+
}
|
|
152
|
+
} else {
|
|
153
|
+
for (let child of node.data as { type: string; data: unknown }[]) visit(child);
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
visit(data.grid.root);
|
|
158
|
+
activeId ??= [...panels.keys()][0];
|
|
159
|
+
for (let handler of activeHandlers) handler(activeId);
|
|
160
|
+
fireLayout();
|
|
161
|
+
},
|
|
162
|
+
async addPopoutGroup(id, popoutUrl) {
|
|
163
|
+
if (!panels.has(id)) return false;
|
|
164
|
+
popouts.push({ id, popoutUrl });
|
|
165
|
+
return true;
|
|
166
|
+
},
|
|
167
|
+
onDidActivePanelChange(handler) {
|
|
168
|
+
activeHandlers.push(handler);
|
|
169
|
+
return () => {
|
|
170
|
+
activeHandlers = activeHandlers.filter((other) => other !== handler);
|
|
171
|
+
};
|
|
172
|
+
},
|
|
173
|
+
onDidRemovePanel(handler) {
|
|
174
|
+
removeHandlers.push(handler);
|
|
175
|
+
return () => {
|
|
176
|
+
removeHandlers = removeHandlers.filter((other) => other !== handler);
|
|
177
|
+
};
|
|
178
|
+
},
|
|
179
|
+
onDidLayoutChange(handler) {
|
|
180
|
+
layoutHandlers.push(handler);
|
|
181
|
+
return () => {
|
|
182
|
+
layoutHandlers = layoutHandlers.filter((other) => other !== handler);
|
|
183
|
+
};
|
|
184
|
+
},
|
|
185
|
+
};
|
|
186
|
+
|
|
187
|
+
return {
|
|
188
|
+
host,
|
|
189
|
+
panels,
|
|
190
|
+
groups,
|
|
191
|
+
popouts,
|
|
192
|
+
get activeId() {
|
|
193
|
+
return activeId;
|
|
194
|
+
},
|
|
195
|
+
/** Simulates the user activating a tab */
|
|
196
|
+
activate: setActive,
|
|
197
|
+
/** Simulates a layout change such as a sash drag */
|
|
198
|
+
fireLayout,
|
|
199
|
+
};
|
|
200
|
+
}
|