@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
|
@@ -1,122 +1,122 @@
|
|
|
1
|
-
import "./AppMenuDrawer.css";
|
|
2
|
-
|
|
3
|
-
import clsx from "clsx";
|
|
4
|
-
import type React from "react";
|
|
5
|
-
import { useCallback, useEffect, useRef, useState } from "react";
|
|
6
|
-
import { useLocation } from "react-router";
|
|
7
|
-
|
|
8
|
-
import { AppMenu, type AppMenuProps } from "./AppMenu.js";
|
|
9
|
-
|
|
10
|
-
/** Below this width the drawer is an overlay rather than docked beside the content. */
|
|
11
|
-
const MOBILE_QUERY = "(max-width: 1199px)";
|
|
12
|
-
|
|
13
|
-
function useIsMobile() {
|
|
14
|
-
let [isMobile, setIsMobile] = useState(() => {
|
|
15
|
-
if (typeof window === "undefined") return false;
|
|
16
|
-
return window.matchMedia(MOBILE_QUERY).matches;
|
|
17
|
-
});
|
|
18
|
-
|
|
19
|
-
useEffect(() => {
|
|
20
|
-
let mq = window.matchMedia(MOBILE_QUERY);
|
|
21
|
-
let handler = (e: MediaQueryListEvent) => setIsMobile(e.matches);
|
|
22
|
-
mq.addEventListener("change", handler);
|
|
23
|
-
return () => mq.removeEventListener("change", handler);
|
|
24
|
-
}, []);
|
|
25
|
-
|
|
26
|
-
return isMobile;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
export type AppMenuDrawerState = {
|
|
30
|
-
/** Whether the drawer is showing. Docked drawers start open, overlays start closed. */
|
|
31
|
-
open: boolean;
|
|
32
|
-
/** True while the drawer is an overlay rather than docked. */
|
|
33
|
-
isMobile: boolean;
|
|
34
|
-
toggle: () => void;
|
|
35
|
-
close: () => void;
|
|
36
|
-
};
|
|
37
|
-
|
|
38
|
-
/**
|
|
39
|
-
* Open/closed state for an {@link AppMenuDrawer}, including the responsive behaviour: docked and
|
|
40
|
-
* open by default on desktop, an overlay that starts closed on smaller screens.
|
|
41
|
-
*
|
|
42
|
-
* Exposed separately from the drawer so the toggle button can live somewhere else entirely —
|
|
43
|
-
* an app on a site template that renders its own toolbar puts the toggle in that toolbar rather
|
|
44
|
-
* than in a second one of its own.
|
|
45
|
-
*/
|
|
46
|
-
export function useAppMenuDrawer(): AppMenuDrawerState {
|
|
47
|
-
let isMobile = useIsMobile();
|
|
48
|
-
let [desktopOpen, setDesktopOpen] = useState(true);
|
|
49
|
-
let [mobileOpen, setMobileOpen] = useState(false);
|
|
50
|
-
|
|
51
|
-
let toggle = useCallback(() => {
|
|
52
|
-
if (isMobile) {
|
|
53
|
-
setMobileOpen((open) => !open);
|
|
54
|
-
} else {
|
|
55
|
-
setDesktopOpen((open) => !open);
|
|
56
|
-
}
|
|
57
|
-
}, [isMobile]);
|
|
58
|
-
|
|
59
|
-
let close = useCallback(() => setMobileOpen(false), []);
|
|
60
|
-
|
|
61
|
-
return { open: isMobile ? mobileOpen : desktopOpen, isMobile, toggle, close };
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
export type AppMenuDrawerProps = {
|
|
65
|
-
/** Props for the `AppMenu` wrapping the items. */
|
|
66
|
-
AppMenuProps?: AppMenuProps;
|
|
67
|
-
/** Menu content — typically `AppMenuItem` and `AppMenuSubheader`. */
|
|
68
|
-
children: React.ReactNode;
|
|
69
|
-
isMobile: boolean;
|
|
70
|
-
onClose: () => void;
|
|
71
|
-
open: boolean;
|
|
72
|
-
};
|
|
73
|
-
|
|
74
|
-
/**
|
|
75
|
-
* The app-navigation drawer: docked beside the content on desktop, an overlay on smaller
|
|
76
|
-
* screens. Use it with {@link useAppMenuDrawer}.
|
|
77
|
-
*
|
|
78
|
-
* `Page.Header`'s `appbar` variant renders this for you along with a toggle and a title bar. Use
|
|
79
|
-
* this component directly when the app must *not* render a bar of its own — for example on a site
|
|
80
|
-
* template that already renders a toolbar, where an appbar would be a second one.
|
|
81
|
-
*
|
|
82
|
-
* It must be rendered inside `Page` for the docked drawer to offset the content (`Page.css`
|
|
83
|
-
* matches on these class names). The drawer is `position: fixed` and starts at
|
|
84
|
-
* `--ob-page-drawer-top`, which defaults to `0`; set that to the height of a site toolbar so the
|
|
85
|
-
* drawer sits below it rather than over it.
|
|
86
|
-
*/
|
|
87
|
-
export function AppMenuDrawer({ AppMenuProps, children, isMobile, onClose, open }: AppMenuDrawerProps) {
|
|
88
|
-
let location = useLocation();
|
|
89
|
-
let prevLocation = useRef(location);
|
|
90
|
-
|
|
91
|
-
// Following a link should dismiss an overlay; a docked drawer stays put.
|
|
92
|
-
useEffect(() => {
|
|
93
|
-
if (location !== prevLocation.current) {
|
|
94
|
-
prevLocation.current = location;
|
|
95
|
-
if (isMobile) onClose();
|
|
96
|
-
}
|
|
97
|
-
}, [location, isMobile, onClose]);
|
|
98
|
-
|
|
99
|
-
return (
|
|
100
|
-
<>
|
|
101
|
-
{isMobile && (
|
|
102
|
-
// oxlint-disable-next-line click-events-have-key-events -- Escape and the toggle
|
|
103
|
-
// both close the drawer; this is a pointer affordance for the scrim only.
|
|
104
|
-
<div
|
|
105
|
-
className={clsx("ObPageHeader-drawerOverlay", open && "ObPageHeader-drawerOpen")}
|
|
106
|
-
onClick={onClose}
|
|
107
|
-
aria-hidden="true"
|
|
108
|
-
/>
|
|
109
|
-
)}
|
|
110
|
-
<div
|
|
111
|
-
className={clsx(
|
|
112
|
-
"ObPageHeader-drawer",
|
|
113
|
-
"AppMenu-drawer",
|
|
114
|
-
isMobile ? "ObPageHeader-drawerOverlayMode" : "ObPageHeader-drawerDocked",
|
|
115
|
-
open && "ObPageHeader-drawerOpen",
|
|
116
|
-
)}
|
|
117
|
-
>
|
|
118
|
-
<AppMenu {...AppMenuProps}>{children}</AppMenu>
|
|
119
|
-
</div>
|
|
120
|
-
</>
|
|
121
|
-
);
|
|
122
|
-
}
|
|
1
|
+
import "./AppMenuDrawer.css";
|
|
2
|
+
|
|
3
|
+
import clsx from "clsx";
|
|
4
|
+
import type React from "react";
|
|
5
|
+
import { useCallback, useEffect, useRef, useState } from "react";
|
|
6
|
+
import { useLocation } from "react-router";
|
|
7
|
+
|
|
8
|
+
import { AppMenu, type AppMenuProps } from "./AppMenu.js";
|
|
9
|
+
|
|
10
|
+
/** Below this width the drawer is an overlay rather than docked beside the content. */
|
|
11
|
+
const MOBILE_QUERY = "(max-width: 1199px)";
|
|
12
|
+
|
|
13
|
+
function useIsMobile() {
|
|
14
|
+
let [isMobile, setIsMobile] = useState(() => {
|
|
15
|
+
if (typeof window === "undefined") return false;
|
|
16
|
+
return window.matchMedia(MOBILE_QUERY).matches;
|
|
17
|
+
});
|
|
18
|
+
|
|
19
|
+
useEffect(() => {
|
|
20
|
+
let mq = window.matchMedia(MOBILE_QUERY);
|
|
21
|
+
let handler = (e: MediaQueryListEvent) => setIsMobile(e.matches);
|
|
22
|
+
mq.addEventListener("change", handler);
|
|
23
|
+
return () => mq.removeEventListener("change", handler);
|
|
24
|
+
}, []);
|
|
25
|
+
|
|
26
|
+
return isMobile;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export type AppMenuDrawerState = {
|
|
30
|
+
/** Whether the drawer is showing. Docked drawers start open, overlays start closed. */
|
|
31
|
+
open: boolean;
|
|
32
|
+
/** True while the drawer is an overlay rather than docked. */
|
|
33
|
+
isMobile: boolean;
|
|
34
|
+
toggle: () => void;
|
|
35
|
+
close: () => void;
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* Open/closed state for an {@link AppMenuDrawer}, including the responsive behaviour: docked and
|
|
40
|
+
* open by default on desktop, an overlay that starts closed on smaller screens.
|
|
41
|
+
*
|
|
42
|
+
* Exposed separately from the drawer so the toggle button can live somewhere else entirely —
|
|
43
|
+
* an app on a site template that renders its own toolbar puts the toggle in that toolbar rather
|
|
44
|
+
* than in a second one of its own.
|
|
45
|
+
*/
|
|
46
|
+
export function useAppMenuDrawer(): AppMenuDrawerState {
|
|
47
|
+
let isMobile = useIsMobile();
|
|
48
|
+
let [desktopOpen, setDesktopOpen] = useState(true);
|
|
49
|
+
let [mobileOpen, setMobileOpen] = useState(false);
|
|
50
|
+
|
|
51
|
+
let toggle = useCallback(() => {
|
|
52
|
+
if (isMobile) {
|
|
53
|
+
setMobileOpen((open) => !open);
|
|
54
|
+
} else {
|
|
55
|
+
setDesktopOpen((open) => !open);
|
|
56
|
+
}
|
|
57
|
+
}, [isMobile]);
|
|
58
|
+
|
|
59
|
+
let close = useCallback(() => setMobileOpen(false), []);
|
|
60
|
+
|
|
61
|
+
return { open: isMobile ? mobileOpen : desktopOpen, isMobile, toggle, close };
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export type AppMenuDrawerProps = {
|
|
65
|
+
/** Props for the `AppMenu` wrapping the items. */
|
|
66
|
+
AppMenuProps?: AppMenuProps;
|
|
67
|
+
/** Menu content — typically `AppMenuItem` and `AppMenuSubheader`. */
|
|
68
|
+
children: React.ReactNode;
|
|
69
|
+
isMobile: boolean;
|
|
70
|
+
onClose: () => void;
|
|
71
|
+
open: boolean;
|
|
72
|
+
};
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* The app-navigation drawer: docked beside the content on desktop, an overlay on smaller
|
|
76
|
+
* screens. Use it with {@link useAppMenuDrawer}.
|
|
77
|
+
*
|
|
78
|
+
* `Page.Header`'s `appbar` variant renders this for you along with a toggle and a title bar. Use
|
|
79
|
+
* this component directly when the app must *not* render a bar of its own — for example on a site
|
|
80
|
+
* template that already renders a toolbar, where an appbar would be a second one.
|
|
81
|
+
*
|
|
82
|
+
* It must be rendered inside `Page` for the docked drawer to offset the content (`Page.css`
|
|
83
|
+
* matches on these class names). The drawer is `position: fixed` and starts at
|
|
84
|
+
* `--ob-page-drawer-top`, which defaults to `0`; set that to the height of a site toolbar so the
|
|
85
|
+
* drawer sits below it rather than over it.
|
|
86
|
+
*/
|
|
87
|
+
export function AppMenuDrawer({ AppMenuProps, children, isMobile, onClose, open }: AppMenuDrawerProps) {
|
|
88
|
+
let location = useLocation();
|
|
89
|
+
let prevLocation = useRef(location);
|
|
90
|
+
|
|
91
|
+
// Following a link should dismiss an overlay; a docked drawer stays put.
|
|
92
|
+
useEffect(() => {
|
|
93
|
+
if (location !== prevLocation.current) {
|
|
94
|
+
prevLocation.current = location;
|
|
95
|
+
if (isMobile) onClose();
|
|
96
|
+
}
|
|
97
|
+
}, [location, isMobile, onClose]);
|
|
98
|
+
|
|
99
|
+
return (
|
|
100
|
+
<>
|
|
101
|
+
{isMobile && (
|
|
102
|
+
// oxlint-disable-next-line click-events-have-key-events -- Escape and the toggle
|
|
103
|
+
// both close the drawer; this is a pointer affordance for the scrim only.
|
|
104
|
+
<div
|
|
105
|
+
className={clsx("ObPageHeader-drawerOverlay", open && "ObPageHeader-drawerOpen")}
|
|
106
|
+
onClick={onClose}
|
|
107
|
+
aria-hidden="true"
|
|
108
|
+
/>
|
|
109
|
+
)}
|
|
110
|
+
<div
|
|
111
|
+
className={clsx(
|
|
112
|
+
"ObPageHeader-drawer",
|
|
113
|
+
"AppMenu-drawer",
|
|
114
|
+
isMobile ? "ObPageHeader-drawerOverlayMode" : "ObPageHeader-drawerDocked",
|
|
115
|
+
open && "ObPageHeader-drawerOpen",
|
|
116
|
+
)}
|
|
117
|
+
>
|
|
118
|
+
<AppMenu {...AppMenuProps}>{children}</AppMenu>
|
|
119
|
+
</div>
|
|
120
|
+
</>
|
|
121
|
+
);
|
|
122
|
+
}
|
|
@@ -1,162 +1,162 @@
|
|
|
1
|
-
import "./ErrorBoundary.css";
|
|
2
|
-
|
|
3
|
-
import {
|
|
4
|
-
import
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
function parseError(error: unknown) {
|
|
13
|
-
let message = "Unspecified error";
|
|
14
|
-
let stackTrace: string | null = null;
|
|
15
|
-
let title: string = getLocalizedString("Unexpected application error");
|
|
16
|
-
|
|
17
|
-
if (typeof error === "string") {
|
|
18
|
-
message = error;
|
|
19
|
-
} else if (error && typeof error === "object") {
|
|
20
|
-
const err = error as any;
|
|
21
|
-
if (err.status) {
|
|
22
|
-
title = `${err.status} ${err.statusText}`;
|
|
23
|
-
message = err.message ?? "";
|
|
24
|
-
} else if (err.message) {
|
|
25
|
-
message = err.message;
|
|
26
|
-
if (err.type) {
|
|
27
|
-
message = `${err.type}: ${message}`;
|
|
28
|
-
}
|
|
29
|
-
} else {
|
|
30
|
-
message = String(error);
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
if (err.stack || err.stackTrace) {
|
|
34
|
-
stackTrace = err.stack ?? err.stackTrace;
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
return { message, stackTrace, title };
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
// ── AppErrorBoundary ──────────────────────────────────────────────────────────
|
|
42
|
-
|
|
43
|
-
export type AppErrorBoundaryProps = {
|
|
44
|
-
children?: React.ReactNode;
|
|
45
|
-
message?: string | ((error: unknown) => string);
|
|
46
|
-
imgSrc?: string;
|
|
47
|
-
image?: React.ReactNode;
|
|
48
|
-
};
|
|
49
|
-
|
|
50
|
-
type AppErrorBoundaryState = {
|
|
51
|
-
hasError: boolean;
|
|
52
|
-
error: unknown;
|
|
53
|
-
};
|
|
54
|
-
|
|
55
|
-
export class AppErrorBoundary extends Component<AppErrorBoundaryProps, AppErrorBoundaryState> {
|
|
56
|
-
constructor(props: AppErrorBoundaryProps) {
|
|
57
|
-
super(props);
|
|
58
|
-
this.state = { hasError: false, error: null };
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
static getDerivedStateFromError(error: unknown): AppErrorBoundaryState {
|
|
62
|
-
return { hasError: true, error };
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
componentDidCatch(error: unknown, errorInfo: unknown) {
|
|
66
|
-
console.error(error, errorInfo);
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
render(): React.ReactNode {
|
|
70
|
-
if (this.state.hasError) {
|
|
71
|
-
const { imgSrc, message, image } = this.props;
|
|
72
|
-
const { message: errorMessage } = parseError(this.state.error);
|
|
73
|
-
const customMessage = typeof message === "function" ? message(this.state.error) : message;
|
|
74
|
-
|
|
75
|
-
return (
|
|
76
|
-
<div className="AppErrorBoundary-root">
|
|
77
|
-
<div className="AppErrorBoundary-inner">
|
|
78
|
-
{image ?? (
|
|
79
|
-
<img
|
|
80
|
-
alt=""
|
|
81
|
-
src={imgSrc ?? "/file/site/graphic/error-broken-robot.svg"}
|
|
82
|
-
className="AppErrorBoundary-image"
|
|
83
|
-
/>
|
|
84
|
-
)}
|
|
85
|
-
<h1 className="AppErrorBoundary-title">{getLocalizedString("Something went terribly wrong!")}</h1>
|
|
86
|
-
<div className="AppErrorBoundary-alert">{errorMessage}</div>
|
|
87
|
-
<p className="AppErrorBoundary-message">
|
|
88
|
-
{customMessage ??
|
|
89
|
-
getLocalizedString(
|
|
90
|
-
"Sometimes it is enough to simply refresh the page. If the error persists, contact the IT department.",
|
|
91
|
-
)}
|
|
92
|
-
</p>
|
|
93
|
-
<button type="button" className="AppErrorBoundary-reload" onClick={() => window.location.reload()}>
|
|
94
|
-
{getLocalizedString("Refresh page")}
|
|
95
|
-
</button>
|
|
96
|
-
</div>
|
|
97
|
-
</div>
|
|
98
|
-
);
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
return this.props.children;
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
// ── ErrorAlertFallback ────────────────────────────────────────────────────────
|
|
106
|
-
|
|
107
|
-
export type ErrorAlertFallbackProps = {
|
|
108
|
-
error: unknown;
|
|
109
|
-
className?: string;
|
|
110
|
-
};
|
|
111
|
-
|
|
112
|
-
export function ErrorAlertFallback({ error, className }: ErrorAlertFallbackProps) {
|
|
113
|
-
const message = error instanceof Error ? error.message : String(error);
|
|
114
|
-
|
|
115
|
-
return (
|
|
116
|
-
<div className={`ErrorAlertFallback-root${className ? ` ${className}` : ""}`}>
|
|
117
|
-
<div className="ErrorAlertFallback-content">
|
|
118
|
-
<p className="ErrorAlertFallback-title">{getLocalizedString("An error occured. Try refreshing the page")}</p>
|
|
119
|
-
<p>{message}</p>
|
|
120
|
-
</div>
|
|
121
|
-
<button type="button" className="ErrorAlertFallback-reload" onClick={() => window.location.reload()}>
|
|
122
|
-
{getLocalizedString("Reload page")}
|
|
123
|
-
</button>
|
|
124
|
-
</div>
|
|
125
|
-
);
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
// ── RouteErrorPage ────────────────────────────────────────────────────────────
|
|
129
|
-
|
|
130
|
-
export function RouteErrorPage() {
|
|
131
|
-
const error = useRouteError();
|
|
132
|
-
const { message, stackTrace, title } = parseError(error);
|
|
133
|
-
|
|
134
|
-
useEffect(() => {
|
|
135
|
-
(globalThis as any).af?.common?.logError?.(error);
|
|
136
|
-
}, [error]);
|
|
137
|
-
|
|
138
|
-
return (
|
|
139
|
-
<PageContainer className="flow">
|
|
140
|
-
<h1>{title}</h1>
|
|
141
|
-
{message && <p>{message}</p>}
|
|
142
|
-
{stackTrace && <pre className="RouteErrorPage-stack">{stackTrace}</pre>}
|
|
143
|
-
</PageContainer>
|
|
144
|
-
);
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
// ── AsyncErrorAlert ───────────────────────────────────────────────────────────
|
|
148
|
-
|
|
149
|
-
export function AsyncErrorAlert() {
|
|
150
|
-
const error = useAsyncError();
|
|
151
|
-
const message = typeof error === "string" ? error : (error as any)?.message;
|
|
152
|
-
|
|
153
|
-
return <div className="ErrorAlertFallback-root">{message}</div>;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
// ── DataObjectErrorAlert ──────────────────────────────────────────────────────
|
|
157
|
-
|
|
158
|
-
export function DataObjectErrorAlert({ dataObject }: { dataObject: DataObject<any> }) {
|
|
159
|
-
const error = useError(dataObject);
|
|
160
|
-
|
|
161
|
-
return error ? <div className="ErrorAlertFallback-root">{error}</div> : null;
|
|
162
|
-
}
|
|
1
|
+
import "./ErrorBoundary.css";
|
|
2
|
+
|
|
3
|
+
import type { DataObject } from "@olenbetong/appframe-data";
|
|
4
|
+
import { useError } from "@olenbetong/appframe-react";
|
|
5
|
+
|
|
6
|
+
import { Component, useEffect } from "react";
|
|
7
|
+
import { useAsyncError, useRouteError } from "react-router";
|
|
8
|
+
|
|
9
|
+
import { PageContainer } from "./PageContainer.js";
|
|
10
|
+
import { getLocalizedString } from "../i18n.js";
|
|
11
|
+
|
|
12
|
+
function parseError(error: unknown) {
|
|
13
|
+
let message = "Unspecified error";
|
|
14
|
+
let stackTrace: string | null = null;
|
|
15
|
+
let title: string = getLocalizedString("Unexpected application error");
|
|
16
|
+
|
|
17
|
+
if (typeof error === "string") {
|
|
18
|
+
message = error;
|
|
19
|
+
} else if (error && typeof error === "object") {
|
|
20
|
+
const err = error as any;
|
|
21
|
+
if (err.status) {
|
|
22
|
+
title = `${err.status} ${err.statusText}`;
|
|
23
|
+
message = err.message ?? "";
|
|
24
|
+
} else if (err.message) {
|
|
25
|
+
message = err.message;
|
|
26
|
+
if (err.type) {
|
|
27
|
+
message = `${err.type}: ${message}`;
|
|
28
|
+
}
|
|
29
|
+
} else {
|
|
30
|
+
message = String(error);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
if (err.stack || err.stackTrace) {
|
|
34
|
+
stackTrace = err.stack ?? err.stackTrace;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
return { message, stackTrace, title };
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
// ── AppErrorBoundary ──────────────────────────────────────────────────────────
|
|
42
|
+
|
|
43
|
+
export type AppErrorBoundaryProps = {
|
|
44
|
+
children?: React.ReactNode;
|
|
45
|
+
message?: string | ((error: unknown) => string);
|
|
46
|
+
imgSrc?: string;
|
|
47
|
+
image?: React.ReactNode;
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
type AppErrorBoundaryState = {
|
|
51
|
+
hasError: boolean;
|
|
52
|
+
error: unknown;
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
export class AppErrorBoundary extends Component<AppErrorBoundaryProps, AppErrorBoundaryState> {
|
|
56
|
+
constructor(props: AppErrorBoundaryProps) {
|
|
57
|
+
super(props);
|
|
58
|
+
this.state = { hasError: false, error: null };
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
static getDerivedStateFromError(error: unknown): AppErrorBoundaryState {
|
|
62
|
+
return { hasError: true, error };
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
componentDidCatch(error: unknown, errorInfo: unknown) {
|
|
66
|
+
console.error(error, errorInfo);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
render(): React.ReactNode {
|
|
70
|
+
if (this.state.hasError) {
|
|
71
|
+
const { imgSrc, message, image } = this.props;
|
|
72
|
+
const { message: errorMessage } = parseError(this.state.error);
|
|
73
|
+
const customMessage = typeof message === "function" ? message(this.state.error) : message;
|
|
74
|
+
|
|
75
|
+
return (
|
|
76
|
+
<div className="AppErrorBoundary-root">
|
|
77
|
+
<div className="AppErrorBoundary-inner">
|
|
78
|
+
{image ?? (
|
|
79
|
+
<img
|
|
80
|
+
alt=""
|
|
81
|
+
src={imgSrc ?? "/file/site/graphic/error-broken-robot.svg"}
|
|
82
|
+
className="AppErrorBoundary-image"
|
|
83
|
+
/>
|
|
84
|
+
)}
|
|
85
|
+
<h1 className="AppErrorBoundary-title">{getLocalizedString("Something went terribly wrong!")}</h1>
|
|
86
|
+
<div className="AppErrorBoundary-alert">{errorMessage}</div>
|
|
87
|
+
<p className="AppErrorBoundary-message">
|
|
88
|
+
{customMessage ??
|
|
89
|
+
getLocalizedString(
|
|
90
|
+
"Sometimes it is enough to simply refresh the page. If the error persists, contact the IT department.",
|
|
91
|
+
)}
|
|
92
|
+
</p>
|
|
93
|
+
<button type="button" className="AppErrorBoundary-reload" onClick={() => window.location.reload()}>
|
|
94
|
+
{getLocalizedString("Refresh page")}
|
|
95
|
+
</button>
|
|
96
|
+
</div>
|
|
97
|
+
</div>
|
|
98
|
+
);
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
return this.props.children;
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
// ── ErrorAlertFallback ────────────────────────────────────────────────────────
|
|
106
|
+
|
|
107
|
+
export type ErrorAlertFallbackProps = {
|
|
108
|
+
error: unknown;
|
|
109
|
+
className?: string;
|
|
110
|
+
};
|
|
111
|
+
|
|
112
|
+
export function ErrorAlertFallback({ error, className }: ErrorAlertFallbackProps) {
|
|
113
|
+
const message = error instanceof Error ? error.message : String(error);
|
|
114
|
+
|
|
115
|
+
return (
|
|
116
|
+
<div className={`ErrorAlertFallback-root${className ? ` ${className}` : ""}`}>
|
|
117
|
+
<div className="ErrorAlertFallback-content">
|
|
118
|
+
<p className="ErrorAlertFallback-title">{getLocalizedString("An error occured. Try refreshing the page")}</p>
|
|
119
|
+
<p>{message}</p>
|
|
120
|
+
</div>
|
|
121
|
+
<button type="button" className="ErrorAlertFallback-reload" onClick={() => window.location.reload()}>
|
|
122
|
+
{getLocalizedString("Reload page")}
|
|
123
|
+
</button>
|
|
124
|
+
</div>
|
|
125
|
+
);
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
// ── RouteErrorPage ────────────────────────────────────────────────────────────
|
|
129
|
+
|
|
130
|
+
export function RouteErrorPage() {
|
|
131
|
+
const error = useRouteError();
|
|
132
|
+
const { message, stackTrace, title } = parseError(error);
|
|
133
|
+
|
|
134
|
+
useEffect(() => {
|
|
135
|
+
(globalThis as any).af?.common?.logError?.(error);
|
|
136
|
+
}, [error]);
|
|
137
|
+
|
|
138
|
+
return (
|
|
139
|
+
<PageContainer className="flow">
|
|
140
|
+
<h1>{title}</h1>
|
|
141
|
+
{message && <p>{message}</p>}
|
|
142
|
+
{stackTrace && <pre className="RouteErrorPage-stack">{stackTrace}</pre>}
|
|
143
|
+
</PageContainer>
|
|
144
|
+
);
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
// ── AsyncErrorAlert ───────────────────────────────────────────────────────────
|
|
148
|
+
|
|
149
|
+
export function AsyncErrorAlert() {
|
|
150
|
+
const error = useAsyncError();
|
|
151
|
+
const message = typeof error === "string" ? error : (error as any)?.message;
|
|
152
|
+
|
|
153
|
+
return <div className="ErrorAlertFallback-root">{message}</div>;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
// ── DataObjectErrorAlert ──────────────────────────────────────────────────────
|
|
157
|
+
|
|
158
|
+
export function DataObjectErrorAlert({ dataObject }: { dataObject: DataObject<any> }) {
|
|
159
|
+
const error = useError(dataObject);
|
|
160
|
+
|
|
161
|
+
return error ? <div className="ErrorAlertFallback-root">{error}</div> : null;
|
|
162
|
+
}
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Width-limited on large screens, full-screen below the next MUI breakpoint up:
|
|
3
|
+
* xs (444px) fills below 600px, sm (600px) below 900px, md (900px) below 1200px,
|
|
4
|
+
* lg (1200px) below 1536px, xl (1536px) below 1920px, none always.
|
|
5
|
+
*/
|
|
6
|
+
@layer ds {
|
|
7
|
+
.ObResponsiveDialog-root {
|
|
8
|
+
width: 100%;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.ObResponsiveDialog-root[data-max-width="xs"] {
|
|
12
|
+
max-width: 444px;
|
|
13
|
+
}
|
|
14
|
+
.ObResponsiveDialog-root[data-max-width="sm"] {
|
|
15
|
+
max-width: 600px;
|
|
16
|
+
}
|
|
17
|
+
.ObResponsiveDialog-root[data-max-width="md"] {
|
|
18
|
+
max-width: 900px;
|
|
19
|
+
}
|
|
20
|
+
.ObResponsiveDialog-root[data-max-width="lg"] {
|
|
21
|
+
max-width: 1200px;
|
|
22
|
+
}
|
|
23
|
+
.ObResponsiveDialog-root[data-max-width="xl"] {
|
|
24
|
+
max-width: 1536px;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.ObResponsiveDialog-root[data-max-width="none"] {
|
|
28
|
+
max-width: none;
|
|
29
|
+
width: 100vw;
|
|
30
|
+
height: 100dvh;
|
|
31
|
+
max-height: none;
|
|
32
|
+
margin: 0;
|
|
33
|
+
border-radius: 0;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
@media (max-width: 599.98px) {
|
|
37
|
+
.ObResponsiveDialog-root[data-max-width="xs"] {
|
|
38
|
+
max-width: none;
|
|
39
|
+
width: 100vw;
|
|
40
|
+
height: 100dvh;
|
|
41
|
+
max-height: none;
|
|
42
|
+
margin: 0;
|
|
43
|
+
border-radius: 0;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
@media (max-width: 899.98px) {
|
|
47
|
+
.ObResponsiveDialog-root[data-max-width="sm"] {
|
|
48
|
+
max-width: none;
|
|
49
|
+
width: 100vw;
|
|
50
|
+
height: 100dvh;
|
|
51
|
+
max-height: none;
|
|
52
|
+
margin: 0;
|
|
53
|
+
border-radius: 0;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
@media (max-width: 1199.98px) {
|
|
57
|
+
.ObResponsiveDialog-root[data-max-width="md"] {
|
|
58
|
+
max-width: none;
|
|
59
|
+
width: 100vw;
|
|
60
|
+
height: 100dvh;
|
|
61
|
+
max-height: none;
|
|
62
|
+
margin: 0;
|
|
63
|
+
border-radius: 0;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
@media (max-width: 1535.98px) {
|
|
67
|
+
.ObResponsiveDialog-root[data-max-width="lg"] {
|
|
68
|
+
max-width: none;
|
|
69
|
+
width: 100vw;
|
|
70
|
+
height: 100dvh;
|
|
71
|
+
max-height: none;
|
|
72
|
+
margin: 0;
|
|
73
|
+
border-radius: 0;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
@media (max-width: 1919.98px) {
|
|
77
|
+
.ObResponsiveDialog-root[data-max-width="xl"] {
|
|
78
|
+
max-width: none;
|
|
79
|
+
width: 100vw;
|
|
80
|
+
height: 100dvh;
|
|
81
|
+
max-height: none;
|
|
82
|
+
margin: 0;
|
|
83
|
+
border-radius: 0;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|