@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/grid/slots/slots.css
CHANGED
|
@@ -1,64 +1,64 @@
|
|
|
1
|
-
.AfGrid-checkbox {
|
|
2
|
-
display: inline-flex;
|
|
3
|
-
align-items: center;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
.AfGrid-checkbox input {
|
|
7
|
-
cursor: pointer;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.AfGrid-textField,
|
|
11
|
-
.AfGrid-select {
|
|
12
|
-
width: 100%;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
/* Sort-order and filter-count badges on header icon buttons: a compact number
|
|
16
|
-
pinned to the button corner instead of Designsystemet's default 1.5rem badge. */
|
|
17
|
-
.AfGrid-badge .ds-badge {
|
|
18
|
-
--dsc-badge-size--count: var(--ds-size-4, 1rem);
|
|
19
|
-
--dsc-badge-padding: 0 var(--ds-size-1, 0.25rem);
|
|
20
|
-
|
|
21
|
-
/* Pull the badge down from the default 14% so its top edge stays inside the
|
|
22
|
-
header row instead of being cropped. */
|
|
23
|
-
--dsc-badge-top: 32%;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.AfGrid-badge .ds-badge::before {
|
|
27
|
-
font-size: var(--ds-font-size-1, 0.75rem);
|
|
28
|
-
line-height: 1;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.AfGrid-linearProgress {
|
|
32
|
-
position: relative;
|
|
33
|
-
width: 100%;
|
|
34
|
-
height: 4px;
|
|
35
|
-
overflow: hidden;
|
|
36
|
-
background: var(--ds-color-neutral-surface-tinted, rgb(0 0 0 / 10%));
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.AfGrid-linearProgress::after {
|
|
40
|
-
position: absolute;
|
|
41
|
-
inset-block: 0;
|
|
42
|
-
inline-size: 40%;
|
|
43
|
-
background: var(--ds-color-brand-base-default, currentcolor);
|
|
44
|
-
animation: AfGrid-linearProgress 1.2s ease-in-out infinite;
|
|
45
|
-
content: "";
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
@keyframes AfGrid-linearProgress {
|
|
49
|
-
0% {
|
|
50
|
-
inset-inline-start: -40%;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
100% {
|
|
54
|
-
inset-inline-start: 100%;
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
@media (prefers-reduced-motion: reduce) {
|
|
59
|
-
.AfGrid-linearProgress::after {
|
|
60
|
-
animation: none;
|
|
61
|
-
inset-inline-start: 0;
|
|
62
|
-
inline-size: 100%;
|
|
63
|
-
}
|
|
64
|
-
}
|
|
1
|
+
.AfGrid-checkbox {
|
|
2
|
+
display: inline-flex;
|
|
3
|
+
align-items: center;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.AfGrid-checkbox input {
|
|
7
|
+
cursor: pointer;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.AfGrid-textField,
|
|
11
|
+
.AfGrid-select {
|
|
12
|
+
width: 100%;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
/* Sort-order and filter-count badges on header icon buttons: a compact number
|
|
16
|
+
pinned to the button corner instead of Designsystemet's default 1.5rem badge. */
|
|
17
|
+
.AfGrid-badge .ds-badge {
|
|
18
|
+
--dsc-badge-size--count: var(--ds-size-4, 1rem);
|
|
19
|
+
--dsc-badge-padding: 0 var(--ds-size-1, 0.25rem);
|
|
20
|
+
|
|
21
|
+
/* Pull the badge down from the default 14% so its top edge stays inside the
|
|
22
|
+
header row instead of being cropped. */
|
|
23
|
+
--dsc-badge-top: 32%;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.AfGrid-badge .ds-badge::before {
|
|
27
|
+
font-size: var(--ds-font-size-1, 0.75rem);
|
|
28
|
+
line-height: 1;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.AfGrid-linearProgress {
|
|
32
|
+
position: relative;
|
|
33
|
+
width: 100%;
|
|
34
|
+
height: 4px;
|
|
35
|
+
overflow: hidden;
|
|
36
|
+
background: var(--ds-color-neutral-surface-tinted, rgb(0 0 0 / 10%));
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.AfGrid-linearProgress::after {
|
|
40
|
+
position: absolute;
|
|
41
|
+
inset-block: 0;
|
|
42
|
+
inline-size: 40%;
|
|
43
|
+
background: var(--ds-color-brand-base-default, currentcolor);
|
|
44
|
+
animation: AfGrid-linearProgress 1.2s ease-in-out infinite;
|
|
45
|
+
content: "";
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
@keyframes AfGrid-linearProgress {
|
|
49
|
+
0% {
|
|
50
|
+
inset-inline-start: -40%;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
100% {
|
|
54
|
+
inset-inline-start: 100%;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
@media (prefers-reduced-motion: reduce) {
|
|
59
|
+
.AfGrid-linearProgress::after {
|
|
60
|
+
animation: none;
|
|
61
|
+
inset-inline-start: 0;
|
|
62
|
+
inline-size: 100%;
|
|
63
|
+
}
|
|
64
|
+
}
|
package/src/grid/theme.tsx
CHANGED
|
@@ -1,138 +1,138 @@
|
|
|
1
|
-
import { StyledEngineProvider, type Theme, ThemeProvider } from "@mui/material";
|
|
2
|
-
import { createTheme as muiCreateTheme } from "@mui/material/styles";
|
|
3
|
-
import { createContext, type ReactNode, use, useEffect, useState } from "react";
|
|
4
|
-
|
|
5
|
-
import { useDsColorScheme } from "../theme/useDsColorScheme.js";
|
|
6
|
-
|
|
7
|
-
// Lives in `../theme/` so MUI-free areas (the `mdi` subpath) can share it.
|
|
8
|
-
export { useDsColorScheme };
|
|
9
|
-
|
|
10
|
-
function buildTheme(mode: "light" | "dark", element?: Element | null) {
|
|
11
|
-
let styles = getComputedStyle(element ?? document.body);
|
|
12
|
-
let get = (variable: string) => styles.getPropertyValue(variable).trim();
|
|
13
|
-
let isDark = mode === "dark";
|
|
14
|
-
|
|
15
|
-
return muiCreateTheme({
|
|
16
|
-
palette: {
|
|
17
|
-
mode,
|
|
18
|
-
primary: {
|
|
19
|
-
main: get("--ds-color-brand-base-default") || "#116069",
|
|
20
|
-
dark: get("--ds-color-brand-base-hover") || "#0d4b52",
|
|
21
|
-
contrastText: get("--ds-color-brand-base-contrast-default") || "#ffffff",
|
|
22
|
-
},
|
|
23
|
-
secondary: {
|
|
24
|
-
main: get("--ds-color-brand-light-base-default") || "#1a95a2",
|
|
25
|
-
},
|
|
26
|
-
error: {
|
|
27
|
-
main: get("--ds-color-danger-base-default") || (isDark ? "#ff8a80" : "#b3221a"),
|
|
28
|
-
},
|
|
29
|
-
warning: {
|
|
30
|
-
main: get("--ds-color-warning-base-default") || "#b8860b",
|
|
31
|
-
},
|
|
32
|
-
success: {
|
|
33
|
-
main: get("--ds-color-success-base-default") || "#2e7d32",
|
|
34
|
-
},
|
|
35
|
-
background: {
|
|
36
|
-
default: get("--ds-color-neutral-background-default") || (isDark ? "#17181a" : "#ffffff"),
|
|
37
|
-
paper: get("--ds-color-neutral-background-default") || (isDark ? "#17181a" : "#ffffff"),
|
|
38
|
-
},
|
|
39
|
-
text: {
|
|
40
|
-
primary: get("--ds-color-neutral-text-default") || (isDark ? "#e5e6e7" : "#292c30"),
|
|
41
|
-
secondary: get("--ds-color-neutral-text-subtle") || (isDark ? "#b3b5b7" : "#5b5f64"),
|
|
42
|
-
},
|
|
43
|
-
divider: get("--ds-color-neutral-border-subtle") || (isDark ? "#4e5052" : "#bbbcbd"),
|
|
44
|
-
},
|
|
45
|
-
typography: {
|
|
46
|
-
fontFamily: "var(--ds-font-family, inherit)",
|
|
47
|
-
},
|
|
48
|
-
components: {
|
|
49
|
-
MuiButton: {
|
|
50
|
-
styleOverrides: {
|
|
51
|
-
root: { borderRadius: "var(--ds-border-radius-md, 2px)" },
|
|
52
|
-
},
|
|
53
|
-
},
|
|
54
|
-
MuiFormLabel: {
|
|
55
|
-
styleOverrides: {
|
|
56
|
-
root: { color: get("--ds-color-neutral-text-subtle") || "rgba(0, 0, 0, 0.72)" },
|
|
57
|
-
},
|
|
58
|
-
},
|
|
59
|
-
},
|
|
60
|
-
});
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
const themeCache: Partial<Record<"light" | "dark", Theme>> = {};
|
|
64
|
-
|
|
65
|
-
/**
|
|
66
|
-
* Returns the MUI theme built from the Designsystemet tokens currently in
|
|
67
|
-
* effect. Pass `element` to read the tokens from a specific place in the DOM,
|
|
68
|
-
* which matters when the color scheme is scoped to a subtree. The theme is
|
|
69
|
-
* cached per color scheme at module level, so every grid on the page shares a
|
|
70
|
-
* single theme instance.
|
|
71
|
-
*/
|
|
72
|
-
export function getDsMuiTheme(mode: "light" | "dark", element?: Element | null) {
|
|
73
|
-
let theme = themeCache[mode];
|
|
74
|
-
|
|
75
|
-
if (!theme) {
|
|
76
|
-
theme = buildTheme(mode, element);
|
|
77
|
-
themeCache[mode] = theme;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
return theme;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
/**
|
|
84
|
-
* Drops the cached themes, so they are rebuilt from the current token values the
|
|
85
|
-
* next time a grid renders. Only needed if the tokens themselves change at
|
|
86
|
-
* runtime (a brand switch, for example) — a color scheme change is handled by
|
|
87
|
-
* the per-scheme cache.
|
|
88
|
-
*/
|
|
89
|
-
export function resetDsMuiTheme() {
|
|
90
|
-
delete themeCache.light;
|
|
91
|
-
delete themeCache.dark;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
const ThemeProvidedContext = createContext(false);
|
|
95
|
-
|
|
96
|
-
export type AfGridThemeProviderProps = {
|
|
97
|
-
children: ReactNode;
|
|
98
|
-
};
|
|
99
|
-
|
|
100
|
-
/**
|
|
101
|
-
* Bridges Designsystemet's colour tokens into a MUI theme, so the data grid
|
|
102
|
-
* follows Designsystemet instead of the MUI defaults.
|
|
103
|
-
*
|
|
104
|
-
* `AfGrid` renders this itself, so apps only need it when they render other MUI
|
|
105
|
-
* components alongside the grid, or want a single provider for many grids.
|
|
106
|
-
* Nesting it is safe: the inner provider is a no-op.
|
|
107
|
-
*/
|
|
108
|
-
export function AfGridThemeProvider({ children }: AfGridThemeProviderProps) {
|
|
109
|
-
let provided = use(ThemeProvidedContext);
|
|
110
|
-
|
|
111
|
-
// A display-less probe so the scheme and the tokens are read from this
|
|
112
|
-
// provider's position in the DOM rather than from `<body>`. Custom properties
|
|
113
|
-
// still resolve on a hidden element, and it takes part in no layout.
|
|
114
|
-
let [anchor, setAnchor] = useState<HTMLSpanElement | null>(null);
|
|
115
|
-
let colorScheme = useDsColorScheme(anchor);
|
|
116
|
-
|
|
117
|
-
// The stylesheets are imported from JS, so the custom properties aren't
|
|
118
|
-
// necessarily resolved during the first render. Rebuild after mount, and
|
|
119
|
-
// whenever the color scheme changes.
|
|
120
|
-
let [theme, setTheme] = useState(() => getDsMuiTheme(colorScheme, anchor));
|
|
121
|
-
useEffect(() => {
|
|
122
|
-
resetDsMuiTheme();
|
|
123
|
-
setTheme(getDsMuiTheme(colorScheme, anchor));
|
|
124
|
-
}, [colorScheme, anchor]);
|
|
125
|
-
|
|
126
|
-
if (provided) {
|
|
127
|
-
return children;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
return (
|
|
131
|
-
<ThemeProvidedContext value={true}>
|
|
132
|
-
<span hidden ref={setAnchor} />
|
|
133
|
-
<StyledEngineProvider injectFirst>
|
|
134
|
-
<ThemeProvider theme={theme}>{children}</ThemeProvider>
|
|
135
|
-
</StyledEngineProvider>
|
|
136
|
-
</ThemeProvidedContext>
|
|
137
|
-
);
|
|
138
|
-
}
|
|
1
|
+
import { StyledEngineProvider, type Theme, ThemeProvider } from "@mui/material";
|
|
2
|
+
import { createTheme as muiCreateTheme } from "@mui/material/styles";
|
|
3
|
+
import { createContext, type ReactNode, use, useEffect, useState } from "react";
|
|
4
|
+
|
|
5
|
+
import { useDsColorScheme } from "../theme/useDsColorScheme.js";
|
|
6
|
+
|
|
7
|
+
// Lives in `../theme/` so MUI-free areas (the `mdi` subpath) can share it.
|
|
8
|
+
export { useDsColorScheme };
|
|
9
|
+
|
|
10
|
+
function buildTheme(mode: "light" | "dark", element?: Element | null) {
|
|
11
|
+
let styles = getComputedStyle(element ?? document.body);
|
|
12
|
+
let get = (variable: string) => styles.getPropertyValue(variable).trim();
|
|
13
|
+
let isDark = mode === "dark";
|
|
14
|
+
|
|
15
|
+
return muiCreateTheme({
|
|
16
|
+
palette: {
|
|
17
|
+
mode,
|
|
18
|
+
primary: {
|
|
19
|
+
main: get("--ds-color-brand-base-default") || "#116069",
|
|
20
|
+
dark: get("--ds-color-brand-base-hover") || "#0d4b52",
|
|
21
|
+
contrastText: get("--ds-color-brand-base-contrast-default") || "#ffffff",
|
|
22
|
+
},
|
|
23
|
+
secondary: {
|
|
24
|
+
main: get("--ds-color-brand-light-base-default") || "#1a95a2",
|
|
25
|
+
},
|
|
26
|
+
error: {
|
|
27
|
+
main: get("--ds-color-danger-base-default") || (isDark ? "#ff8a80" : "#b3221a"),
|
|
28
|
+
},
|
|
29
|
+
warning: {
|
|
30
|
+
main: get("--ds-color-warning-base-default") || "#b8860b",
|
|
31
|
+
},
|
|
32
|
+
success: {
|
|
33
|
+
main: get("--ds-color-success-base-default") || "#2e7d32",
|
|
34
|
+
},
|
|
35
|
+
background: {
|
|
36
|
+
default: get("--ds-color-neutral-background-default") || (isDark ? "#17181a" : "#ffffff"),
|
|
37
|
+
paper: get("--ds-color-neutral-background-default") || (isDark ? "#17181a" : "#ffffff"),
|
|
38
|
+
},
|
|
39
|
+
text: {
|
|
40
|
+
primary: get("--ds-color-neutral-text-default") || (isDark ? "#e5e6e7" : "#292c30"),
|
|
41
|
+
secondary: get("--ds-color-neutral-text-subtle") || (isDark ? "#b3b5b7" : "#5b5f64"),
|
|
42
|
+
},
|
|
43
|
+
divider: get("--ds-color-neutral-border-subtle") || (isDark ? "#4e5052" : "#bbbcbd"),
|
|
44
|
+
},
|
|
45
|
+
typography: {
|
|
46
|
+
fontFamily: "var(--ds-font-family, inherit)",
|
|
47
|
+
},
|
|
48
|
+
components: {
|
|
49
|
+
MuiButton: {
|
|
50
|
+
styleOverrides: {
|
|
51
|
+
root: { borderRadius: "var(--ds-border-radius-md, 2px)" },
|
|
52
|
+
},
|
|
53
|
+
},
|
|
54
|
+
MuiFormLabel: {
|
|
55
|
+
styleOverrides: {
|
|
56
|
+
root: { color: get("--ds-color-neutral-text-subtle") || "rgba(0, 0, 0, 0.72)" },
|
|
57
|
+
},
|
|
58
|
+
},
|
|
59
|
+
},
|
|
60
|
+
});
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
const themeCache: Partial<Record<"light" | "dark", Theme>> = {};
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* Returns the MUI theme built from the Designsystemet tokens currently in
|
|
67
|
+
* effect. Pass `element` to read the tokens from a specific place in the DOM,
|
|
68
|
+
* which matters when the color scheme is scoped to a subtree. The theme is
|
|
69
|
+
* cached per color scheme at module level, so every grid on the page shares a
|
|
70
|
+
* single theme instance.
|
|
71
|
+
*/
|
|
72
|
+
export function getDsMuiTheme(mode: "light" | "dark", element?: Element | null) {
|
|
73
|
+
let theme = themeCache[mode];
|
|
74
|
+
|
|
75
|
+
if (!theme) {
|
|
76
|
+
theme = buildTheme(mode, element);
|
|
77
|
+
themeCache[mode] = theme;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
return theme;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* Drops the cached themes, so they are rebuilt from the current token values the
|
|
85
|
+
* next time a grid renders. Only needed if the tokens themselves change at
|
|
86
|
+
* runtime (a brand switch, for example) — a color scheme change is handled by
|
|
87
|
+
* the per-scheme cache.
|
|
88
|
+
*/
|
|
89
|
+
export function resetDsMuiTheme() {
|
|
90
|
+
delete themeCache.light;
|
|
91
|
+
delete themeCache.dark;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
const ThemeProvidedContext = createContext(false);
|
|
95
|
+
|
|
96
|
+
export type AfGridThemeProviderProps = {
|
|
97
|
+
children: ReactNode;
|
|
98
|
+
};
|
|
99
|
+
|
|
100
|
+
/**
|
|
101
|
+
* Bridges Designsystemet's colour tokens into a MUI theme, so the data grid
|
|
102
|
+
* follows Designsystemet instead of the MUI defaults.
|
|
103
|
+
*
|
|
104
|
+
* `AfGrid` renders this itself, so apps only need it when they render other MUI
|
|
105
|
+
* components alongside the grid, or want a single provider for many grids.
|
|
106
|
+
* Nesting it is safe: the inner provider is a no-op.
|
|
107
|
+
*/
|
|
108
|
+
export function AfGridThemeProvider({ children }: AfGridThemeProviderProps) {
|
|
109
|
+
let provided = use(ThemeProvidedContext);
|
|
110
|
+
|
|
111
|
+
// A display-less probe so the scheme and the tokens are read from this
|
|
112
|
+
// provider's position in the DOM rather than from `<body>`. Custom properties
|
|
113
|
+
// still resolve on a hidden element, and it takes part in no layout.
|
|
114
|
+
let [anchor, setAnchor] = useState<HTMLSpanElement | null>(null);
|
|
115
|
+
let colorScheme = useDsColorScheme(anchor);
|
|
116
|
+
|
|
117
|
+
// The stylesheets are imported from JS, so the custom properties aren't
|
|
118
|
+
// necessarily resolved during the first render. Rebuild after mount, and
|
|
119
|
+
// whenever the color scheme changes.
|
|
120
|
+
let [theme, setTheme] = useState(() => getDsMuiTheme(colorScheme, anchor));
|
|
121
|
+
useEffect(() => {
|
|
122
|
+
resetDsMuiTheme();
|
|
123
|
+
setTheme(getDsMuiTheme(colorScheme, anchor));
|
|
124
|
+
}, [colorScheme, anchor]);
|
|
125
|
+
|
|
126
|
+
if (provided) {
|
|
127
|
+
return children;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
return (
|
|
131
|
+
<ThemeProvidedContext value={true}>
|
|
132
|
+
<span hidden ref={setAnchor} />
|
|
133
|
+
<StyledEngineProvider injectFirst>
|
|
134
|
+
<ThemeProvider theme={theme}>{children}</ThemeProvider>
|
|
135
|
+
</StyledEngineProvider>
|
|
136
|
+
</ThemeProvidedContext>
|
|
137
|
+
);
|
|
138
|
+
}
|