@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.
Files changed (173) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/package.json +8 -7
  3. package/scripts/copyAssets.mjs +27 -55
  4. package/src/AfLookup/Lookup.css +129 -125
  5. package/src/AfLookup/Lookup.tsx +184 -162
  6. package/src/AfLookup/LookupCombobox.css +78 -78
  7. package/src/AfLookup/LookupCombobox.tsx +237 -237
  8. package/src/AfLookup/LookupEdit.tsx +130 -130
  9. package/src/AfLookup/LookupGrid.tsx +124 -124
  10. package/src/AfLookup/index.ts +5 -5
  11. package/src/autocomplete/Autocomplete.css +256 -256
  12. package/src/autocomplete/Autocomplete.tsx +320 -320
  13. package/src/autocomplete/AutocompleteFrame.tsx +168 -168
  14. package/src/autocomplete/Combobox.tsx +286 -286
  15. package/src/autocomplete/index.ts +4 -4
  16. package/src/autocomplete/types.ts +204 -204
  17. package/src/autocomplete/utils.ts +183 -183
  18. package/src/binding/BoundNumericTextField.tsx +102 -102
  19. package/src/binding/BoundTextField.tsx +49 -49
  20. package/src/binding/CancelButton.tsx +30 -30
  21. package/src/binding/CancelIconButton.tsx +30 -30
  22. package/src/binding/DataEditToolbar.tsx +92 -92
  23. package/src/binding/DeleteButton.tsx +35 -35
  24. package/src/binding/DeleteIconButton.tsx +35 -35
  25. package/src/binding/RefreshButton.tsx +31 -31
  26. package/src/binding/RefreshIconButton.tsx +33 -33
  27. package/src/binding/RefreshRowIconButton.tsx +33 -33
  28. package/src/binding/SaveButton.tsx +37 -37
  29. package/src/binding/SaveIconButton.tsx +38 -38
  30. package/src/container/Container.tsx +49 -49
  31. package/src/container/index.ts +1 -1
  32. package/src/cutoff/CutOffPicker.css +12 -0
  33. package/src/cutoff/CutOffPicker.tsx +165 -0
  34. package/src/cutoff/context.tsx +194 -0
  35. package/src/cutoff/dsCutOffDates.ts +21 -0
  36. package/src/cutoff/index.ts +4 -0
  37. package/src/cutoff/utils.test.ts +59 -0
  38. package/src/cutoff/utils.ts +276 -0
  39. package/src/filter/ChipListInput.tsx +79 -79
  40. package/src/filter/FieldFilterPanel.css +150 -150
  41. package/src/filter/FieldFilterPanel.tsx +309 -309
  42. package/src/filter/FilterBuilder.css +152 -152
  43. package/src/filter/FilterBuilder.test.tsx +153 -153
  44. package/src/filter/FilterBuilder.tsx +435 -435
  45. package/src/filter/FilterEditor.css +231 -231
  46. package/src/filter/FilterEditor.test.tsx +259 -259
  47. package/src/filter/FilterEditor.tsx +75 -74
  48. package/src/filter/FilterGroupEditor.tsx +160 -160
  49. package/src/filter/FilterNameDialog.css +22 -22
  50. package/src/filter/FilterNameDialog.tsx +81 -81
  51. package/src/filter/FilterRow.tsx +117 -117
  52. package/src/filter/FilterShareDialog.css +28 -28
  53. package/src/filter/FilterShareDialog.tsx +201 -201
  54. package/src/filter/FilterStringField.tsx +78 -77
  55. package/src/filter/FilterValueEditor.tsx +220 -220
  56. package/src/filter/SavedFilterTree.css +107 -107
  57. package/src/filter/SavedFilterTree.test.tsx +94 -94
  58. package/src/filter/SavedFilterTree.tsx +218 -222
  59. package/src/filter/fieldFilter.test.ts +158 -158
  60. package/src/filter/fieldFilter.ts +139 -139
  61. package/src/filter/index.ts +27 -27
  62. package/src/filter/types.ts +38 -38
  63. package/src/filter/useDistinctValues.test.ts +102 -102
  64. package/src/filter/useDistinctValues.ts +230 -230
  65. package/src/global.d.ts +11 -11
  66. package/src/grid/AfGridColumnsPanel.tsx +118 -118
  67. package/src/grid/AfGridContext.tsx +51 -51
  68. package/src/grid/AfGridError.tsx +46 -46
  69. package/src/grid/AfHeaderFilterCell.tsx +147 -151
  70. package/src/grid/AfHeaderFilterPanel.tsx +111 -111
  71. package/src/grid/GridEditLookup.css +12 -0
  72. package/src/grid/GridEditLookup.tsx +121 -0
  73. package/src/grid/Toolbar.tsx +233 -233
  74. package/src/grid/editing.ts +100 -100
  75. package/src/grid/filter.ts +78 -78
  76. package/src/grid/formatters.ts +48 -48
  77. package/src/grid/index.css +245 -245
  78. package/src/grid/index.tsx +489 -484
  79. package/src/grid/license.ts +48 -48
  80. package/src/grid/localization.ts +369 -369
  81. package/src/grid/slots/index.tsx +307 -307
  82. package/src/grid/slots/slots.css +64 -64
  83. package/src/grid/theme.tsx +138 -138
  84. package/src/grid/useAfColumns.tsx +371 -371
  85. package/src/grid/useAfCurrentIndex.ts +63 -63
  86. package/src/grid/useAfData.ts +20 -20
  87. package/src/grid/useAfFilter.ts +160 -160
  88. package/src/grid/useAfFilterFields.ts +55 -55
  89. package/src/grid/useAfGridApi.ts +71 -71
  90. package/src/grid/useAfKeyBindings.ts +36 -36
  91. package/src/grid/useAfNewItemRow.ts +258 -258
  92. package/src/grid/useAfPagination.ts +53 -53
  93. package/src/grid/useAfPersistedState.ts +230 -230
  94. package/src/grid/useAfRowEditModel.ts +145 -145
  95. package/src/grid/useAfRowGrouping.ts +47 -47
  96. package/src/grid/useAfServerAggregation.ts +145 -145
  97. package/src/grid/useAfSortModel.ts +84 -84
  98. package/src/i18n.ts +13 -0
  99. package/src/index.ts +14 -12
  100. package/src/input/InputAdornments.css +75 -75
  101. package/src/input/InputAdornments.tsx +102 -102
  102. package/src/input/index.ts +1 -1
  103. package/src/layout/AppMenu.tsx +74 -75
  104. package/src/layout/AppMenuDrawer.css +70 -70
  105. package/src/layout/AppMenuDrawer.tsx +122 -122
  106. package/src/layout/ErrorBoundary.tsx +162 -162
  107. package/src/layout/ResponsiveDialog.css +86 -0
  108. package/src/layout/ResponsiveDialog.tsx +55 -0
  109. package/src/layout/index.tsx +69 -68
  110. package/src/link/Link.tsx +23 -0
  111. package/src/link/index.ts +1 -0
  112. package/src/mdi/Mdi.css +138 -138
  113. package/src/mdi/Mdi.test.tsx +91 -87
  114. package/src/mdi/Mdi.tsx +141 -141
  115. package/src/mdi/MdiConfirmCloseDialog.tsx +47 -47
  116. package/src/mdi/MdiContext.tsx +59 -59
  117. package/src/mdi/MdiDocumentContext.tsx +60 -60
  118. package/src/mdi/MdiPanel.tsx +61 -61
  119. package/src/mdi/MdiRestore.test.tsx +86 -82
  120. package/src/mdi/MdiTab.tsx +30 -30
  121. package/src/mdi/controller.test.ts +382 -382
  122. package/src/mdi/controller.ts +656 -656
  123. package/src/mdi/dockviewHost.ts +132 -132
  124. package/src/mdi/fakeHost.ts +200 -200
  125. package/src/mdi/host.ts +44 -44
  126. package/src/mdi/ids.test.ts +20 -20
  127. package/src/mdi/ids.ts +18 -18
  128. package/src/mdi/index.ts +31 -31
  129. package/src/mdi/layoutRestore.test.ts +156 -156
  130. package/src/mdi/layoutRestore.ts +311 -311
  131. package/src/mdi/layoutSpec.test.ts +143 -143
  132. package/src/mdi/layoutSpec.ts +214 -214
  133. package/src/mdi/layoutStore.test.ts +93 -93
  134. package/src/mdi/layoutStore.ts +99 -99
  135. package/src/mdi/memorySettingsStore.ts +21 -21
  136. package/src/mdi/registry.ts +34 -34
  137. package/src/mdi/testTypes.ts +37 -37
  138. package/src/mdi/theme.ts +22 -22
  139. package/src/mdi/types.ts +214 -214
  140. package/src/page/Page.css +53 -53
  141. package/src/page/PageBlock.css +64 -64
  142. package/src/page/PageBlock.tsx +92 -92
  143. package/src/page/PageHeader.css +88 -88
  144. package/src/page/PageHeader.tsx +115 -116
  145. package/src/page/PageTitle.css +5 -0
  146. package/src/page/PageTitle.tsx +21 -0
  147. package/src/page/index.ts +4 -3
  148. package/src/paper/Paper.tsx +52 -52
  149. package/src/progress/LinearProgress.css +93 -93
  150. package/src/progress/LinearProgress.tsx +104 -104
  151. package/src/progress/index.ts +1 -1
  152. package/src/report-downloader/ReportDownloader.css +67 -67
  153. package/src/report-downloader/components/StatusItem.tsx +87 -86
  154. package/src/report-downloader/components/StatusList.tsx +28 -28
  155. package/src/report-downloader/index.ts +41 -41
  156. package/src/report-downloader/status.tsx +92 -92
  157. package/src/sortable/DropIndicator.css +51 -51
  158. package/src/sortable/DropIndicator.tsx +27 -27
  159. package/src/sortable/SortableItemList.css +21 -21
  160. package/src/sortable/SortableItemList.tsx +264 -264
  161. package/src/sortable/index.ts +8 -8
  162. package/src/sortable/reorderSortOrder.ts +126 -126
  163. package/src/sortable/sortOrder.ts +101 -101
  164. package/src/sortable/types.ts +9 -9
  165. package/src/sortable/useSortableContainer.ts +53 -53
  166. package/src/sortable/useSortableItem.ts +95 -95
  167. package/src/sortable/useSortableList.ts +117 -117
  168. package/src/test/happy-dom-document-class.ts +24 -24
  169. package/src/test/setup.ts +12 -12
  170. package/src/theme/useDsColorScheme.ts +53 -53
  171. package/tsconfig.build.json +9 -9
  172. package/tsconfig.json +8 -8
  173. package/vitest.config.ts +10 -10
@@ -1,59 +1,59 @@
1
- import { createContext, type ReactNode, use, useEffect, useMemo, useState, useSyncExternalStore } from "react";
2
-
3
- import { MdiController } from "./controller.js";
4
- import type { MdiApi, MdiDocumentInfo, MdiDocumentTypes } from "./types.js";
5
-
6
- const MdiControllerContext = createContext<MdiController | null>(null);
7
-
8
- export type MdiProviderProps = {
9
- /** The document types this workspace can show, keyed by type name */
10
- types: MdiDocumentTypes;
11
- children: ReactNode;
12
- };
13
-
14
- /**
15
- * Owns the document controller. Anything inside it can call `useMdi()`, so
16
- * toolbars and menus outside the dock itself can open and close documents.
17
- */
18
- export function MdiProvider({ types, children }: MdiProviderProps) {
19
- let [controller] = useState(() => new MdiController(types));
20
-
21
- useEffect(() => {
22
- controller.setTypes(types);
23
- }, [controller, types]);
24
-
25
- return <MdiControllerContext value={controller}>{children}</MdiControllerContext>;
26
- }
27
-
28
- export function useMdiController(): MdiController {
29
- let controller = use(MdiControllerContext);
30
-
31
- if (!controller) {
32
- throw new Error("Mdi: this component must be rendered inside <MdiProvider>.");
33
- }
34
-
35
- return controller;
36
- }
37
-
38
- /** The imperative document API: open, activate, close, titles, layout commands. */
39
- export function useMdi(): MdiApi {
40
- return useMdiController();
41
- }
42
-
43
- /** The active document, re-rendering when it changes. Drives shared panels such as a property grid. */
44
- export function useMdiActiveDocument(): MdiDocumentInfo | undefined {
45
- let controller = useMdiController();
46
- return useSyncExternalStore(controller.subscribeStore, controller.getActive, controller.getActive);
47
- }
48
-
49
- /** The open documents, optionally of one type. For "Windows" menus and the like. */
50
- export function useMdiDocuments(type?: string): MdiDocumentInfo[] {
51
- let controller = useMdiController();
52
- let all = useSyncExternalStore(
53
- controller.subscribeStore,
54
- controller.getDocumentsSnapshot,
55
- controller.getDocumentsSnapshot,
56
- );
57
-
58
- return useMemo(() => (type === undefined ? all : all.filter((document) => document.type === type)), [all, type]);
59
- }
1
+ import { createContext, type ReactNode, use, useEffect, useMemo, useState, useSyncExternalStore } from "react";
2
+
3
+ import { MdiController } from "./controller.js";
4
+ import type { MdiApi, MdiDocumentInfo, MdiDocumentTypes } from "./types.js";
5
+
6
+ const MdiControllerContext = createContext<MdiController | null>(null);
7
+
8
+ export type MdiProviderProps = {
9
+ /** The document types this workspace can show, keyed by type name */
10
+ types: MdiDocumentTypes;
11
+ children: ReactNode;
12
+ };
13
+
14
+ /**
15
+ * Owns the document controller. Anything inside it can call `useMdi()`, so
16
+ * toolbars and menus outside the dock itself can open and close documents.
17
+ */
18
+ export function MdiProvider({ types, children }: MdiProviderProps) {
19
+ let [controller] = useState(() => new MdiController(types));
20
+
21
+ useEffect(() => {
22
+ controller.setTypes(types);
23
+ }, [controller, types]);
24
+
25
+ return <MdiControllerContext value={controller}>{children}</MdiControllerContext>;
26
+ }
27
+
28
+ export function useMdiController(): MdiController {
29
+ let controller = use(MdiControllerContext);
30
+
31
+ if (!controller) {
32
+ throw new Error("Mdi: this component must be rendered inside <MdiProvider>.");
33
+ }
34
+
35
+ return controller;
36
+ }
37
+
38
+ /** The imperative document API: open, activate, close, titles, layout commands. */
39
+ export function useMdi(): MdiApi {
40
+ return useMdiController();
41
+ }
42
+
43
+ /** The active document, re-rendering when it changes. Drives shared panels such as a property grid. */
44
+ export function useMdiActiveDocument(): MdiDocumentInfo | undefined {
45
+ let controller = useMdiController();
46
+ return useSyncExternalStore(controller.subscribeStore, controller.getActive, controller.getActive);
47
+ }
48
+
49
+ /** The open documents, optionally of one type. For "Windows" menus and the like. */
50
+ export function useMdiDocuments(type?: string): MdiDocumentInfo[] {
51
+ let controller = useMdiController();
52
+ let all = useSyncExternalStore(
53
+ controller.subscribeStore,
54
+ controller.getDocumentsSnapshot,
55
+ controller.getDocumentsSnapshot,
56
+ );
57
+
58
+ return useMemo(() => (type === undefined ? all : all.filter((document) => document.type === type)), [all, type]);
59
+ }
@@ -1,60 +1,60 @@
1
- import { createContext, use, useEffect, useMemo, useRef, useState, useSyncExternalStore } from "react";
2
-
3
- import { parsePanelId } from "./ids.js";
4
- import { useMdiController } from "./MdiContext.js";
5
- import type { MdiCloseOptions, MdiDocumentHandle, MdiDocumentOptions, MdiParams } from "./types.js";
6
-
7
- export const MdiDocumentIdContext = createContext<string | null>(null);
8
-
9
- /**
10
- * The document a component is rendered in: its params, whether it is active, and
11
- * the handle to set its title and dirty state or close it. Pass `onSave`/`onClosing`
12
- * to take part in the close flow.
13
- */
14
- export function useMdiDocument<P extends MdiParams = MdiParams>(options?: MdiDocumentOptions): MdiDocumentHandle<P> {
15
- let controller = useMdiController();
16
- let id = use(MdiDocumentIdContext);
17
-
18
- if (!id) {
19
- throw new Error("Mdi: useMdiDocument() must be called from a component rendered as an Mdi document.");
20
- }
21
-
22
- // The guards are registered once; they always call the latest callbacks.
23
- let latest = useRef(options);
24
- useEffect(() => {
25
- latest.current = options;
26
- });
27
-
28
- let [guards] = useState<MdiDocumentOptions>(() => ({
29
- onSave: () => latest.current?.onSave?.() ?? true,
30
- onClosing: () => latest.current?.onClosing?.() ?? true,
31
- }));
32
-
33
- useEffect(() => controller.registerGuards(id, guards), [controller, id, guards]);
34
-
35
- let info = useSyncExternalStore(
36
- controller.subscribeStore,
37
- () => controller.getDocument(id),
38
- () => controller.getDocument(id),
39
- );
40
-
41
- return useMemo(() => {
42
- let parsed = parsePanelId(id);
43
-
44
- return {
45
- id,
46
- type: info?.type ?? parsed.type,
47
- key: info?.key ?? parsed.key,
48
- params: (info?.params ?? {}) as P,
49
- isActive: info?.isActive ?? false,
50
- dirty: info?.dirty ?? false,
51
- closable: info?.closable ?? true,
52
- setTitle: (title: string) => controller.setTitle(id, title),
53
- setDirty: (dirty: boolean) => controller.setDirty(id, dirty),
54
- close: (closeOptions?: MdiCloseOptions) => controller.close(id, closeOptions),
55
- activate: () => controller.activate(id),
56
- getWindow: () => controller.getWindow(id),
57
- mdi: controller,
58
- };
59
- }, [controller, id, info]);
60
- }
1
+ import { createContext, use, useEffect, useMemo, useRef, useState, useSyncExternalStore } from "react";
2
+
3
+ import { parsePanelId } from "./ids.js";
4
+ import { useMdiController } from "./MdiContext.js";
5
+ import type { MdiCloseOptions, MdiDocumentHandle, MdiDocumentOptions, MdiParams } from "./types.js";
6
+
7
+ export const MdiDocumentIdContext = createContext<string | null>(null);
8
+
9
+ /**
10
+ * The document a component is rendered in: its params, whether it is active, and
11
+ * the handle to set its title and dirty state or close it. Pass `onSave`/`onClosing`
12
+ * to take part in the close flow.
13
+ */
14
+ export function useMdiDocument<P extends MdiParams = MdiParams>(options?: MdiDocumentOptions): MdiDocumentHandle<P> {
15
+ let controller = useMdiController();
16
+ let id = use(MdiDocumentIdContext);
17
+
18
+ if (!id) {
19
+ throw new Error("Mdi: useMdiDocument() must be called from a component rendered as an Mdi document.");
20
+ }
21
+
22
+ // The guards are registered once; they always call the latest callbacks.
23
+ let latest = useRef(options);
24
+ useEffect(() => {
25
+ latest.current = options;
26
+ });
27
+
28
+ let [guards] = useState<MdiDocumentOptions>(() => ({
29
+ onSave: () => latest.current?.onSave?.() ?? true,
30
+ onClosing: () => latest.current?.onClosing?.() ?? true,
31
+ }));
32
+
33
+ useEffect(() => controller.registerGuards(id, guards), [controller, id, guards]);
34
+
35
+ let info = useSyncExternalStore(
36
+ controller.subscribeStore,
37
+ () => controller.getDocument(id),
38
+ () => controller.getDocument(id),
39
+ );
40
+
41
+ return useMemo(() => {
42
+ let parsed = parsePanelId(id);
43
+
44
+ return {
45
+ id,
46
+ type: info?.type ?? parsed.type,
47
+ key: info?.key ?? parsed.key,
48
+ params: (info?.params ?? {}) as P,
49
+ isActive: info?.isActive ?? false,
50
+ dirty: info?.dirty ?? false,
51
+ closable: info?.closable ?? true,
52
+ setTitle: (title: string) => controller.setTitle(id, title),
53
+ setDirty: (dirty: boolean) => controller.setDirty(id, dirty),
54
+ close: (closeOptions?: MdiCloseOptions) => controller.close(id, closeOptions),
55
+ activate: () => controller.activate(id),
56
+ getWindow: () => controller.getWindow(id),
57
+ mdi: controller,
58
+ };
59
+ }, [controller, id, info]);
60
+ }
@@ -1,61 +1,61 @@
1
- import { Button } from "@digdir/designsystemet-react";
2
- import { getLocalizedString } from "@olenbetong/appframe-core";
3
- import type { IDockviewPanelProps } from "dockview-react";
4
- import { useSyncExternalStore } from "react";
5
- import { ErrorBoundary, type FallbackProps } from "react-error-boundary";
6
-
7
- import { useMdiController } from "./MdiContext.js";
8
- import { MdiDocumentIdContext } from "./MdiDocumentContext.js";
9
-
10
- function MdiErrorFallback({ error, resetErrorBoundary }: FallbackProps) {
11
- let message = error instanceof Error ? error.message : String(error);
12
-
13
- return (
14
- <div className="ObMdi-error" role="alert">
15
- <p className="ObMdi-error-title">{getLocalizedString("The document could not be displayed")}</p>
16
- <pre className="ObMdi-error-message">{message}</pre>
17
- <Button data-size="sm" variant="secondary" onClick={resetErrorBoundary}>
18
- {getLocalizedString("Try again")}
19
- </Button>
20
- </div>
21
- );
22
- }
23
-
24
- /**
25
- * The one dockview content component. Every panel renders through it; it looks the
26
- * document up by panel id and renders the component registered for its type.
27
- */
28
- export function MdiPanel(props: IDockviewPanelProps) {
29
- let id = props.api.id;
30
- let controller = useMdiController();
31
- let info = useSyncExternalStore(
32
- controller.subscribeStore,
33
- () => controller.getDocument(id),
34
- () => controller.getDocument(id),
35
- );
36
-
37
- if (!info) {
38
- return null;
39
- }
40
-
41
- let definition = controller.getTypes()[info.type];
42
-
43
- if (!definition) {
44
- return (
45
- <div className="ObMdi-error" role="alert">
46
- <p className="ObMdi-error-title">{getLocalizedString("Unknown document type")}</p>
47
- <pre className="ObMdi-error-message">{info.type}</pre>
48
- </div>
49
- );
50
- }
51
-
52
- let Component = definition.component;
53
-
54
- return (
55
- <MdiDocumentIdContext value={id}>
56
- <ErrorBoundary FallbackComponent={MdiErrorFallback} resetKeys={[info.params]}>
57
- <Component id={id} type={info.type} documentKey={info.key} params={info.params} />
58
- </ErrorBoundary>
59
- </MdiDocumentIdContext>
60
- );
61
- }
1
+ import { Button } from "@digdir/designsystemet-react";
2
+ import type { IDockviewPanelProps } from "dockview-react";
3
+ import { useSyncExternalStore } from "react";
4
+ import { ErrorBoundary, type FallbackProps } from "react-error-boundary";
5
+
6
+ import { useMdiController } from "./MdiContext.js";
7
+ import { MdiDocumentIdContext } from "./MdiDocumentContext.js";
8
+ import { getLocalizedString } from "../i18n.js";
9
+
10
+ function MdiErrorFallback({ error, resetErrorBoundary }: FallbackProps) {
11
+ let message = error instanceof Error ? error.message : String(error);
12
+
13
+ return (
14
+ <div className="ObMdi-error" role="alert">
15
+ <p className="ObMdi-error-title">{getLocalizedString("The document could not be displayed")}</p>
16
+ <pre className="ObMdi-error-message">{message}</pre>
17
+ <Button data-size="sm" variant="secondary" onClick={resetErrorBoundary}>
18
+ {getLocalizedString("Try again")}
19
+ </Button>
20
+ </div>
21
+ );
22
+ }
23
+
24
+ /**
25
+ * The one dockview content component. Every panel renders through it; it looks the
26
+ * document up by panel id and renders the component registered for its type.
27
+ */
28
+ export function MdiPanel(props: IDockviewPanelProps) {
29
+ let id = props.api.id;
30
+ let controller = useMdiController();
31
+ let info = useSyncExternalStore(
32
+ controller.subscribeStore,
33
+ () => controller.getDocument(id),
34
+ () => controller.getDocument(id),
35
+ );
36
+
37
+ if (!info) {
38
+ return null;
39
+ }
40
+
41
+ let definition = controller.getTypes()[info.type];
42
+
43
+ if (!definition) {
44
+ return (
45
+ <div className="ObMdi-error" role="alert">
46
+ <p className="ObMdi-error-title">{getLocalizedString("Unknown document type")}</p>
47
+ <pre className="ObMdi-error-message">{info.type}</pre>
48
+ </div>
49
+ );
50
+ }
51
+
52
+ let Component = definition.component;
53
+
54
+ return (
55
+ <MdiDocumentIdContext value={id}>
56
+ <ErrorBoundary FallbackComponent={MdiErrorFallback} resetKeys={[info.params]}>
57
+ <Component id={id} type={info.type} documentKey={info.key} params={info.params} />
58
+ </ErrorBoundary>
59
+ </MdiDocumentIdContext>
60
+ );
61
+ }
@@ -1,82 +1,86 @@
1
- import { render, screen } from "@testing-library/react";
2
- import { describe, expect, it, vi } from "vitest";
3
-
4
- import { layoutSpecToLayout } from "./layoutSpec.js";
5
- import { layoutStore } from "./layoutStore.js";
6
- import { Mdi } from "./Mdi.js";
7
- import { MdiProvider } from "./MdiContext.js";
8
- import type { MdiDocumentProps, MdiDocumentTypes, MdiLayout, MdiLayoutSpec } from "./types.js";
9
-
10
- vi.mock("@olenbetong/appframe-core", () => ({
11
- getLocalizedString: (value: string) => value,
12
- }));
13
-
14
- function Doc({ id }: MdiDocumentProps) {
15
- return <div data-testid={id}>{id}</div>;
16
- }
17
-
18
- const types: MdiDocumentTypes = {
19
- explorer: { component: Doc, singleton: true, closable: false, title: "Explorer" },
20
- properties: { component: Doc, singleton: true, closable: false, title: "Properties" },
21
- welcome: { component: Doc, singleton: true, title: "Welcome" },
22
- serie: { component: Doc, title: "Serie", restore: async () => true },
23
- };
24
-
25
- const spec: MdiLayoutSpec = {
26
- root: {
27
- direction: "horizontal",
28
- children: [
29
- { tabs: [{ type: "explorer" }], hideHeader: true, locked: true },
30
- {
31
- direction: "vertical",
32
- children: [{ tabs: [{ type: "welcome" }] }, { tabs: [{ type: "properties" }] }],
33
- },
34
- ],
35
- },
36
- };
37
-
38
- /**
39
- * What dockview serialises after a panel was popped out of the welcome group: the
40
- * panel sits in `popoutGroups` with the welcome group as its reference group.
41
- */
42
- function layoutWithPopout(): MdiLayout {
43
- let layout = layoutSpecToLayout(spec, types, 1);
44
- let serieId = "serie:abc";
45
-
46
- layout.documents[serieId] = { type: "serie", key: "abc", params: { name: "S" }, title: "S", closable: true };
47
- layout.dockview.panels[serieId] = { id: serieId, contentComponent: "mdi", tabComponent: "mdi", title: "S" };
48
- layout.dockview.popoutGroups = [
49
- {
50
- data: { id: "4", views: [serieId], activeView: serieId },
51
- gridReferenceGroup: "mdi-g2",
52
- position: { top: 10, left: 10, width: 300, height: 200 },
53
- url: "/popout",
54
- },
55
- ];
56
-
57
- return layout;
58
- }
59
-
60
- describe("Mdi restore", () => {
61
- it("re-docks a popped-out document when a saved layout is restored", async () => {
62
- let key = layoutStore.key("restore-popout");
63
- await layoutStore.setNow(key, layoutWithPopout());
64
-
65
- render(
66
- <MdiProvider types={types}>
67
- <div style={{ width: 800, height: 600 }}>
68
- <Mdi id="restore-popout" layoutVersion={1} defaultLayout={spec} />
69
- </div>
70
- </MdiProvider>,
71
- );
72
-
73
- // dockview only mounts the content of the active tab of a group, so check the tabs.
74
- expect(await screen.findByTestId("welcome")).toBeInTheDocument();
75
- let tabIds = [...document.querySelectorAll("[data-tab-panel-id]")].map((tab) =>
76
- tab.getAttribute("data-tab-panel-id"),
77
- );
78
- expect(tabIds).toEqual(["explorer", "welcome", "serie:abc", "properties"]);
79
- expect(screen.getByTestId("explorer")).toBeInTheDocument();
80
- expect(screen.getByTestId("properties")).toBeInTheDocument();
81
- });
82
- });
1
+ import { render, screen } from "@testing-library/react";
2
+ import { describe, expect, it, vi } from "vitest";
3
+
4
+ import { layoutSpecToLayout } from "./layoutSpec.js";
5
+ import { layoutStore } from "./layoutStore.js";
6
+ import { Mdi } from "./Mdi.js";
7
+ import { MdiProvider } from "./MdiContext.js";
8
+ import type { MdiDocumentProps, MdiDocumentTypes, MdiLayout, MdiLayoutSpec } from "./types.js";
9
+
10
+ vi.mock("@olenbetong/appframe-core", () => ({
11
+ getLocalizedString: (value: string) => value,
12
+ createLocalizer: () => ({
13
+ getLocalizedString: (value: string) => value,
14
+ localize: (parts: TemplateStringsArray) => parts.join(""),
15
+ }),
16
+ }));
17
+
18
+ function Doc({ id }: MdiDocumentProps) {
19
+ return <div data-testid={id}>{id}</div>;
20
+ }
21
+
22
+ const types: MdiDocumentTypes = {
23
+ explorer: { component: Doc, singleton: true, closable: false, title: "Explorer" },
24
+ properties: { component: Doc, singleton: true, closable: false, title: "Properties" },
25
+ welcome: { component: Doc, singleton: true, title: "Welcome" },
26
+ serie: { component: Doc, title: "Serie", restore: async () => true },
27
+ };
28
+
29
+ const spec: MdiLayoutSpec = {
30
+ root: {
31
+ direction: "horizontal",
32
+ children: [
33
+ { tabs: [{ type: "explorer" }], hideHeader: true, locked: true },
34
+ {
35
+ direction: "vertical",
36
+ children: [{ tabs: [{ type: "welcome" }] }, { tabs: [{ type: "properties" }] }],
37
+ },
38
+ ],
39
+ },
40
+ };
41
+
42
+ /**
43
+ * What dockview serialises after a panel was popped out of the welcome group: the
44
+ * panel sits in `popoutGroups` with the welcome group as its reference group.
45
+ */
46
+ function layoutWithPopout(): MdiLayout {
47
+ let layout = layoutSpecToLayout(spec, types, 1);
48
+ let serieId = "serie:abc";
49
+
50
+ layout.documents[serieId] = { type: "serie", key: "abc", params: { name: "S" }, title: "S", closable: true };
51
+ layout.dockview.panels[serieId] = { id: serieId, contentComponent: "mdi", tabComponent: "mdi", title: "S" };
52
+ layout.dockview.popoutGroups = [
53
+ {
54
+ data: { id: "4", views: [serieId], activeView: serieId },
55
+ gridReferenceGroup: "mdi-g2",
56
+ position: { top: 10, left: 10, width: 300, height: 200 },
57
+ url: "/popout",
58
+ },
59
+ ];
60
+
61
+ return layout;
62
+ }
63
+
64
+ describe("Mdi restore", () => {
65
+ it("re-docks a popped-out document when a saved layout is restored", async () => {
66
+ let key = layoutStore.key("restore-popout");
67
+ await layoutStore.setNow(key, layoutWithPopout());
68
+
69
+ render(
70
+ <MdiProvider types={types}>
71
+ <div style={{ width: 800, height: 600 }}>
72
+ <Mdi id="restore-popout" layoutVersion={1} defaultLayout={spec} />
73
+ </div>
74
+ </MdiProvider>,
75
+ );
76
+
77
+ // dockview only mounts the content of the active tab of a group, so check the tabs.
78
+ expect(await screen.findByTestId("welcome")).toBeInTheDocument();
79
+ let tabIds = [...document.querySelectorAll("[data-tab-panel-id]")].map((tab) =>
80
+ tab.getAttribute("data-tab-panel-id"),
81
+ );
82
+ expect(tabIds).toEqual(["explorer", "welcome", "serie:abc", "properties"]);
83
+ expect(screen.getByTestId("explorer")).toBeInTheDocument();
84
+ expect(screen.getByTestId("properties")).toBeInTheDocument();
85
+ });
86
+ });
@@ -1,30 +1,30 @@
1
- import clsx from "clsx";
2
- import { DockviewDefaultTab, type IDockviewPanelHeaderProps } from "dockview-react";
3
- import { useCallback, useSyncExternalStore } from "react";
4
-
5
- import { useMdiController } from "./MdiContext.js";
6
-
7
- /**
8
- * The default tab with the close button hidden for unclosable documents, and every
9
- * close (button and middle-click) routed through the controller guards.
10
- */
11
- export function MdiTab(props: IDockviewPanelHeaderProps) {
12
- let id = props.api.id;
13
- let controller = useMdiController();
14
- let info = useSyncExternalStore(
15
- controller.subscribeStore,
16
- () => controller.getDocument(id),
17
- () => controller.getDocument(id),
18
- );
19
-
20
- let close = useCallback(() => {
21
- void controller.close(id);
22
- }, [controller, id]);
23
-
24
- // DockviewDefaultTab overwrites `className`, so the state classes go on a layout-neutral wrapper.
25
- return (
26
- <div className={clsx("ObMdi-tab", info?.dirty && "ObMdi-tab--dirty")} style={{ display: "contents" }}>
27
- <DockviewDefaultTab {...props} hideClose={info ? !info.closable : false} closeActionOverride={close} />
28
- </div>
29
- );
30
- }
1
+ import clsx from "clsx";
2
+ import { DockviewDefaultTab, type IDockviewPanelHeaderProps } from "dockview-react";
3
+ import { useCallback, useSyncExternalStore } from "react";
4
+
5
+ import { useMdiController } from "./MdiContext.js";
6
+
7
+ /**
8
+ * The default tab with the close button hidden for unclosable documents, and every
9
+ * close (button and middle-click) routed through the controller guards.
10
+ */
11
+ export function MdiTab(props: IDockviewPanelHeaderProps) {
12
+ let id = props.api.id;
13
+ let controller = useMdiController();
14
+ let info = useSyncExternalStore(
15
+ controller.subscribeStore,
16
+ () => controller.getDocument(id),
17
+ () => controller.getDocument(id),
18
+ );
19
+
20
+ let close = useCallback(() => {
21
+ void controller.close(id);
22
+ }, [controller, id]);
23
+
24
+ // DockviewDefaultTab overwrites `className`, so the state classes go on a layout-neutral wrapper.
25
+ return (
26
+ <div className={clsx("ObMdi-tab", info?.dirty && "ObMdi-tab--dirty")} style={{ display: "contents" }}>
27
+ <DockviewDefaultTab {...props} hideClose={info ? !info.closable : false} closeActionOverride={close} />
28
+ </div>
29
+ );
30
+ }