@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/Mdi.test.tsx
CHANGED
|
@@ -1,87 +1,91 @@
|
|
|
1
|
-
import { act, render, screen } from "@testing-library/react";
|
|
2
|
-
import { useEffect } from "react";
|
|
3
|
-
import { describe, expect, it, vi } from "vitest";
|
|
4
|
-
|
|
5
|
-
import { Mdi } from "./Mdi.js";
|
|
6
|
-
import { MdiProvider, useMdi, useMdiActiveDocument } from "./MdiContext.js";
|
|
7
|
-
import { useMdiDocument } from "./MdiDocumentContext.js";
|
|
8
|
-
import type { MdiApi, MdiDocumentProps, MdiDocumentTypes, 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
|
-
let
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
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
|
-
await
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
1
|
+
import { act, render, screen } from "@testing-library/react";
|
|
2
|
+
import { useEffect } from "react";
|
|
3
|
+
import { describe, expect, it, vi } from "vitest";
|
|
4
|
+
|
|
5
|
+
import { Mdi } from "./Mdi.js";
|
|
6
|
+
import { MdiProvider, useMdi, useMdiActiveDocument } from "./MdiContext.js";
|
|
7
|
+
import { useMdiDocument } from "./MdiDocumentContext.js";
|
|
8
|
+
import type { MdiApi, MdiDocumentProps, MdiDocumentTypes, 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 Note({ params }: MdiDocumentProps<{ label: string }>) {
|
|
19
|
+
let document = useMdiDocument();
|
|
20
|
+
|
|
21
|
+
return (
|
|
22
|
+
<div data-testid={document.id}>
|
|
23
|
+
<span>{params.label}</span>
|
|
24
|
+
<button type="button" onClick={() => document.setTitle(`${params.label}!`)}>
|
|
25
|
+
rename
|
|
26
|
+
</button>
|
|
27
|
+
</div>
|
|
28
|
+
);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
function ActiveLabel() {
|
|
32
|
+
let active = useMdiActiveDocument();
|
|
33
|
+
return <output data-testid="active">{active?.id ?? "none"}</output>;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
let apiRef: { current: MdiApi | null } = { current: null };
|
|
37
|
+
|
|
38
|
+
function Grab() {
|
|
39
|
+
let api = useMdi();
|
|
40
|
+
useEffect(() => {
|
|
41
|
+
apiRef.current = api;
|
|
42
|
+
});
|
|
43
|
+
return null;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
const types: MdiDocumentTypes = {
|
|
47
|
+
note: { component: Note, title: (params) => `Note ${params.label as string}` },
|
|
48
|
+
tree: { component: Note, singleton: true, closable: false, title: "Tree" },
|
|
49
|
+
};
|
|
50
|
+
|
|
51
|
+
const spec: MdiLayoutSpec = {
|
|
52
|
+
root: {
|
|
53
|
+
direction: "horizontal",
|
|
54
|
+
children: [
|
|
55
|
+
{ tabs: [{ type: "tree", params: { label: "Tree" } }], hideHeader: true },
|
|
56
|
+
{ tabs: [{ type: "note", key: "1", params: { label: "First" } }] },
|
|
57
|
+
],
|
|
58
|
+
},
|
|
59
|
+
};
|
|
60
|
+
|
|
61
|
+
describe("Mdi", () => {
|
|
62
|
+
it("renders the default layout through dockview and exposes the api", async () => {
|
|
63
|
+
render(
|
|
64
|
+
<MdiProvider types={types}>
|
|
65
|
+
<Grab />
|
|
66
|
+
<ActiveLabel />
|
|
67
|
+
<div style={{ width: 800, height: 600 }}>
|
|
68
|
+
<Mdi defaultLayout={spec} />
|
|
69
|
+
</div>
|
|
70
|
+
</MdiProvider>,
|
|
71
|
+
);
|
|
72
|
+
|
|
73
|
+
expect(await screen.findByText("First")).toBeInTheDocument();
|
|
74
|
+
expect(screen.getByTestId("tree")).toBeInTheDocument();
|
|
75
|
+
expect(apiRef.current?.getDocuments().map((document) => document.id)).toEqual(["tree", "note:1"]);
|
|
76
|
+
|
|
77
|
+
await act(async () => {
|
|
78
|
+
apiRef.current!.openDocument({ type: "note", key: "2", params: { label: "Second" } });
|
|
79
|
+
});
|
|
80
|
+
|
|
81
|
+
expect(await screen.findByText("Second")).toBeInTheDocument();
|
|
82
|
+
expect(screen.getByTestId("active")).toHaveTextContent("note:2");
|
|
83
|
+
|
|
84
|
+
await act(async () => {
|
|
85
|
+
await apiRef.current!.close("note:2");
|
|
86
|
+
});
|
|
87
|
+
|
|
88
|
+
expect(screen.queryByText("Second")).not.toBeInTheDocument();
|
|
89
|
+
expect(apiRef.current?.getDocument("tree")?.closable).toBe(false);
|
|
90
|
+
});
|
|
91
|
+
});
|
package/src/mdi/Mdi.tsx
CHANGED
|
@@ -1,141 +1,141 @@
|
|
|
1
|
-
import "dockview-react/dist/styles/dockview.css";
|
|
2
|
-
import "./Mdi.css";
|
|
3
|
-
|
|
4
|
-
import clsx from "clsx";
|
|
5
|
-
import { type DockviewReadyEvent, DockviewReact, type IWatermarkPanelProps } from "dockview-react";
|
|
6
|
-
import { type CSSProperties, createContext, type ReactNode, use, useCallback, useEffect, useState } from "react";
|
|
7
|
-
|
|
8
|
-
import { useDsColorScheme } from "../theme/useDsColorScheme.js";
|
|
9
|
-
import { copyDocumentAttributes, createDockviewHost } from "./dockviewHost.js";
|
|
10
|
-
import { MDI_COMPONENT } from "./layoutSpec.js";
|
|
11
|
-
import { MdiConfirmCloseDialog } from "./MdiConfirmCloseDialog.js";
|
|
12
|
-
import { useMdiController } from "./MdiContext.js";
|
|
13
|
-
import { MdiPanel } from "./MdiPanel.js";
|
|
14
|
-
import { MdiTab } from "./MdiTab.js";
|
|
15
|
-
import { mdiThemeDark, mdiThemeLight } from "./theme.js";
|
|
16
|
-
import type { MdiConfirmCloseResult, MdiDocumentInfo, MdiLayoutSpec } from "./types.js";
|
|
17
|
-
|
|
18
|
-
export type MdiProps = {
|
|
19
|
-
/** Storage key within the article. Without it nothing is restored or saved. */
|
|
20
|
-
id?: string;
|
|
21
|
-
/** A persisted layout is only restored when this matches. Bump it when `defaultLayout` changes shape. Default `0`. */
|
|
22
|
-
layoutVersion?: string | number;
|
|
23
|
-
defaultLayout: MdiLayoutSpec;
|
|
24
|
-
/**
|
|
25
|
-
* Save every layout change to IndexedDB. Default: `true` when `id` is set. With `false` the
|
|
26
|
-
* layout is only written by `saveLayout()`, and a saved layout is still restored on load
|
|
27
|
-
* (explicit save/load commands, as in the Windows DailyOrders app).
|
|
28
|
-
*/
|
|
29
|
-
persist?: boolean;
|
|
30
|
-
/** Same-origin blank page popout windows open into. Default `/popout`. */
|
|
31
|
-
popoutUrl?: string;
|
|
32
|
-
/**
|
|
33
|
-
* Turn drag and drop off entirely. Use it for fixed layouts where every group is
|
|
34
|
-
* `locked: "no-drop-target"`: otherwise a tab dragged to the outer edge of the dock
|
|
35
|
-
* lands in a new group it can never leave again.
|
|
36
|
-
*/
|
|
37
|
-
disableDnd?: boolean;
|
|
38
|
-
/** Replaces the built-in Save / Discard / Cancel dialog */
|
|
39
|
-
confirmClose?: (document: MdiDocumentInfo) => Promise<MdiConfirmCloseResult>;
|
|
40
|
-
/** Shown in a group that has no documents */
|
|
41
|
-
watermark?: ReactNode;
|
|
42
|
-
className?: string;
|
|
43
|
-
style?: CSSProperties;
|
|
44
|
-
};
|
|
45
|
-
|
|
46
|
-
const WatermarkContext = createContext<ReactNode>(null);
|
|
47
|
-
|
|
48
|
-
function MdiWatermark(_props: IWatermarkPanelProps) {
|
|
49
|
-
let content = use(WatermarkContext);
|
|
50
|
-
return <div className="ObMdi-watermark">{content}</div>;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
// Module-level so dockview sees the same registry on every render.
|
|
54
|
-
const COMPONENTS = { [MDI_COMPONENT]: MdiPanel };
|
|
55
|
-
const TAB_COMPONENTS = { [MDI_COMPONENT]: MdiTab };
|
|
56
|
-
type CloseRequest = { document: MdiDocumentInfo; resolve: (result: MdiConfirmCloseResult) => void };
|
|
57
|
-
|
|
58
|
-
/**
|
|
59
|
-
* The dock: tiled groups of tabbed documents that can be rearranged by drag and
|
|
60
|
-
* drop or moved to a popout window. Fills its parent, so render it in a block
|
|
61
|
-
* with a height, such as `<Page.Block grow overflow="hidden">`.
|
|
62
|
-
*/
|
|
63
|
-
export function Mdi({
|
|
64
|
-
id,
|
|
65
|
-
layoutVersion = 0,
|
|
66
|
-
defaultLayout,
|
|
67
|
-
persist = id !== undefined,
|
|
68
|
-
popoutUrl = "/popout",
|
|
69
|
-
disableDnd = false,
|
|
70
|
-
confirmClose,
|
|
71
|
-
watermark = null,
|
|
72
|
-
className,
|
|
73
|
-
style,
|
|
74
|
-
}: MdiProps) {
|
|
75
|
-
let controller = useMdiController();
|
|
76
|
-
let [anchor, setAnchor] = useState<HTMLDivElement | null>(null);
|
|
77
|
-
let colorScheme = useDsColorScheme(anchor);
|
|
78
|
-
let [closeRequest, setCloseRequest] = useState<CloseRequest | null>(null);
|
|
79
|
-
|
|
80
|
-
let defaultConfirmClose = useCallback(
|
|
81
|
-
(document: MdiDocumentInfo) =>
|
|
82
|
-
new Promise<MdiConfirmCloseResult>((resolve) => {
|
|
83
|
-
setCloseRequest({ document, resolve });
|
|
84
|
-
}),
|
|
85
|
-
[],
|
|
86
|
-
);
|
|
87
|
-
|
|
88
|
-
// The controller reads the options when it needs them, so they may change freely.
|
|
89
|
-
controller.setOptions({
|
|
90
|
-
id,
|
|
91
|
-
layoutVersion,
|
|
92
|
-
defaultLayout,
|
|
93
|
-
persist,
|
|
94
|
-
popoutUrl,
|
|
95
|
-
confirmClose: confirmClose ?? defaultConfirmClose,
|
|
96
|
-
});
|
|
97
|
-
|
|
98
|
-
let onReady = useCallback(
|
|
99
|
-
(event: DockviewReadyEvent) => {
|
|
100
|
-
let { api } = event;
|
|
101
|
-
controller.attach(createDockviewHost(api));
|
|
102
|
-
|
|
103
|
-
// dockview disposes these listeners together with the api.
|
|
104
|
-
api.onDidAddPopoutGroup((popout) => {
|
|
105
|
-
copyDocumentAttributes(document, popout.window.document);
|
|
106
|
-
});
|
|
107
|
-
api.onDidOpenPopoutWindowFail(() => {
|
|
108
|
-
console.warn("Mdi: the popout window was blocked by the browser.");
|
|
109
|
-
});
|
|
110
|
-
|
|
111
|
-
void controller.initialize();
|
|
112
|
-
},
|
|
113
|
-
[controller],
|
|
114
|
-
);
|
|
115
|
-
|
|
116
|
-
useEffect(() => () => controller.detach(), [controller]);
|
|
117
|
-
|
|
118
|
-
function handleCloseResult(result: MdiConfirmCloseResult) {
|
|
119
|
-
closeRequest?.resolve(result);
|
|
120
|
-
setCloseRequest(null);
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
return (
|
|
124
|
-
<WatermarkContext value={watermark}>
|
|
125
|
-
<div className={clsx("ObMdi-root", className)} style={style} ref={setAnchor}>
|
|
126
|
-
<DockviewReact
|
|
127
|
-
components={COMPONENTS}
|
|
128
|
-
tabComponents={TAB_COMPONENTS}
|
|
129
|
-
defaultTabComponent={MdiTab}
|
|
130
|
-
watermarkComponent={MdiWatermark}
|
|
131
|
-
theme={colorScheme === "dark" ? mdiThemeDark : mdiThemeLight}
|
|
132
|
-
popoutUrl={popoutUrl}
|
|
133
|
-
disableDnd={disableDnd}
|
|
134
|
-
disableFloatingGroups
|
|
135
|
-
onReady={onReady}
|
|
136
|
-
/>
|
|
137
|
-
<MdiConfirmCloseDialog document={closeRequest?.document ?? null} onResult={handleCloseResult} />
|
|
138
|
-
</div>
|
|
139
|
-
</WatermarkContext>
|
|
140
|
-
);
|
|
141
|
-
}
|
|
1
|
+
import "dockview-react/dist/styles/dockview.css";
|
|
2
|
+
import "./Mdi.css";
|
|
3
|
+
|
|
4
|
+
import clsx from "clsx";
|
|
5
|
+
import { type DockviewReadyEvent, DockviewReact, type IWatermarkPanelProps } from "dockview-react";
|
|
6
|
+
import { type CSSProperties, createContext, type ReactNode, use, useCallback, useEffect, useState } from "react";
|
|
7
|
+
|
|
8
|
+
import { useDsColorScheme } from "../theme/useDsColorScheme.js";
|
|
9
|
+
import { copyDocumentAttributes, createDockviewHost } from "./dockviewHost.js";
|
|
10
|
+
import { MDI_COMPONENT } from "./layoutSpec.js";
|
|
11
|
+
import { MdiConfirmCloseDialog } from "./MdiConfirmCloseDialog.js";
|
|
12
|
+
import { useMdiController } from "./MdiContext.js";
|
|
13
|
+
import { MdiPanel } from "./MdiPanel.js";
|
|
14
|
+
import { MdiTab } from "./MdiTab.js";
|
|
15
|
+
import { mdiThemeDark, mdiThemeLight } from "./theme.js";
|
|
16
|
+
import type { MdiConfirmCloseResult, MdiDocumentInfo, MdiLayoutSpec } from "./types.js";
|
|
17
|
+
|
|
18
|
+
export type MdiProps = {
|
|
19
|
+
/** Storage key within the article. Without it nothing is restored or saved. */
|
|
20
|
+
id?: string;
|
|
21
|
+
/** A persisted layout is only restored when this matches. Bump it when `defaultLayout` changes shape. Default `0`. */
|
|
22
|
+
layoutVersion?: string | number;
|
|
23
|
+
defaultLayout: MdiLayoutSpec;
|
|
24
|
+
/**
|
|
25
|
+
* Save every layout change to IndexedDB. Default: `true` when `id` is set. With `false` the
|
|
26
|
+
* layout is only written by `saveLayout()`, and a saved layout is still restored on load
|
|
27
|
+
* (explicit save/load commands, as in the Windows DailyOrders app).
|
|
28
|
+
*/
|
|
29
|
+
persist?: boolean;
|
|
30
|
+
/** Same-origin blank page popout windows open into. Default `/popout`. */
|
|
31
|
+
popoutUrl?: string;
|
|
32
|
+
/**
|
|
33
|
+
* Turn drag and drop off entirely. Use it for fixed layouts where every group is
|
|
34
|
+
* `locked: "no-drop-target"`: otherwise a tab dragged to the outer edge of the dock
|
|
35
|
+
* lands in a new group it can never leave again.
|
|
36
|
+
*/
|
|
37
|
+
disableDnd?: boolean;
|
|
38
|
+
/** Replaces the built-in Save / Discard / Cancel dialog */
|
|
39
|
+
confirmClose?: (document: MdiDocumentInfo) => Promise<MdiConfirmCloseResult>;
|
|
40
|
+
/** Shown in a group that has no documents */
|
|
41
|
+
watermark?: ReactNode;
|
|
42
|
+
className?: string;
|
|
43
|
+
style?: CSSProperties;
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
const WatermarkContext = createContext<ReactNode>(null);
|
|
47
|
+
|
|
48
|
+
function MdiWatermark(_props: IWatermarkPanelProps) {
|
|
49
|
+
let content = use(WatermarkContext);
|
|
50
|
+
return <div className="ObMdi-watermark">{content}</div>;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
// Module-level so dockview sees the same registry on every render.
|
|
54
|
+
const COMPONENTS = { [MDI_COMPONENT]: MdiPanel };
|
|
55
|
+
const TAB_COMPONENTS = { [MDI_COMPONENT]: MdiTab };
|
|
56
|
+
type CloseRequest = { document: MdiDocumentInfo; resolve: (result: MdiConfirmCloseResult) => void };
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* The dock: tiled groups of tabbed documents that can be rearranged by drag and
|
|
60
|
+
* drop or moved to a popout window. Fills its parent, so render it in a block
|
|
61
|
+
* with a height, such as `<Page.Block grow overflow="hidden">`.
|
|
62
|
+
*/
|
|
63
|
+
export function Mdi({
|
|
64
|
+
id,
|
|
65
|
+
layoutVersion = 0,
|
|
66
|
+
defaultLayout,
|
|
67
|
+
persist = id !== undefined,
|
|
68
|
+
popoutUrl = "/popout",
|
|
69
|
+
disableDnd = false,
|
|
70
|
+
confirmClose,
|
|
71
|
+
watermark = null,
|
|
72
|
+
className,
|
|
73
|
+
style,
|
|
74
|
+
}: MdiProps) {
|
|
75
|
+
let controller = useMdiController();
|
|
76
|
+
let [anchor, setAnchor] = useState<HTMLDivElement | null>(null);
|
|
77
|
+
let colorScheme = useDsColorScheme(anchor);
|
|
78
|
+
let [closeRequest, setCloseRequest] = useState<CloseRequest | null>(null);
|
|
79
|
+
|
|
80
|
+
let defaultConfirmClose = useCallback(
|
|
81
|
+
(document: MdiDocumentInfo) =>
|
|
82
|
+
new Promise<MdiConfirmCloseResult>((resolve) => {
|
|
83
|
+
setCloseRequest({ document, resolve });
|
|
84
|
+
}),
|
|
85
|
+
[],
|
|
86
|
+
);
|
|
87
|
+
|
|
88
|
+
// The controller reads the options when it needs them, so they may change freely.
|
|
89
|
+
controller.setOptions({
|
|
90
|
+
id,
|
|
91
|
+
layoutVersion,
|
|
92
|
+
defaultLayout,
|
|
93
|
+
persist,
|
|
94
|
+
popoutUrl,
|
|
95
|
+
confirmClose: confirmClose ?? defaultConfirmClose,
|
|
96
|
+
});
|
|
97
|
+
|
|
98
|
+
let onReady = useCallback(
|
|
99
|
+
(event: DockviewReadyEvent) => {
|
|
100
|
+
let { api } = event;
|
|
101
|
+
controller.attach(createDockviewHost(api));
|
|
102
|
+
|
|
103
|
+
// dockview disposes these listeners together with the api.
|
|
104
|
+
api.onDidAddPopoutGroup((popout) => {
|
|
105
|
+
copyDocumentAttributes(document, popout.window.document);
|
|
106
|
+
});
|
|
107
|
+
api.onDidOpenPopoutWindowFail(() => {
|
|
108
|
+
console.warn("Mdi: the popout window was blocked by the browser.");
|
|
109
|
+
});
|
|
110
|
+
|
|
111
|
+
void controller.initialize();
|
|
112
|
+
},
|
|
113
|
+
[controller],
|
|
114
|
+
);
|
|
115
|
+
|
|
116
|
+
useEffect(() => () => controller.detach(), [controller]);
|
|
117
|
+
|
|
118
|
+
function handleCloseResult(result: MdiConfirmCloseResult) {
|
|
119
|
+
closeRequest?.resolve(result);
|
|
120
|
+
setCloseRequest(null);
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
return (
|
|
124
|
+
<WatermarkContext value={watermark}>
|
|
125
|
+
<div className={clsx("ObMdi-root", className)} style={style} ref={setAnchor}>
|
|
126
|
+
<DockviewReact
|
|
127
|
+
components={COMPONENTS}
|
|
128
|
+
tabComponents={TAB_COMPONENTS}
|
|
129
|
+
defaultTabComponent={MdiTab}
|
|
130
|
+
watermarkComponent={MdiWatermark}
|
|
131
|
+
theme={colorScheme === "dark" ? mdiThemeDark : mdiThemeLight}
|
|
132
|
+
popoutUrl={popoutUrl}
|
|
133
|
+
disableDnd={disableDnd}
|
|
134
|
+
disableFloatingGroups
|
|
135
|
+
onReady={onReady}
|
|
136
|
+
/>
|
|
137
|
+
<MdiConfirmCloseDialog document={closeRequest?.document ?? null} onResult={handleCloseResult} />
|
|
138
|
+
</div>
|
|
139
|
+
</WatermarkContext>
|
|
140
|
+
);
|
|
141
|
+
}
|
|
@@ -1,47 +1,47 @@
|
|
|
1
|
-
import { Button, Dialog, Heading, Paragraph } from "@digdir/designsystemet-react";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
import
|
|
5
|
-
|
|
6
|
-
export type MdiConfirmCloseDialogProps = {
|
|
7
|
-
/** The document being closed, or `null` when the dialog is closed */
|
|
8
|
-
document: MdiDocumentInfo | null;
|
|
9
|
-
onResult: (result: MdiConfirmCloseResult) => void;
|
|
10
|
-
};
|
|
11
|
-
|
|
12
|
-
/** Save / Discard / Cancel prompt shown when a dirty document is closed. */
|
|
13
|
-
export function MdiConfirmCloseDialog({ document, onResult }: MdiConfirmCloseDialogProps) {
|
|
14
|
-
let title = document?.title ?? document?.id ?? "";
|
|
15
|
-
|
|
16
|
-
return (
|
|
17
|
-
<Dialog
|
|
18
|
-
open={document !== null}
|
|
19
|
-
closedby="any"
|
|
20
|
-
data-size="sm"
|
|
21
|
-
className="ObMdi-confirmClose"
|
|
22
|
-
onClose={() => onResult("cancel")}
|
|
23
|
-
>
|
|
24
|
-
<Dialog.Block>
|
|
25
|
-
<Heading level={2} data-size="xs">
|
|
26
|
-
{getLocalizedString("Unsaved changes")}
|
|
27
|
-
</Heading>
|
|
28
|
-
</Dialog.Block>
|
|
29
|
-
<Dialog.Block>
|
|
30
|
-
<Paragraph>
|
|
31
|
-
{getLocalizedString("Do you want to save the changes to {0} before closing?").replace("{0}", title)}
|
|
32
|
-
</Paragraph>
|
|
33
|
-
</Dialog.Block>
|
|
34
|
-
<Dialog.Block className="ObMdi-confirmClose-actions">
|
|
35
|
-
<Button type="button" data-size="sm" onClick={() => onResult("save")}>
|
|
36
|
-
{getLocalizedString("Save")}
|
|
37
|
-
</Button>
|
|
38
|
-
<Button type="button" data-size="sm" variant="secondary" onClick={() => onResult("discard")}>
|
|
39
|
-
{getLocalizedString("Discard")}
|
|
40
|
-
</Button>
|
|
41
|
-
<Button type="button" data-size="sm" variant="tertiary" onClick={() => onResult("cancel")}>
|
|
42
|
-
{getLocalizedString("Cancel")}
|
|
43
|
-
</Button>
|
|
44
|
-
</Dialog.Block>
|
|
45
|
-
</Dialog>
|
|
46
|
-
);
|
|
47
|
-
}
|
|
1
|
+
import { Button, Dialog, Heading, Paragraph } from "@digdir/designsystemet-react";
|
|
2
|
+
|
|
3
|
+
import type { MdiConfirmCloseResult, MdiDocumentInfo } from "./types.js";
|
|
4
|
+
import { getLocalizedString } from "../i18n.js";
|
|
5
|
+
|
|
6
|
+
export type MdiConfirmCloseDialogProps = {
|
|
7
|
+
/** The document being closed, or `null` when the dialog is closed */
|
|
8
|
+
document: MdiDocumentInfo | null;
|
|
9
|
+
onResult: (result: MdiConfirmCloseResult) => void;
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
/** Save / Discard / Cancel prompt shown when a dirty document is closed. */
|
|
13
|
+
export function MdiConfirmCloseDialog({ document, onResult }: MdiConfirmCloseDialogProps) {
|
|
14
|
+
let title = document?.title ?? document?.id ?? "";
|
|
15
|
+
|
|
16
|
+
return (
|
|
17
|
+
<Dialog
|
|
18
|
+
open={document !== null}
|
|
19
|
+
closedby="any"
|
|
20
|
+
data-size="sm"
|
|
21
|
+
className="ObMdi-confirmClose"
|
|
22
|
+
onClose={() => onResult("cancel")}
|
|
23
|
+
>
|
|
24
|
+
<Dialog.Block>
|
|
25
|
+
<Heading level={2} data-size="xs">
|
|
26
|
+
{getLocalizedString("Unsaved changes")}
|
|
27
|
+
</Heading>
|
|
28
|
+
</Dialog.Block>
|
|
29
|
+
<Dialog.Block>
|
|
30
|
+
<Paragraph>
|
|
31
|
+
{getLocalizedString("Do you want to save the changes to {0} before closing?").replace("{0}", title)}
|
|
32
|
+
</Paragraph>
|
|
33
|
+
</Dialog.Block>
|
|
34
|
+
<Dialog.Block className="ObMdi-confirmClose-actions">
|
|
35
|
+
<Button type="button" data-size="sm" onClick={() => onResult("save")}>
|
|
36
|
+
{getLocalizedString("Save")}
|
|
37
|
+
</Button>
|
|
38
|
+
<Button type="button" data-size="sm" variant="secondary" onClick={() => onResult("discard")}>
|
|
39
|
+
{getLocalizedString("Discard")}
|
|
40
|
+
</Button>
|
|
41
|
+
<Button type="button" data-size="sm" variant="tertiary" onClick={() => onResult("cancel")}>
|
|
42
|
+
{getLocalizedString("Cancel")}
|
|
43
|
+
</Button>
|
|
44
|
+
</Dialog.Block>
|
|
45
|
+
</Dialog>
|
|
46
|
+
);
|
|
47
|
+
}
|