-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathProjectSelector.tsx
42 lines (35 loc) · 1.1 KB
/
ProjectSelector.tsx
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
import { EuiSelect, useGeneratedHtmlId } from "@elastic/eui";
import React from "react";
import { useNavigate, useParams } from "react-router-dom";
import { useLoadProjectsList } from "../contexts/ProjectListContext";
const ProjectSelector = () => {
const { projectName } = useParams();
const navigate = useNavigate();
const { isLoading, data } = useLoadProjectsList();
const currentProject = data?.projects.find((project) => {
return project.id === projectName;
});
const options = data?.projects.map((p) => {
return {
value: p.id,
text: p.name,
};
});
const basicSelectId = useGeneratedHtmlId({ prefix: "basicSelect" });
const onChange = (e: React.ChangeEvent<HTMLSelectElement>) => {
navigate(`/p/${e.target.value}`);
};
return (
<EuiSelect
isLoading={isLoading}
hasNoInitialSelection={currentProject === undefined}
fullWidth={true}
id={basicSelectId}
options={options}
value={currentProject?.id || ""}
onChange={(e) => onChange(e)}
aria-label="Select a Feast Project"
/>
);
};
export default ProjectSelector;