-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathLayout.tsx
More file actions
205 lines (191 loc) · 6.24 KB
/
Layout.tsx
File metadata and controls
205 lines (191 loc) · 6.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
import React, { useState, useRef, useEffect } from "react";
import {
EuiPage,
EuiPageSidebar,
EuiPageBody,
EuiErrorBoundary,
EuiHorizontalRule,
EuiSpacer,
EuiFlexGroup,
EuiFlexItem,
} from "@elastic/eui";
import { Outlet } from "react-router-dom";
import RegistryPathContext from "../contexts/RegistryPathContext";
import { useParams } from "react-router-dom";
import { useLoadProjectsList } from "../contexts/ProjectListContext";
import useLoadRegistry from "../queries/useLoadRegistry";
import ProjectSelector from "../components/ProjectSelector";
import Sidebar from "./Sidebar";
import FeastWordMark from "../graphics/FeastWordMark";
import ThemeToggle from "../components/ThemeToggle";
import RegistrySearch, {
RegistrySearchRef,
} from "../components/RegistrySearch";
import GlobalSearchShortcut from "../components/GlobalSearchShortcut";
import CommandPalette from "../components/CommandPalette";
const Layout = () => {
// Registry Path Context has to be inside Layout
// because it has to be under routes
// in order to use useParams
let { projectName } = useParams();
const [isCommandPaletteOpen, setIsCommandPaletteOpen] = useState(false);
const searchRef = useRef<RegistrySearchRef>(null);
const { data: projectsData } = useLoadProjectsList();
const currentProject = projectsData?.projects.find((project) => {
return project.id === projectName;
});
const registryPath = currentProject?.registryPath || "";
const { data } = useLoadRegistry(registryPath);
const categories = data
? [
{
name: "Data Sources",
data: data.objects.dataSources || [],
getLink: (item: any) => `/p/${projectName}/data-source/${item.name}`,
},
{
name: "Entities",
data: data.objects.entities || [],
getLink: (item: any) => `/p/${projectName}/entity/${item.name}`,
},
{
name: "Features",
data: data.allFeatures || [],
getLink: (item: any) => {
const featureView = item?.featureView;
return featureView
? `/p/${projectName}/feature-view/${featureView}/feature/${item.name}`
: "#";
},
},
{
name: "Feature Views",
data: data.mergedFVList || [],
getLink: (item: any) => `/p/${projectName}/feature-view/${item.name}`,
},
{
name: "Feature Services",
data: data.objects.featureServices || [],
getLink: (item: any) => {
const serviceName = item?.name || item?.spec?.name;
return serviceName
? `/p/${projectName}/feature-service/${serviceName}`
: "#";
},
},
]
: [];
const handleSearchOpen = () => {
console.log("Opening command palette - before state update"); // Debug log
setIsCommandPaletteOpen(true);
console.log("Command palette state should be updated to true");
};
useEffect(() => {
const handleKeyDown = (event: KeyboardEvent) => {
console.log(
"Layout key pressed:",
event.key,
"metaKey:",
event.metaKey,
"ctrlKey:",
event.ctrlKey,
);
if ((event.metaKey || event.ctrlKey) && event.key.toLowerCase() === "k") {
console.log("Layout detected Cmd+K, preventing default");
event.preventDefault();
event.stopPropagation();
handleSearchOpen();
}
};
console.log("Layout adding keydown event listener");
window.addEventListener("keydown", handleKeyDown, true);
return () => {
window.removeEventListener("keydown", handleKeyDown, true);
};
}, []);
return (
<RegistryPathContext.Provider value={registryPath}>
<GlobalSearchShortcut onOpen={handleSearchOpen} />
<CommandPalette
isOpen={isCommandPaletteOpen}
onClose={() => setIsCommandPaletteOpen(false)}
categories={categories}
/>
<EuiPage paddingSize="none" style={{ background: "transparent" }}>
<EuiPageSidebar
paddingSize="l"
sticky={{ offset: 0 }}
role={"navigation"}
aria-label={"Top Level"}
>
<FeastWordMark />
<EuiSpacer size="s" />
<ProjectSelector />
{registryPath && (
<React.Fragment>
<EuiHorizontalRule margin="s" />
<Sidebar />
<EuiSpacer size="l" />
<EuiHorizontalRule margin="s" />
<div
style={{
display: "flex",
justifyContent: "flex-start",
alignItems: "center",
}}
>
<ThemeToggle />
</div>
</React.Fragment>
)}
</EuiPageSidebar>
<EuiPageBody>
<EuiErrorBoundary>
<div
style={{
display: "flex",
flexDirection: "column",
height: "100vh",
}}
>
{data && (
<div
style={{
position: "sticky",
top: 0,
zIndex: 100,
backgroundColor: "var(--euiPageBackgroundColor)",
borderBottom: "1px solid #D3DAE6",
boxShadow: "0px 1px 5px rgba(0, 0, 0, 0.05)",
padding: "16px",
width: "100%",
}}
>
<EuiFlexGroup justifyContent="center">
<EuiFlexItem
grow={false}
style={{ width: "600px", maxWidth: "90%" }}
>
<RegistrySearch ref={searchRef} categories={categories} />
</EuiFlexItem>
</EuiFlexGroup>
</div>
)}
<div
style={{
flexGrow: 1,
overflow: "auto",
padding: "16px",
height: "calc(100vh - 70px)",
}}
>
<Outlet />
</div>
</div>
</EuiErrorBoundary>
</EuiPageBody>
</EuiPage>
</RegistryPathContext.Provider>
);
};
export default Layout;