@vuu-ui/vuu-shell 2.1.18 → 2.1.19-beta.2
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/package.json +17 -20
- package/src/ShellContextProvider.js +20 -0
- package/src/app-header/AppHeader.css.js +21 -0
- package/src/app-header/AppHeader.js +97 -0
- package/src/app-header/index.js +1 -0
- package/src/application-provider/ApplicationContext.js +9 -0
- package/src/application-provider/ApplicationProvider.js +77 -0
- package/src/application-provider/index.js +1 -0
- package/src/feature/Feature.js +37 -0
- package/src/feature/FeatureErrorBoundary.js +33 -0
- package/src/feature/Loader.js +5 -0
- package/src/feature/index.js +1 -0
- package/src/feature-and-layout-provider/FeatureAndLayoutProvider.js +42 -0
- package/src/feature-and-layout-provider/index.js +1 -0
- package/src/feature-list/FeatureList.css.js +62 -0
- package/src/feature-list/FeatureList.js +128 -0
- package/src/feature-list/index.js +1 -0
- package/src/get-layout-history.js +7 -0
- package/src/index.js +14 -0
- package/src/left-nav/LeftNav.css.js +177 -0
- package/src/left-nav/LeftNav.js +193 -0
- package/src/left-nav/index.js +1 -0
- package/src/login/LoginPanel.css.js +72 -0
- package/src/login/LoginPanel.js +124 -0
- package/src/login/VuuLogo.js +108 -0
- package/src/persistence-manager/LocalPersistenceManager.js +156 -0
- package/src/persistence-manager/PersistenceManager.js +0 -0
- package/src/persistence-manager/PersistenceProvider.js +14 -0
- package/src/persistence-manager/RemotePersistenceManager.js +123 -0
- package/src/persistence-manager/StaticPersistenceManager.js +53 -0
- package/src/persistence-manager/index.js +5 -0
- package/src/shell-layout-templates/context-panel/ContextPanel.css.js +66 -0
- package/src/shell-layout-templates/context-panel/ContextPanel.js +92 -0
- package/src/shell-layout-templates/context-panel/index.js +1 -0
- package/src/shell-layout-templates/full-height-left-panel/useFullHeightLeftPanel.js +44 -0
- package/src/shell-layout-templates/index.js +3 -0
- package/src/shell-layout-templates/inlay-left-panel/useInlayLeftPanel.js +68 -0
- package/src/shell-layout-templates/left-main-tabs/useLeftMainTabs.js +32 -0
- package/src/shell-layout-templates/side-panel/SidePanel.css.js +9 -0
- package/src/shell-layout-templates/side-panel/SidePanel.js +31 -0
- package/src/shell-layout-templates/side-panel/index.js +1 -0
- package/src/shell-layout-templates/simple-content-pane/useSimpleContentPane.js +38 -0
- package/src/shell-layout-templates/useShellLayout.js +15 -0
- package/src/shell.css.js +59 -0
- package/src/shell.js +108 -0
- package/src/theme-switch/ThemeSwitch.css.js +34 -0
- package/src/theme-switch/ThemeSwitch.js +50 -0
- package/src/theme-switch/index.js +1 -0
- package/src/user-settings/SettingsForm.css.js +10 -0
- package/src/user-settings/SettingsForm.js +141 -0
- package/src/user-settings/UserSettingsPanel.css.js +9 -0
- package/src/user-settings/UserSettingsPanel.js +29 -0
- package/src/user-settings/index.js +2 -0
- package/src/workspace-management/LayoutList.css.js +74 -0
- package/src/workspace-management/LayoutList.js +130 -0
- package/src/workspace-management/LayoutTile.css.js +31 -0
- package/src/workspace-management/LayoutTile.js +41 -0
- package/src/workspace-management/SaveLayoutPanel.css.js +123 -0
- package/src/workspace-management/SaveLayoutPanel.js +141 -0
- package/src/workspace-management/WorkspaceProvider.js +209 -0
- package/src/workspace-management/defaultWorkspaceJSON.js +88 -0
- package/src/workspace-management/index.js +5 -0
- package/src/workspace-management/screenshot-utils.js +13 -0
- package/src/workspace-management/useWorkspaceContextMenuItems.js +58 -0
- package/types/feature/FeatureErrorBoundary.d.ts +1 -1
- package/types/workspace-management/WorkspaceProvider.d.ts +5 -5
- package/cjs/ShellContextProvider.js +0 -25
- package/cjs/ShellContextProvider.js.map +0 -1
- package/cjs/app-header/AppHeader.css.js +0 -6
- package/cjs/app-header/AppHeader.css.js.map +0 -1
- package/cjs/app-header/AppHeader.js +0 -118
- package/cjs/app-header/AppHeader.js.map +0 -1
- package/cjs/application-provider/ApplicationContext.js +0 -17
- package/cjs/application-provider/ApplicationContext.js.map +0 -1
- package/cjs/application-provider/ApplicationProvider.js +0 -102
- package/cjs/application-provider/ApplicationProvider.js.map +0 -1
- package/cjs/feature/Feature.js +0 -54
- package/cjs/feature/Feature.js.map +0 -1
- package/cjs/feature/FeatureErrorBoundary.js +0 -30
- package/cjs/feature/FeatureErrorBoundary.js.map +0 -1
- package/cjs/feature-and-layout-provider/FeatureAndLayoutProvider.js +0 -60
- package/cjs/feature-and-layout-provider/FeatureAndLayoutProvider.js.map +0 -1
- package/cjs/feature-list/FeatureList.css.js +0 -6
- package/cjs/feature-list/FeatureList.css.js.map +0 -1
- package/cjs/feature-list/FeatureList.js +0 -109
- package/cjs/feature-list/FeatureList.js.map +0 -1
- package/cjs/index.js +0 -71
- package/cjs/index.js.map +0 -1
- package/cjs/left-nav/LeftNav.css.js +0 -6
- package/cjs/left-nav/LeftNav.css.js.map +0 -1
- package/cjs/left-nav/LeftNav.js +0 -202
- package/cjs/left-nav/LeftNav.js.map +0 -1
- package/cjs/login/LoginPanel.css.js +0 -6
- package/cjs/login/LoginPanel.css.js.map +0 -1
- package/cjs/login/LoginPanel.js +0 -110
- package/cjs/login/LoginPanel.js.map +0 -1
- package/cjs/login/VuuLogo.js +0 -134
- package/cjs/login/VuuLogo.js.map +0 -1
- package/cjs/persistence-manager/LocalPersistenceManager.js +0 -193
- package/cjs/persistence-manager/LocalPersistenceManager.js.map +0 -1
- package/cjs/persistence-manager/PersistenceProvider.js +0 -21
- package/cjs/persistence-manager/PersistenceProvider.js.map +0 -1
- package/cjs/persistence-manager/RemotePersistenceManager.js +0 -165
- package/cjs/persistence-manager/RemotePersistenceManager.js.map +0 -1
- package/cjs/persistence-manager/StaticPersistenceManager.js +0 -73
- package/cjs/persistence-manager/StaticPersistenceManager.js.map +0 -1
- package/cjs/shell-layout-templates/context-panel/ContextPanel.css.js +0 -6
- package/cjs/shell-layout-templates/context-panel/ContextPanel.css.js.map +0 -1
- package/cjs/shell-layout-templates/context-panel/ContextPanel.js +0 -100
- package/cjs/shell-layout-templates/context-panel/ContextPanel.js.map +0 -1
- package/cjs/shell-layout-templates/full-height-left-panel/useFullHeightLeftPanel.js +0 -51
- package/cjs/shell-layout-templates/full-height-left-panel/useFullHeightLeftPanel.js.map +0 -1
- package/cjs/shell-layout-templates/inlay-left-panel/useInlayLeftPanel.js +0 -83
- package/cjs/shell-layout-templates/inlay-left-panel/useInlayLeftPanel.js.map +0 -1
- package/cjs/shell-layout-templates/left-main-tabs/useLeftMainTabs.js +0 -46
- package/cjs/shell-layout-templates/left-main-tabs/useLeftMainTabs.js.map +0 -1
- package/cjs/shell-layout-templates/side-panel/SidePanel.css.js +0 -6
- package/cjs/shell-layout-templates/side-panel/SidePanel.css.js.map +0 -1
- package/cjs/shell-layout-templates/side-panel/SidePanel.js +0 -36
- package/cjs/shell-layout-templates/side-panel/SidePanel.js.map +0 -1
- package/cjs/shell-layout-templates/simple-content-pane/useSimpleContentPane.js +0 -48
- package/cjs/shell-layout-templates/simple-content-pane/useSimpleContentPane.js.map +0 -1
- package/cjs/shell-layout-templates/useShellLayout.js +0 -23
- package/cjs/shell-layout-templates/useShellLayout.js.map +0 -1
- package/cjs/shell.css.js +0 -6
- package/cjs/shell.css.js.map +0 -1
- package/cjs/shell.js +0 -137
- package/cjs/shell.js.map +0 -1
- package/cjs/theme-switch/ThemeSwitch.css.js +0 -6
- package/cjs/theme-switch/ThemeSwitch.css.js.map +0 -1
- package/cjs/theme-switch/ThemeSwitch.js +0 -56
- package/cjs/theme-switch/ThemeSwitch.js.map +0 -1
- package/cjs/user-settings/SettingsForm.css.js +0 -6
- package/cjs/user-settings/SettingsForm.css.js.map +0 -1
- package/cjs/user-settings/SettingsForm.js +0 -168
- package/cjs/user-settings/SettingsForm.js.map +0 -1
- package/cjs/user-settings/UserSettingsPanel.css.js +0 -6
- package/cjs/user-settings/UserSettingsPanel.css.js.map +0 -1
- package/cjs/user-settings/UserSettingsPanel.js +0 -42
- package/cjs/user-settings/UserSettingsPanel.js.map +0 -1
- package/cjs/workspace-management/LayoutList.css.js +0 -6
- package/cjs/workspace-management/LayoutList.css.js.map +0 -1
- package/cjs/workspace-management/LayoutList.js +0 -116
- package/cjs/workspace-management/LayoutList.js.map +0 -1
- package/cjs/workspace-management/LayoutTile.css.js +0 -6
- package/cjs/workspace-management/LayoutTile.css.js.map +0 -1
- package/cjs/workspace-management/LayoutTile.js +0 -41
- package/cjs/workspace-management/LayoutTile.js.map +0 -1
- package/cjs/workspace-management/SaveLayoutPanel.css.js +0 -6
- package/cjs/workspace-management/SaveLayoutPanel.css.js.map +0 -1
- package/cjs/workspace-management/SaveLayoutPanel.js +0 -128
- package/cjs/workspace-management/SaveLayoutPanel.js.map +0 -1
- package/cjs/workspace-management/WorkspaceProvider.js +0 -265
- package/cjs/workspace-management/WorkspaceProvider.js.map +0 -1
- package/cjs/workspace-management/defaultWorkspaceJSON.js +0 -101
- package/cjs/workspace-management/defaultWorkspaceJSON.js.map +0 -1
- package/cjs/workspace-management/screenshot-utils.js +0 -25
- package/cjs/workspace-management/screenshot-utils.js.map +0 -1
- package/cjs/workspace-management/useWorkspaceContextMenuItems.js +0 -72
- package/cjs/workspace-management/useWorkspaceContextMenuItems.js.map +0 -1
- package/esm/ShellContextProvider.js +0 -23
- package/esm/ShellContextProvider.js.map +0 -1
- package/esm/app-header/AppHeader.css.js +0 -4
- package/esm/app-header/AppHeader.css.js.map +0 -1
- package/esm/app-header/AppHeader.js +0 -116
- package/esm/app-header/AppHeader.js.map +0 -1
- package/esm/application-provider/ApplicationContext.js +0 -15
- package/esm/application-provider/ApplicationContext.js.map +0 -1
- package/esm/application-provider/ApplicationProvider.js +0 -96
- package/esm/application-provider/ApplicationProvider.js.map +0 -1
- package/esm/feature/Feature.js +0 -52
- package/esm/feature/Feature.js.map +0 -1
- package/esm/feature/FeatureErrorBoundary.js +0 -28
- package/esm/feature/FeatureErrorBoundary.js.map +0 -1
- package/esm/feature-and-layout-provider/FeatureAndLayoutProvider.js +0 -56
- package/esm/feature-and-layout-provider/FeatureAndLayoutProvider.js.map +0 -1
- package/esm/feature-list/FeatureList.css.js +0 -4
- package/esm/feature-list/FeatureList.css.js.map +0 -1
- package/esm/feature-list/FeatureList.js +0 -107
- package/esm/feature-list/FeatureList.js.map +0 -1
- package/esm/index.js +0 -25
- package/esm/index.js.map +0 -1
- package/esm/left-nav/LeftNav.css.js +0 -4
- package/esm/left-nav/LeftNav.css.js.map +0 -1
- package/esm/left-nav/LeftNav.js +0 -200
- package/esm/left-nav/LeftNav.js.map +0 -1
- package/esm/login/LoginPanel.css.js +0 -4
- package/esm/login/LoginPanel.css.js.map +0 -1
- package/esm/login/LoginPanel.js +0 -108
- package/esm/login/LoginPanel.js.map +0 -1
- package/esm/login/VuuLogo.js +0 -132
- package/esm/login/VuuLogo.js.map +0 -1
- package/esm/persistence-manager/LocalPersistenceManager.js +0 -191
- package/esm/persistence-manager/LocalPersistenceManager.js.map +0 -1
- package/esm/persistence-manager/PersistenceProvider.js +0 -17
- package/esm/persistence-manager/PersistenceProvider.js.map +0 -1
- package/esm/persistence-manager/RemotePersistenceManager.js +0 -163
- package/esm/persistence-manager/RemotePersistenceManager.js.map +0 -1
- package/esm/persistence-manager/StaticPersistenceManager.js +0 -71
- package/esm/persistence-manager/StaticPersistenceManager.js.map +0 -1
- package/esm/shell-layout-templates/context-panel/ContextPanel.css.js +0 -4
- package/esm/shell-layout-templates/context-panel/ContextPanel.css.js.map +0 -1
- package/esm/shell-layout-templates/context-panel/ContextPanel.js +0 -98
- package/esm/shell-layout-templates/context-panel/ContextPanel.js.map +0 -1
- package/esm/shell-layout-templates/full-height-left-panel/useFullHeightLeftPanel.js +0 -49
- package/esm/shell-layout-templates/full-height-left-panel/useFullHeightLeftPanel.js.map +0 -1
- package/esm/shell-layout-templates/inlay-left-panel/useInlayLeftPanel.js +0 -81
- package/esm/shell-layout-templates/inlay-left-panel/useInlayLeftPanel.js.map +0 -1
- package/esm/shell-layout-templates/left-main-tabs/useLeftMainTabs.js +0 -44
- package/esm/shell-layout-templates/left-main-tabs/useLeftMainTabs.js.map +0 -1
- package/esm/shell-layout-templates/side-panel/SidePanel.css.js +0 -4
- package/esm/shell-layout-templates/side-panel/SidePanel.css.js.map +0 -1
- package/esm/shell-layout-templates/side-panel/SidePanel.js +0 -34
- package/esm/shell-layout-templates/side-panel/SidePanel.js.map +0 -1
- package/esm/shell-layout-templates/simple-content-pane/useSimpleContentPane.js +0 -46
- package/esm/shell-layout-templates/simple-content-pane/useSimpleContentPane.js.map +0 -1
- package/esm/shell-layout-templates/useShellLayout.js +0 -21
- package/esm/shell-layout-templates/useShellLayout.js.map +0 -1
- package/esm/shell.css.js +0 -4
- package/esm/shell.css.js.map +0 -1
- package/esm/shell.js +0 -135
- package/esm/shell.js.map +0 -1
- package/esm/theme-switch/ThemeSwitch.css.js +0 -4
- package/esm/theme-switch/ThemeSwitch.css.js.map +0 -1
- package/esm/theme-switch/ThemeSwitch.js +0 -54
- package/esm/theme-switch/ThemeSwitch.js.map +0 -1
- package/esm/user-settings/SettingsForm.css.js +0 -4
- package/esm/user-settings/SettingsForm.css.js.map +0 -1
- package/esm/user-settings/SettingsForm.js +0 -162
- package/esm/user-settings/SettingsForm.js.map +0 -1
- package/esm/user-settings/UserSettingsPanel.css.js +0 -4
- package/esm/user-settings/UserSettingsPanel.css.js.map +0 -1
- package/esm/user-settings/UserSettingsPanel.js +0 -40
- package/esm/user-settings/UserSettingsPanel.js.map +0 -1
- package/esm/workspace-management/LayoutList.css.js +0 -4
- package/esm/workspace-management/LayoutList.css.js.map +0 -1
- package/esm/workspace-management/LayoutList.js +0 -114
- package/esm/workspace-management/LayoutList.js.map +0 -1
- package/esm/workspace-management/LayoutTile.css.js +0 -4
- package/esm/workspace-management/LayoutTile.css.js.map +0 -1
- package/esm/workspace-management/LayoutTile.js +0 -39
- package/esm/workspace-management/LayoutTile.js.map +0 -1
- package/esm/workspace-management/SaveLayoutPanel.css.js +0 -4
- package/esm/workspace-management/SaveLayoutPanel.css.js.map +0 -1
- package/esm/workspace-management/SaveLayoutPanel.js +0 -126
- package/esm/workspace-management/SaveLayoutPanel.js.map +0 -1
- package/esm/workspace-management/WorkspaceProvider.js +0 -262
- package/esm/workspace-management/WorkspaceProvider.js.map +0 -1
- package/esm/workspace-management/defaultWorkspaceJSON.js +0 -95
- package/esm/workspace-management/defaultWorkspaceJSON.js.map +0 -1
- package/esm/workspace-management/screenshot-utils.js +0 -23
- package/esm/workspace-management/screenshot-utils.js.map +0 -1
- package/esm/workspace-management/useWorkspaceContextMenuItems.js +0 -70
- package/esm/workspace-management/useWorkspaceContextMenuItems.js.map +0 -1
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { isLayoutJSON, resolveJSONPath } from "@vuu-ui/vuu-layout";
|
|
3
|
+
import { useNotifications } from "@vuu-ui/vuu-notifications";
|
|
4
|
+
import { VuuShellLocation, WorkspaceContext, logger } from "@vuu-ui/vuu-utils";
|
|
5
|
+
import { useCallback, useContext, useEffect, useRef, useState } from "react";
|
|
6
|
+
import { usePersistenceManager } from "../persistence-manager/index.js";
|
|
7
|
+
import { getWorkspaceWithLayoutJSON, loadingJSON } from "./defaultWorkspaceJSON.js";
|
|
8
|
+
const { info: info } = logger("useLayoutManager");
|
|
9
|
+
const ensureLayoutHasTitle = (layout, layoutMetadata)=>{
|
|
10
|
+
if (layout.props?.title !== void 0) return layout;
|
|
11
|
+
return {
|
|
12
|
+
...layout,
|
|
13
|
+
props: {
|
|
14
|
+
...layout.props,
|
|
15
|
+
title: layoutMetadata.name
|
|
16
|
+
}
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
const loadingApplicationJSON = {
|
|
20
|
+
workspaceJSON: loadingJSON
|
|
21
|
+
};
|
|
22
|
+
const WorkspaceProvider = ({ TabstripProps, children, layoutJSON, activeLayoutIndex, layoutPlaceholderJSON, showTabs, workspaceJSON: customWorkspaceJSON })=>{
|
|
23
|
+
const [layoutMetadata, setLayoutMetadata] = useState([]);
|
|
24
|
+
const [, forceRefresh] = useState({});
|
|
25
|
+
const { showNotification } = useNotifications();
|
|
26
|
+
const persistenceManager = usePersistenceManager();
|
|
27
|
+
const applicationJSONRef = useRef(loadingApplicationJSON);
|
|
28
|
+
const setApplicationJSON = useCallback((applicationJSON, rerender = true)=>{
|
|
29
|
+
applicationJSONRef.current = applicationJSON;
|
|
30
|
+
if (rerender) forceRefresh({});
|
|
31
|
+
}, []);
|
|
32
|
+
const setWorkspaceJSON = useCallback((workspaceJSON, rerender = true)=>{
|
|
33
|
+
setApplicationJSON({
|
|
34
|
+
...applicationJSONRef.current,
|
|
35
|
+
workspaceJSON
|
|
36
|
+
}, rerender);
|
|
37
|
+
}, [
|
|
38
|
+
setApplicationJSON
|
|
39
|
+
]);
|
|
40
|
+
const setApplicationSettings = useCallback((settings)=>{
|
|
41
|
+
setApplicationJSON({
|
|
42
|
+
...applicationJSONRef.current,
|
|
43
|
+
settings: {
|
|
44
|
+
...applicationJSONRef.current.settings,
|
|
45
|
+
...settings
|
|
46
|
+
}
|
|
47
|
+
}, false);
|
|
48
|
+
}, [
|
|
49
|
+
setApplicationJSON
|
|
50
|
+
]);
|
|
51
|
+
useEffect(()=>{
|
|
52
|
+
persistenceManager?.loadMetadata().then((metadata)=>{
|
|
53
|
+
setLayoutMetadata(metadata);
|
|
54
|
+
}).catch((error)=>{
|
|
55
|
+
showNotification({
|
|
56
|
+
content: "Could not load list of available layouts",
|
|
57
|
+
header: "Failed to Load Layouts",
|
|
58
|
+
status: "error",
|
|
59
|
+
type: "toast"
|
|
60
|
+
});
|
|
61
|
+
console.error("Error occurred while retrieving metadata", error);
|
|
62
|
+
});
|
|
63
|
+
persistenceManager?.loadApplicationJSON().then((applicationJSON)=>{
|
|
64
|
+
if (applicationJSON) {
|
|
65
|
+
info?.("applicationJSON loaded successfully");
|
|
66
|
+
setApplicationJSON(applicationJSON);
|
|
67
|
+
} else {
|
|
68
|
+
const workspaceJSON = getWorkspaceWithLayoutJSON(customWorkspaceJSON, layoutJSON, activeLayoutIndex, {
|
|
69
|
+
TabstripProps,
|
|
70
|
+
showTabs
|
|
71
|
+
});
|
|
72
|
+
info?.(`applicationJSON not found, getting defaultWorkspaceJSON,
|
|
73
|
+
${JSON.stringify(workspaceJSON, null, 2)}
|
|
74
|
+
`);
|
|
75
|
+
setApplicationJSON({
|
|
76
|
+
workspaceJSON
|
|
77
|
+
});
|
|
78
|
+
}
|
|
79
|
+
}).catch((error)=>{
|
|
80
|
+
showNotification({
|
|
81
|
+
content: "Could not load your latest view",
|
|
82
|
+
header: "Failed to Load Layout",
|
|
83
|
+
status: "error",
|
|
84
|
+
type: "toast"
|
|
85
|
+
});
|
|
86
|
+
console.error("Error occurred while retrieving application layout", error);
|
|
87
|
+
});
|
|
88
|
+
}, [
|
|
89
|
+
TabstripProps,
|
|
90
|
+
activeLayoutIndex,
|
|
91
|
+
customWorkspaceJSON,
|
|
92
|
+
layoutJSON,
|
|
93
|
+
showNotification,
|
|
94
|
+
persistenceManager,
|
|
95
|
+
setApplicationJSON,
|
|
96
|
+
showTabs
|
|
97
|
+
]);
|
|
98
|
+
const saveApplicationLayout = useCallback((layout)=>{
|
|
99
|
+
if (isLayoutJSON(layout)) {
|
|
100
|
+
setWorkspaceJSON(layout, false);
|
|
101
|
+
persistenceManager?.saveApplicationJSON(applicationJSONRef.current);
|
|
102
|
+
} else console.error("Tried to save invalid application layout", layout);
|
|
103
|
+
}, [
|
|
104
|
+
persistenceManager,
|
|
105
|
+
setWorkspaceJSON
|
|
106
|
+
]);
|
|
107
|
+
const saveLayout = useCallback((metadata)=>{
|
|
108
|
+
let layoutToSave;
|
|
109
|
+
try {
|
|
110
|
+
const { workspaceJSON } = applicationJSONRef.current;
|
|
111
|
+
if (Array.isArray(workspaceJSON)) console.log("how do we identify the right thing to save");
|
|
112
|
+
else layoutToSave = resolveJSONPath(workspaceJSON, `#${VuuShellLocation.Workspace}.ACTIVE_CHILD`);
|
|
113
|
+
} catch (e) {}
|
|
114
|
+
if (layoutToSave && isLayoutJSON(layoutToSave)) persistenceManager?.createLayout(metadata, ensureLayoutHasTitle(layoutToSave, metadata)).then((metadata)=>{
|
|
115
|
+
showNotification({
|
|
116
|
+
content: `${metadata.name} saved successfully`,
|
|
117
|
+
header: "Layout Saved Successfully",
|
|
118
|
+
status: "success",
|
|
119
|
+
type: "toast"
|
|
120
|
+
});
|
|
121
|
+
setLayoutMetadata((prev)=>[
|
|
122
|
+
...prev,
|
|
123
|
+
metadata
|
|
124
|
+
]);
|
|
125
|
+
}).catch((error)=>{
|
|
126
|
+
showNotification({
|
|
127
|
+
content: `Failed to save layout ${metadata.name}`,
|
|
128
|
+
header: "Failed to Save Layout",
|
|
129
|
+
status: "error",
|
|
130
|
+
type: "toast"
|
|
131
|
+
});
|
|
132
|
+
console.error("Error occurred while saving layout", error);
|
|
133
|
+
});
|
|
134
|
+
else {
|
|
135
|
+
console.error("Tried to save invalid layout", layoutToSave);
|
|
136
|
+
showNotification({
|
|
137
|
+
content: "Cannot save invalid layout",
|
|
138
|
+
header: "Failed to Save Layout",
|
|
139
|
+
status: "error",
|
|
140
|
+
type: "toast"
|
|
141
|
+
});
|
|
142
|
+
}
|
|
143
|
+
}, [
|
|
144
|
+
showNotification,
|
|
145
|
+
persistenceManager
|
|
146
|
+
]);
|
|
147
|
+
const saveApplicationSettings = useCallback((settings, key)=>{
|
|
148
|
+
const { settings: applicationSettings } = applicationJSONRef.current;
|
|
149
|
+
key ? setApplicationSettings({
|
|
150
|
+
...applicationSettings,
|
|
151
|
+
[key]: settings
|
|
152
|
+
}) : setApplicationSettings(settings);
|
|
153
|
+
persistenceManager?.saveApplicationJSON(applicationJSONRef.current);
|
|
154
|
+
}, [
|
|
155
|
+
persistenceManager,
|
|
156
|
+
setApplicationSettings
|
|
157
|
+
]);
|
|
158
|
+
const getApplicationSettings = useCallback((key)=>{
|
|
159
|
+
const { settings } = applicationJSONRef.current;
|
|
160
|
+
return key ? settings?.[key] : settings;
|
|
161
|
+
}, []);
|
|
162
|
+
const loadLayoutById = useCallback((id)=>{
|
|
163
|
+
persistenceManager?.loadLayout(id).then((layoutJson)=>{
|
|
164
|
+
const { workspaceJSON: currentLayout } = applicationJSONRef.current;
|
|
165
|
+
if (Array.isArray(currentLayout)) console.log("how do we deal witha amulti layoput");
|
|
166
|
+
else setWorkspaceJSON({
|
|
167
|
+
...currentLayout,
|
|
168
|
+
children: (currentLayout.children || []).concat(layoutJson),
|
|
169
|
+
props: {
|
|
170
|
+
...currentLayout.props,
|
|
171
|
+
active: currentLayout.children?.length ?? 0
|
|
172
|
+
}
|
|
173
|
+
});
|
|
174
|
+
}).catch((error)=>{
|
|
175
|
+
showNotification({
|
|
176
|
+
content: "Failed to load the requested layout",
|
|
177
|
+
header: "Failed to Load Layout",
|
|
178
|
+
status: "error",
|
|
179
|
+
type: "toast"
|
|
180
|
+
});
|
|
181
|
+
console.error("Error occurred while loading layout", error);
|
|
182
|
+
});
|
|
183
|
+
}, [
|
|
184
|
+
showNotification,
|
|
185
|
+
persistenceManager,
|
|
186
|
+
setWorkspaceJSON
|
|
187
|
+
]);
|
|
188
|
+
return /*#__PURE__*/ jsx(WorkspaceContext.Provider, {
|
|
189
|
+
value: {
|
|
190
|
+
getApplicationSettings,
|
|
191
|
+
layoutMetadata,
|
|
192
|
+
layoutPlaceholderJSON,
|
|
193
|
+
saveLayout,
|
|
194
|
+
workspaceJSON: applicationJSONRef.current.workspaceJSON,
|
|
195
|
+
saveApplicationLayout,
|
|
196
|
+
saveApplicationSettings,
|
|
197
|
+
loadLayoutById
|
|
198
|
+
},
|
|
199
|
+
children: children
|
|
200
|
+
});
|
|
201
|
+
};
|
|
202
|
+
const useWorkspace = ()=>{
|
|
203
|
+
const { workspaceJSON = getWorkspaceWithLayoutJSON(), ...contextProps } = useContext(WorkspaceContext);
|
|
204
|
+
return {
|
|
205
|
+
...contextProps,
|
|
206
|
+
workspaceJSON
|
|
207
|
+
};
|
|
208
|
+
};
|
|
209
|
+
export { WorkspaceProvider, useWorkspace };
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import { VuuShellLocation } from "@vuu-ui/vuu-utils";
|
|
2
|
+
const warningLayout = {
|
|
3
|
+
type: "View",
|
|
4
|
+
props: {
|
|
5
|
+
style: {
|
|
6
|
+
height: "calc(100% - 6px)"
|
|
7
|
+
}
|
|
8
|
+
},
|
|
9
|
+
children: [
|
|
10
|
+
{
|
|
11
|
+
props: {
|
|
12
|
+
className: "vuuShell-warningPlaceholder"
|
|
13
|
+
},
|
|
14
|
+
type: "Placeholder"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
};
|
|
18
|
+
const loadingJSON = {
|
|
19
|
+
type: "Component",
|
|
20
|
+
id: "loading-main",
|
|
21
|
+
props: {}
|
|
22
|
+
};
|
|
23
|
+
const defaultWorkspaceJSON = {
|
|
24
|
+
type: "Stack",
|
|
25
|
+
id: VuuShellLocation.Workspace,
|
|
26
|
+
props: {
|
|
27
|
+
className: `${VuuShellLocation.Workspace}-tabs`,
|
|
28
|
+
TabstripProps: {
|
|
29
|
+
allowAddTab: true,
|
|
30
|
+
allowCloseTab: true,
|
|
31
|
+
allowRenameTab: true,
|
|
32
|
+
animateSelectionThumb: false,
|
|
33
|
+
"aria-label": "Workspace Tabs",
|
|
34
|
+
location: "workspace-tab",
|
|
35
|
+
variant: "primary"
|
|
36
|
+
},
|
|
37
|
+
preserve: true
|
|
38
|
+
}
|
|
39
|
+
};
|
|
40
|
+
const getStackWorkspaceJSON = (activeLayoutIndex)=>({
|
|
41
|
+
...defaultWorkspaceJSON,
|
|
42
|
+
active: activeLayoutIndex ?? 0
|
|
43
|
+
});
|
|
44
|
+
const placeholderLayout = {
|
|
45
|
+
props: {
|
|
46
|
+
id: "tab1",
|
|
47
|
+
title: "Tab 1",
|
|
48
|
+
className: "vuuShell-Placeholder"
|
|
49
|
+
},
|
|
50
|
+
type: "Placeholder"
|
|
51
|
+
};
|
|
52
|
+
const getWorkspaceWithLayoutJSON = (customWorkspaceJSON, layoutJSON = placeholderLayout, activeLayoutIndex, stackProps)=>{
|
|
53
|
+
const stackWorkspace = getStackWorkspaceJSON(activeLayoutIndex);
|
|
54
|
+
if (Array.isArray(customWorkspaceJSON)) {
|
|
55
|
+
const workspace = customWorkspaceJSON.find((layout)=>layout.id === VuuShellLocation.Workspace);
|
|
56
|
+
if (workspace) return customWorkspaceJSON.map((ws)=>{
|
|
57
|
+
if (ws.id === VuuShellLocation.Workspace) return {
|
|
58
|
+
...ws,
|
|
59
|
+
children: Array.isArray(layoutJSON) ? layoutJSON : [
|
|
60
|
+
layoutJSON
|
|
61
|
+
]
|
|
62
|
+
};
|
|
63
|
+
return ws;
|
|
64
|
+
});
|
|
65
|
+
throw Error("Multiple workspaces have been provided but none has the workspace id");
|
|
66
|
+
}
|
|
67
|
+
if (customWorkspaceJSON) return {
|
|
68
|
+
...customWorkspaceJSON,
|
|
69
|
+
children: Array.isArray(layoutJSON) ? layoutJSON : [
|
|
70
|
+
layoutJSON
|
|
71
|
+
]
|
|
72
|
+
};
|
|
73
|
+
return {
|
|
74
|
+
...stackWorkspace,
|
|
75
|
+
props: {
|
|
76
|
+
...stackWorkspace.props,
|
|
77
|
+
...stackProps,
|
|
78
|
+
TabstripProps: {
|
|
79
|
+
...stackWorkspace.props?.TabstripProps,
|
|
80
|
+
...stackProps?.TabstripProps
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
children: Array.isArray(layoutJSON) ? layoutJSON : [
|
|
84
|
+
layoutJSON
|
|
85
|
+
]
|
|
86
|
+
};
|
|
87
|
+
};
|
|
88
|
+
export { defaultWorkspaceJSON, getStackWorkspaceJSON, getWorkspaceWithLayoutJSON, loadingJSON, warningLayout };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { toPng } from "html-to-image";
|
|
2
|
+
const takeScreenshot = (node)=>new Promise((resolve, reject)=>{
|
|
3
|
+
toPng(node, {
|
|
4
|
+
cacheBust: true
|
|
5
|
+
}).then((screenshot)=>{
|
|
6
|
+
if (!screenshot) reject(new Error("No Screenshot available"));
|
|
7
|
+
resolve(screenshot);
|
|
8
|
+
}).catch((error)=>{
|
|
9
|
+
console.error("the following error occurred while taking a screenshot of a DOMNode", error);
|
|
10
|
+
reject(new Error("Error taking screenshot"));
|
|
11
|
+
});
|
|
12
|
+
});
|
|
13
|
+
export { takeScreenshot };
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { useModal } from "@vuu-ui/vuu-ui-controls";
|
|
3
|
+
import { useCallback, useMemo } from "react";
|
|
4
|
+
import { SaveLayoutPanel } from "./SaveLayoutPanel.js";
|
|
5
|
+
import { useWorkspace } from "./WorkspaceProvider.js";
|
|
6
|
+
const useWorkspaceContextMenuItems = ()=>{
|
|
7
|
+
const { saveLayout } = useWorkspace();
|
|
8
|
+
const { showDialog, closeDialog } = useModal();
|
|
9
|
+
const handleCloseDialog = useCallback(()=>{
|
|
10
|
+
closeDialog();
|
|
11
|
+
}, [
|
|
12
|
+
closeDialog
|
|
13
|
+
]);
|
|
14
|
+
const handleSave = useCallback((layoutMetadata)=>{
|
|
15
|
+
saveLayout(layoutMetadata);
|
|
16
|
+
closeDialog();
|
|
17
|
+
}, [
|
|
18
|
+
saveLayout,
|
|
19
|
+
closeDialog
|
|
20
|
+
]);
|
|
21
|
+
const [buildMenuOptions, handleMenuAction] = useMemo(()=>[
|
|
22
|
+
(location, options)=>{
|
|
23
|
+
const locations = location.split(" ");
|
|
24
|
+
const menuDescriptors = [];
|
|
25
|
+
if (locations.includes("workspace-tab")) menuDescriptors.push({
|
|
26
|
+
label: "Save Layout",
|
|
27
|
+
id: "save-layout",
|
|
28
|
+
options
|
|
29
|
+
}, {
|
|
30
|
+
label: "Layout Settings",
|
|
31
|
+
id: "layout-settings",
|
|
32
|
+
options
|
|
33
|
+
});
|
|
34
|
+
return menuDescriptors;
|
|
35
|
+
},
|
|
36
|
+
(menuItemId, options)=>{
|
|
37
|
+
if ("save-layout" === menuItemId) {
|
|
38
|
+
showDialog(/*#__PURE__*/ jsx(SaveLayoutPanel, {
|
|
39
|
+
onCancel: handleCloseDialog,
|
|
40
|
+
onSave: handleSave,
|
|
41
|
+
componentId: options?.controlledComponentId,
|
|
42
|
+
defaultTitle: options?.controlledComponentTitle
|
|
43
|
+
}), "Save Layout", [], true);
|
|
44
|
+
return true;
|
|
45
|
+
}
|
|
46
|
+
return false;
|
|
47
|
+
}
|
|
48
|
+
], [
|
|
49
|
+
handleCloseDialog,
|
|
50
|
+
handleSave,
|
|
51
|
+
showDialog
|
|
52
|
+
]);
|
|
53
|
+
return {
|
|
54
|
+
buildMenuOptions,
|
|
55
|
+
handleMenuAction
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
export { useWorkspaceContextMenuItems };
|
|
@@ -9,5 +9,5 @@ export declare class FeatureErrorBoundary extends React.Component<FeatureErrorBo
|
|
|
9
9
|
errorMessage: string;
|
|
10
10
|
};
|
|
11
11
|
componentDidCatch(error: Error, errorInfo: ErrorInfo): void;
|
|
12
|
-
render(): string | number | bigint | boolean | import("react/jsx-runtime").JSX.Element | Iterable<
|
|
12
|
+
render(): string | number | bigint | boolean | import("react/jsx-runtime").JSX.Element | Iterable<ReactNode> | Promise<string | number | bigint | boolean | Iterable<ReactNode> | React.ReactElement<unknown, string | React.JSXElementConstructor<any>> | React.ReactPortal | null | undefined> | null | undefined;
|
|
13
13
|
}
|
|
@@ -37,11 +37,6 @@ export interface WorkspaceProviderProps extends WorkspaceProps {
|
|
|
37
37
|
*/
|
|
38
38
|
export declare const WorkspaceProvider: ({ TabstripProps, children, layoutJSON, activeLayoutIndex, layoutPlaceholderJSON, showTabs, workspaceJSON: customWorkspaceJSON, }: WorkspaceProviderProps) => import("react/jsx-runtime").JSX.Element;
|
|
39
39
|
export declare const useWorkspace: () => {
|
|
40
|
-
workspaceJSON: LayoutJSON<{
|
|
41
|
-
[key: string]: any;
|
|
42
|
-
}> | LayoutJSON<{
|
|
43
|
-
[key: string]: any;
|
|
44
|
-
}>[];
|
|
45
40
|
layoutMetadata: LayoutMetadata[];
|
|
46
41
|
layoutPlaceholderJSON?: LayoutJSON;
|
|
47
42
|
getApplicationSettings: (key?: keyof ApplicationSettings) => ApplicationSettings | ApplicationSetting | undefined;
|
|
@@ -49,4 +44,9 @@ export declare const useWorkspace: () => {
|
|
|
49
44
|
saveApplicationSettings: (settings: ApplicationSettings | ApplicationSetting, key?: keyof ApplicationSettings) => void;
|
|
50
45
|
saveLayout: (n: LayoutMetadataDto) => void;
|
|
51
46
|
saveApplicationLayout: (layout: LayoutJSON) => void;
|
|
47
|
+
workspaceJSON: LayoutJSON<{
|
|
48
|
+
[key: string]: any;
|
|
49
|
+
}>[] | LayoutJSON<{
|
|
50
|
+
[key: string]: any;
|
|
51
|
+
}>;
|
|
52
52
|
};
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
var jsxRuntime = require('react/jsx-runtime');
|
|
4
|
-
var vuuUtils = require('@vuu-ui/vuu-utils');
|
|
5
|
-
|
|
6
|
-
const Provider = ({
|
|
7
|
-
children,
|
|
8
|
-
context,
|
|
9
|
-
inheritedContext
|
|
10
|
-
}) => {
|
|
11
|
-
const mergedContext = {
|
|
12
|
-
...inheritedContext,
|
|
13
|
-
...context
|
|
14
|
-
};
|
|
15
|
-
return /* @__PURE__ */ jsxRuntime.jsx(vuuUtils.ShellContext.Provider, { value: mergedContext, children });
|
|
16
|
-
};
|
|
17
|
-
const ShellContextProvider = ({
|
|
18
|
-
children,
|
|
19
|
-
value
|
|
20
|
-
}) => {
|
|
21
|
-
return /* @__PURE__ */ jsxRuntime.jsx(vuuUtils.ShellContext.Consumer, { children: (context) => /* @__PURE__ */ jsxRuntime.jsx(Provider, { context: value, inheritedContext: context, children }) });
|
|
22
|
-
};
|
|
23
|
-
|
|
24
|
-
exports.ShellContextProvider = ShellContextProvider;
|
|
25
|
-
//# sourceMappingURL=ShellContextProvider.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ShellContextProvider.js","sources":["../../../packages/vuu-shell/src/ShellContextProvider.tsx"],"sourcesContent":["import { ShellContext, ShellContextProps } from \"@vuu-ui/vuu-utils\";\nimport { ReactElement, ReactNode } from \"react\";\n\nexport interface ShellProviderProps {\n children: ReactNode;\n value?: ShellContextProps;\n}\n\nconst Provider = ({\n children,\n context,\n inheritedContext,\n}: {\n children: ReactNode;\n context?: ShellContextProps;\n inheritedContext?: ShellContextProps;\n}) => {\n // TODO functions provided at multiple levels must be merged\n const mergedContext = {\n ...inheritedContext,\n ...context,\n };\n return (\n <ShellContext.Provider value={mergedContext}>\n {children}\n </ShellContext.Provider>\n );\n};\n\nexport const ShellContextProvider = ({\n children,\n value,\n}: ShellProviderProps): ReactElement => {\n return (\n <ShellContext.Consumer>\n {(context) => (\n <Provider context={value} inheritedContext={context}>\n {children}\n </Provider>\n )}\n </ShellContext.Consumer>\n );\n};\n"],"names":["ShellContext","jsx"],"mappings":";;;;;AAQA,MAAM,WAAW,CAAC;AAAA,EAChB,QAAA;AAAA,EACA,OAAA;AAAA,EACA;AACF,CAIM,KAAA;AAEJ,EAAA,MAAM,aAAgB,GAAA;AAAA,IACpB,GAAG,gBAAA;AAAA,IACH,GAAG;AAAA,GACL;AACA,EAAA,sCACGA,qBAAa,CAAA,QAAA,EAAb,EAAsB,KAAA,EAAO,eAC3B,QACH,EAAA,CAAA;AAEJ,CAAA;AAEO,MAAM,uBAAuB,CAAC;AAAA,EACnC,QAAA;AAAA,EACA;AACF,CAAwC,KAAA;AACtC,EAAA,uBACGC,cAAA,CAAAD,qBAAA,CAAa,QAAb,EAAA,EACE,QAAC,EAAA,CAAA,OAAA,qBACCC,cAAA,CAAA,QAAA,EAAA,EAAS,OAAS,EAAA,KAAA,EAAO,gBAAkB,EAAA,OAAA,EACzC,UACH,CAEJ,EAAA,CAAA;AAEJ;;;;"}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
var appHeaderCss = ".vuuAppHeader {\n --saltButton-borderRadius: 6px;\n --saltButton-text-color: var(--vuu-color-gray-50);\n --saltButton-padding: 12px;\n --vuuToolbarItem-height: 26px;\n --vuuOverflowContainer-gap: 8px;\n --vuuOverflowContainer-height: var(--vuuAppHeader-height, 42px);\n --vuu-icon-color: var(--vuu-color-gray-45);\n --vuu-icon-size: 16px;\n --vuuToolbar-borderWidth: 1px;\n --vuuToolbar-borderStyle: solid;\n --vuuToolbar-borderColor: var(--salt-separable-primary-borderColor);\n\n align-items: center;\n display: flex;\n justify-content: flex-end;\n}\n\n";
|
|
4
|
-
|
|
5
|
-
module.exports = appHeaderCss;
|
|
6
|
-
//# sourceMappingURL=AppHeader.css.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"AppHeader.css.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;"}
|
|
@@ -1,118 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
var jsxRuntime = require('react/jsx-runtime');
|
|
4
|
-
var core = require('@salt-ds/core');
|
|
5
|
-
var styles = require('@salt-ds/styles');
|
|
6
|
-
var window = require('@salt-ds/window');
|
|
7
|
-
var vuuLayout = require('@vuu-ui/vuu-layout');
|
|
8
|
-
var vuuUiControls = require('@vuu-ui/vuu-ui-controls');
|
|
9
|
-
var cx = require('clsx');
|
|
10
|
-
var React = require('react');
|
|
11
|
-
var PersistenceProvider = require('../persistence-manager/PersistenceProvider.js');
|
|
12
|
-
require('../persistence-manager/LocalPersistenceManager.js');
|
|
13
|
-
require('../persistence-manager/StaticPersistenceManager.js');
|
|
14
|
-
var vuuNotifications = require('@vuu-ui/vuu-notifications');
|
|
15
|
-
var ApplicationProvider = require('../application-provider/ApplicationProvider.js');
|
|
16
|
-
var AppHeader$1 = require('./AppHeader.css.js');
|
|
17
|
-
|
|
18
|
-
const classBase = "vuuAppHeader";
|
|
19
|
-
const AppHeader = ({
|
|
20
|
-
className: classNameProp,
|
|
21
|
-
themeMode: _,
|
|
22
|
-
...htmlAttributes
|
|
23
|
-
}) => {
|
|
24
|
-
const targetWindow = window.useWindow();
|
|
25
|
-
styles.useComponentCssInjection({
|
|
26
|
-
testId: "vuu-app-header",
|
|
27
|
-
css: AppHeader$1,
|
|
28
|
-
window: targetWindow
|
|
29
|
-
});
|
|
30
|
-
const persistenceManager = PersistenceProvider.usePersistenceManager();
|
|
31
|
-
const settingsButtonRef = React.useRef(null);
|
|
32
|
-
const className = cx(classBase, classNameProp);
|
|
33
|
-
const logout = ApplicationProvider.useLogout();
|
|
34
|
-
const { showComponentInContextPanel } = vuuLayout.useLayoutOperation();
|
|
35
|
-
const { showNotification } = vuuNotifications.useNotifications();
|
|
36
|
-
const handleReset = React.useCallback(() => {
|
|
37
|
-
persistenceManager?.clearUserSettings();
|
|
38
|
-
showNotification({
|
|
39
|
-
animationType: "slide-out",
|
|
40
|
-
renderPostRefresh: true,
|
|
41
|
-
type: vuuNotifications.NotificationType.Toast,
|
|
42
|
-
header: "Success",
|
|
43
|
-
content: "Settings cleared",
|
|
44
|
-
status: "success"
|
|
45
|
-
});
|
|
46
|
-
location.reload();
|
|
47
|
-
}, [persistenceManager, showNotification]);
|
|
48
|
-
const handleShowSettings = React.useCallback(() => {
|
|
49
|
-
showComponentInContextPanel(
|
|
50
|
-
{
|
|
51
|
-
type: "ApplicationSettings"
|
|
52
|
-
},
|
|
53
|
-
"Settings",
|
|
54
|
-
() => settingsButtonRef.current?.focus()
|
|
55
|
-
);
|
|
56
|
-
}, [showComponentInContextPanel]);
|
|
57
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
58
|
-
vuuUiControls.Toolbar,
|
|
59
|
-
{
|
|
60
|
-
alignItems: "end",
|
|
61
|
-
className,
|
|
62
|
-
role: "banner",
|
|
63
|
-
showSeparators: true,
|
|
64
|
-
...htmlAttributes,
|
|
65
|
-
children: [
|
|
66
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
67
|
-
core.Button,
|
|
68
|
-
{
|
|
69
|
-
className: `${classBase}-menuItem`,
|
|
70
|
-
appearance: "transparent",
|
|
71
|
-
sentiment: "neutral",
|
|
72
|
-
children: "Help"
|
|
73
|
-
}
|
|
74
|
-
),
|
|
75
|
-
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
76
|
-
core.Button,
|
|
77
|
-
{
|
|
78
|
-
appearance: "transparent",
|
|
79
|
-
className: `${classBase}-menuItem`,
|
|
80
|
-
onClick: handleReset,
|
|
81
|
-
sentiment: "neutral",
|
|
82
|
-
children: [
|
|
83
|
-
"Reset ",
|
|
84
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { "data-icon": "history" })
|
|
85
|
-
]
|
|
86
|
-
}
|
|
87
|
-
),
|
|
88
|
-
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
89
|
-
core.Button,
|
|
90
|
-
{
|
|
91
|
-
appearance: "transparent",
|
|
92
|
-
className: `${classBase}-menuItem`,
|
|
93
|
-
onClick: handleShowSettings,
|
|
94
|
-
ref: settingsButtonRef,
|
|
95
|
-
sentiment: "neutral",
|
|
96
|
-
children: [
|
|
97
|
-
"Settings ",
|
|
98
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { "data-icon": "settings" })
|
|
99
|
-
]
|
|
100
|
-
}
|
|
101
|
-
),
|
|
102
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
103
|
-
core.Button,
|
|
104
|
-
{
|
|
105
|
-
appearance: "transparent",
|
|
106
|
-
className: `${classBase}-menuItem`,
|
|
107
|
-
onClick: logout,
|
|
108
|
-
sentiment: "neutral",
|
|
109
|
-
children: "Log out"
|
|
110
|
-
}
|
|
111
|
-
)
|
|
112
|
-
]
|
|
113
|
-
}
|
|
114
|
-
);
|
|
115
|
-
};
|
|
116
|
-
|
|
117
|
-
exports.AppHeader = AppHeader;
|
|
118
|
-
//# sourceMappingURL=AppHeader.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"AppHeader.js","sources":["../../../../packages/vuu-shell/src/app-header/AppHeader.tsx"],"sourcesContent":["import { Button } from \"@salt-ds/core\";\nimport { useComponentCssInjection } from \"@salt-ds/styles\";\nimport { useWindow } from \"@salt-ds/window\";\nimport { useLayoutOperation } from \"@vuu-ui/vuu-layout\";\nimport { Toolbar } from \"@vuu-ui/vuu-ui-controls\";\nimport type { ThemeMode } from \"@vuu-ui/vuu-utils\";\nimport cx from \"clsx\";\nimport { HTMLAttributes, useCallback, useRef } from \"react\";\nimport { usePersistenceManager } from \"../persistence-manager\";\nimport { NotificationType, useNotifications } from \"@vuu-ui/vuu-notifications\";\nimport { useLogout } from \"../application-provider\";\n\nimport appHeaderCss from \"./AppHeader.css\";\n\nconst classBase = \"vuuAppHeader\";\nexport interface AppHeaderProps extends HTMLAttributes<HTMLDivElement> {\n themeMode?: ThemeMode;\n}\n\nexport const AppHeader = ({\n className: classNameProp,\n themeMode: _,\n ...htmlAttributes\n}: AppHeaderProps) => {\n const targetWindow = useWindow();\n useComponentCssInjection({\n testId: \"vuu-app-header\",\n css: appHeaderCss,\n window: targetWindow,\n });\n\n const persistenceManager = usePersistenceManager();\n const settingsButtonRef = useRef<HTMLButtonElement>(null);\n\n const className = cx(classBase, classNameProp);\n const logout = useLogout();\n\n const { showComponentInContextPanel } = useLayoutOperation();\n const { showNotification } = useNotifications();\n\n const handleReset = useCallback(() => {\n persistenceManager?.clearUserSettings();\n showNotification({\n animationType: \"slide-out\",\n renderPostRefresh: true,\n type: NotificationType.Toast,\n header: \"Success\",\n content: \"Settings cleared\",\n status: \"success\",\n });\n location.reload();\n }, [persistenceManager, showNotification]);\n\n const handleShowSettings = useCallback(() => {\n showComponentInContextPanel(\n {\n type: \"ApplicationSettings\",\n },\n \"Settings\",\n () => settingsButtonRef.current?.focus(),\n );\n }, [showComponentInContextPanel]);\n\n return (\n <Toolbar\n alignItems=\"end\"\n className={className}\n role=\"banner\"\n showSeparators\n {...htmlAttributes}\n >\n <Button\n className={`${classBase}-menuItem`}\n appearance=\"transparent\"\n sentiment=\"neutral\"\n >\n Help\n </Button>\n <Button\n appearance=\"transparent\"\n className={`${classBase}-menuItem`}\n onClick={handleReset}\n sentiment=\"neutral\"\n >\n Reset <span data-icon=\"history\" />\n </Button>\n <Button\n appearance=\"transparent\"\n className={`${classBase}-menuItem`}\n onClick={handleShowSettings}\n ref={settingsButtonRef}\n sentiment=\"neutral\"\n >\n Settings <span data-icon=\"settings\" />\n </Button>\n <Button\n appearance=\"transparent\"\n className={`${classBase}-menuItem`}\n onClick={logout}\n sentiment=\"neutral\"\n >\n Log out\n </Button>\n </Toolbar>\n );\n};\n"],"names":["useWindow","useComponentCssInjection","appHeaderCss","usePersistenceManager","useRef","useLogout","useLayoutOperation","useNotifications","useCallback","NotificationType","jsxs","Toolbar","jsx","Button"],"mappings":";;;;;;;;;;;;;;;;;AAcA,MAAM,SAAY,GAAA,cAAA;AAKX,MAAM,YAAY,CAAC;AAAA,EACxB,SAAW,EAAA,aAAA;AAAA,EACX,SAAW,EAAA,CAAA;AAAA,EACX,GAAG;AACL,CAAsB,KAAA;AACpB,EAAA,MAAM,eAAeA,gBAAU,EAAA;AAC/B,EAAyBC,+BAAA,CAAA;AAAA,IACvB,MAAQ,EAAA,gBAAA;AAAA,IACR,GAAK,EAAAC,WAAA;AAAA,IACL,MAAQ,EAAA;AAAA,GACT,CAAA;AAED,EAAA,MAAM,qBAAqBC,yCAAsB,EAAA;AACjD,EAAM,MAAA,iBAAA,GAAoBC,aAA0B,IAAI,CAAA;AAExD,EAAM,MAAA,SAAA,GAAY,EAAG,CAAA,SAAA,EAAW,aAAa,CAAA;AAC7C,EAAA,MAAM,SAASC,6BAAU,EAAA;AAEzB,EAAM,MAAA,EAAE,2BAA4B,EAAA,GAAIC,4BAAmB,EAAA;AAC3D,EAAM,MAAA,EAAE,gBAAiB,EAAA,GAAIC,iCAAiB,EAAA;AAE9C,EAAM,MAAA,WAAA,GAAcC,kBAAY,MAAM;AACpC,IAAA,kBAAA,EAAoB,iBAAkB,EAAA;AACtC,IAAiB,gBAAA,CAAA;AAAA,MACf,aAAe,EAAA,WAAA;AAAA,MACf,iBAAmB,EAAA,IAAA;AAAA,MACnB,MAAMC,iCAAiB,CAAA,KAAA;AAAA,MACvB,MAAQ,EAAA,SAAA;AAAA,MACR,OAAS,EAAA,kBAAA;AAAA,MACT,MAAQ,EAAA;AAAA,KACT,CAAA;AACD,IAAA,QAAA,CAAS,MAAO,EAAA;AAAA,GACf,EAAA,CAAC,kBAAoB,EAAA,gBAAgB,CAAC,CAAA;AAEzC,EAAM,MAAA,kBAAA,GAAqBD,kBAAY,MAAM;AAC3C,IAAA,2BAAA;AAAA,MACE;AAAA,QACE,IAAM,EAAA;AAAA,OACR;AAAA,MACA,UAAA;AAAA,MACA,MAAM,iBAAkB,CAAA,OAAA,EAAS,KAAM;AAAA,KACzC;AAAA,GACF,EAAG,CAAC,2BAA2B,CAAC,CAAA;AAEhC,EACE,uBAAAE,eAAA;AAAA,IAACC,qBAAA;AAAA,IAAA;AAAA,MACC,UAAW,EAAA,KAAA;AAAA,MACX,SAAA;AAAA,MACA,IAAK,EAAA,QAAA;AAAA,MACL,cAAc,EAAA,IAAA;AAAA,MACb,GAAG,cAAA;AAAA,MAEJ,QAAA,EAAA;AAAA,wBAAAC,cAAA;AAAA,UAACC,WAAA;AAAA,UAAA;AAAA,YACC,SAAA,EAAW,GAAG,SAAS,CAAA,SAAA,CAAA;AAAA,YACvB,UAAW,EAAA,aAAA;AAAA,YACX,SAAU,EAAA,SAAA;AAAA,YACX,QAAA,EAAA;AAAA;AAAA,SAED;AAAA,wBACAH,eAAA;AAAA,UAACG,WAAA;AAAA,UAAA;AAAA,YACC,UAAW,EAAA,aAAA;AAAA,YACX,SAAA,EAAW,GAAG,SAAS,CAAA,SAAA,CAAA;AAAA,YACvB,OAAS,EAAA,WAAA;AAAA,YACT,SAAU,EAAA,SAAA;AAAA,YACX,QAAA,EAAA;AAAA,cAAA,QAAA;AAAA,8BACOD,cAAA,CAAC,MAAK,EAAA,EAAA,WAAA,EAAU,SAAU,EAAA;AAAA;AAAA;AAAA,SAClC;AAAA,wBACAF,eAAA;AAAA,UAACG,WAAA;AAAA,UAAA;AAAA,YACC,UAAW,EAAA,aAAA;AAAA,YACX,SAAA,EAAW,GAAG,SAAS,CAAA,SAAA,CAAA;AAAA,YACvB,OAAS,EAAA,kBAAA;AAAA,YACT,GAAK,EAAA,iBAAA;AAAA,YACL,SAAU,EAAA,SAAA;AAAA,YACX,QAAA,EAAA;AAAA,cAAA,WAAA;AAAA,8BACUD,cAAA,CAAC,MAAK,EAAA,EAAA,WAAA,EAAU,UAAW,EAAA;AAAA;AAAA;AAAA,SACtC;AAAA,wBACAA,cAAA;AAAA,UAACC,WAAA;AAAA,UAAA;AAAA,YACC,UAAW,EAAA,aAAA;AAAA,YACX,SAAA,EAAW,GAAG,SAAS,CAAA,SAAA,CAAA;AAAA,YACvB,OAAS,EAAA,MAAA;AAAA,YACT,SAAU,EAAA,SAAA;AAAA,YACX,QAAA,EAAA;AAAA;AAAA;AAED;AAAA;AAAA,GACF;AAEJ;;;;"}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
var React = require('react');
|
|
4
|
-
|
|
5
|
-
const Guest = {
|
|
6
|
-
username: "unknown"
|
|
7
|
-
};
|
|
8
|
-
const ApplicationContext = React.createContext({
|
|
9
|
-
onUserSettingChanged: (propertyName) => console.warn(
|
|
10
|
-
`Cannot change setting '${propertyName}'.
|
|
11
|
-
Did you forget to declare an ApplicationProvider ?`
|
|
12
|
-
),
|
|
13
|
-
user: Guest
|
|
14
|
-
});
|
|
15
|
-
|
|
16
|
-
exports.ApplicationContext = ApplicationContext;
|
|
17
|
-
//# sourceMappingURL=ApplicationContext.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ApplicationContext.js","sources":["../../../../packages/vuu-shell/src/application-provider/ApplicationContext.tsx"],"sourcesContent":["import type { Settings, VuuUser } from \"@vuu-ui/vuu-utils\";\nimport { VuuRowDataItemType } from \"@vuu-ui/vuu-protocol-types\";\nimport { createContext } from \"react\";\nimport { SettingsSchema } from \"../user-settings\";\n\nconst Guest: VuuUser = {\n username: \"unknown\",\n};\n\nexport interface ApplicationContextProps {\n onUserSettingChanged: (\n propertyName: string,\n value: VuuRowDataItemType,\n ) => void;\n logout?: () => void;\n userSettings?: Settings;\n userSettingsSchema?: SettingsSchema;\n user: VuuUser;\n}\n\nexport const ApplicationContext = createContext<ApplicationContextProps>({\n onUserSettingChanged: (propertyName: string) =>\n console.warn(\n `Cannot change setting '${propertyName}'.\\nDid you forget to declare an ApplicationProvider ?`,\n ),\n user: Guest,\n});\n"],"names":["createContext"],"mappings":";;;;AAKA,MAAM,KAAiB,GAAA;AAAA,EACrB,QAAU,EAAA;AACZ,CAAA;AAaO,MAAM,qBAAqBA,mBAAuC,CAAA;AAAA,EACvE,oBAAA,EAAsB,CAAC,YAAA,KACrB,OAAQ,CAAA,IAAA;AAAA,IACN,0BAA0B,YAAY,CAAA;AAAA,kDAAA;AAAA,GACxC;AAAA,EACF,IAAM,EAAA;AACR,CAAC;;;;"}
|