-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathEnvironmentVariableSelector.tsx
More file actions
155 lines (148 loc) · 5.05 KB
/
Copy pathEnvironmentVariableSelector.tsx
File metadata and controls
155 lines (148 loc) · 5.05 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
import {
Card,
CardContent,
CardHeader,
IconButton,
Paper,
Stack,
TableBody,
TableCell,
TableContainer,
TableHead,
TableRow,
TextField,
} from "@mui/material";
import { NoWrapTable as Table } from "../../components/NoWrapTable";
import Iconify from "../Iconify";
import { Dispatch, SetStateAction } from "react";
import { EnvVar } from "../../types";
import { useTranslation } from "react-i18next";
export type EnvironmentVariableSelectorProps = {
envs: EnvVar[];
setEnvs: Dispatch<SetStateAction<EnvVar[]>>;
currentEnv: EnvVar;
setCurrentEnv: Dispatch<SetStateAction<EnvVar>>;
};
export default function EnvironmentVariableSelector({
envs,
setEnvs,
currentEnv,
setCurrentEnv,
}: EnvironmentVariableSelectorProps) {
const { t } = useTranslation();
return (
<Card sx={{ boxShadow: 20 }}>
<CardHeader
title={t("create-deployment-env")}
subheader={t("create-deployment-env-subheader")}
/>
<CardContent>
<TableContainer component={Paper}>
<Table sx={{ minWidth: 650 }} aria-label="simple table">
<TableHead>
<TableRow>
<TableCell>{t("create-deployment-env-key")}</TableCell>
<TableCell>{t("create-deployment-env-value")}</TableCell>
<TableCell align="right">{t("admin-actions")}</TableCell>
</TableRow>
</TableHead>
<TableBody>
{envs.map((env) => (
<TableRow
key={"env_row_" + env.name}
sx={{
"&:last-child td, &:last-child th": { border: 0 },
}}
>
<TableCell component="th" scope="row">
<b style={{ fontFamily: "monospace" }}>{env.name}</b>
</TableCell>
<TableCell>
<b style={{ fontFamily: "monospace" }}>{env.value}</b>
</TableCell>
<TableCell align="right">
<Stack
direction="row"
spacing={1}
useFlexGap
alignItems={"center"}
justifyContent={"flex-end"}
>
<IconButton
color="primary"
aria-label="edit env"
component="label"
onClick={() => {
setCurrentEnv({ name: env.name, value: env.value });
setEnvs(
envs.filter((item) => item.name !== env.name)
);
}}
>
<Iconify icon="mdi:pencil" />
</IconButton>
<IconButton
color="error"
aria-label="delete env"
component="label"
onClick={() =>
setEnvs(envs.filter((item) => item.name !== env.name))
}
>
<Iconify icon="mdi:delete" />
</IconButton>
</Stack>
</TableCell>
</TableRow>
))}
<TableRow
sx={{
"&:last-child td, &:last-child th": { border: 0 },
}}
>
<TableCell component="th" scope="row">
<TextField
label={t("admin-name")}
variant="outlined"
value={currentEnv.name}
onChange={(e) => {
setCurrentEnv({ ...currentEnv, name: e.target.value });
}}
/>
</TableCell>
<TableCell>
<TextField
label={t("create-deployment-env-value")}
variant="outlined"
value={currentEnv.value}
onChange={(e) => {
setCurrentEnv({ ...currentEnv, value: e.target.value });
}}
fullWidth
/>
</TableCell>
<TableCell align="right">
<IconButton
color="primary"
component="label"
disabled={
!(currentEnv.name != "" && currentEnv.value != "")
}
onClick={() => {
if (!(currentEnv.name != "" && currentEnv.value != ""))
return;
setEnvs([...envs, currentEnv]);
setCurrentEnv({ name: "", value: "" });
}}
>
<Iconify icon="mdi:content-save" />
</IconButton>
</TableCell>
</TableRow>
</TableBody>
</Table>
</TableContainer>
</CardContent>
</Card>
);
}