mirror of https://github.com/ctk-hq/ctk
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
143 lines
3.6 KiB
TypeScript
143 lines
3.6 KiB
TypeScript
import TextField from "../../global/FormElements/InputField";
|
|
import { useCallback } from "react";
|
|
import { PlusIcon } from "@heroicons/react/outline";
|
|
import { Button, styled } from "@mui/joy";
|
|
import { useFormikContext } from "formik";
|
|
import Record from "../../Record";
|
|
import { IEditServiceForm } from "../../../types";
|
|
|
|
const Fields = styled("div")`
|
|
display: flex;
|
|
flex-direction: column;
|
|
row-gap: ${({ theme }) => theme.spacing(1)};
|
|
`;
|
|
|
|
const ImageNameGroup = styled("div")`
|
|
display: flex;
|
|
flex-direction: row;
|
|
column-gap: ${({ theme }) => theme.spacing(1)};
|
|
width: 100%;
|
|
`;
|
|
|
|
const Group = styled("div")`
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
`;
|
|
|
|
const GroupTitle = styled("h5")`
|
|
font-size: 0.75rem;
|
|
color: #374151;
|
|
font-weight: 500;
|
|
width: 100%;
|
|
text-align: left;
|
|
`;
|
|
|
|
const Records = styled("div")`
|
|
display: flex;
|
|
flex-direction: column;
|
|
row-gap: ${({ theme }) => theme.spacing(1)};
|
|
`;
|
|
|
|
const AddButton = styled(Button)`
|
|
width: 140px;
|
|
margin-top: ${({ theme }) => theme.spacing(2)};
|
|
`;
|
|
|
|
const Description = styled("p")`
|
|
margin-top: ${({ theme }) => theme.spacing(2)};
|
|
text-align: center;
|
|
color: #7a7a7a;
|
|
font-size: 14px;
|
|
`;
|
|
|
|
const General = () => {
|
|
const formik = useFormikContext<IEditServiceForm>();
|
|
const { ports } = formik.values;
|
|
|
|
const handleNewPort = useCallback(() => {
|
|
formik.setFieldValue(`ports[${ports.length}]`, {
|
|
hostPort: "",
|
|
containerPort: "",
|
|
protocol: ""
|
|
});
|
|
}, [formik]);
|
|
|
|
const handleRemovePort = useCallback(
|
|
(index: number) => {
|
|
const newPorts = ports.filter(
|
|
(_: unknown, currentIndex: number) => currentIndex != index
|
|
);
|
|
formik.setFieldValue(`ports`, newPorts);
|
|
},
|
|
[formik]
|
|
);
|
|
|
|
const emptyPorts = ports && ports.length === 0 ? true : false;
|
|
|
|
return (
|
|
<>
|
|
<Fields>
|
|
<TextField label="Service name" name="serviceName" required={true} />
|
|
<ImageNameGroup>
|
|
<TextField
|
|
label="Image name"
|
|
name="imageName"
|
|
required={true}
|
|
style={{ minWidth: 400 }}
|
|
/>
|
|
<TextField label="Image tag" name="imageTag" />
|
|
</ImageNameGroup>
|
|
<TextField
|
|
label="Container name"
|
|
name="containerName"
|
|
required={true}
|
|
/>
|
|
<Group>
|
|
<GroupTitle>Ports</GroupTitle>
|
|
{!emptyPorts && (
|
|
<Records>
|
|
{ports.map((_: unknown, index: number) => (
|
|
<Record
|
|
key={index}
|
|
index={index}
|
|
fields={[
|
|
{
|
|
name: `ports[${index}].hostPort`,
|
|
placeholder: "Host Port",
|
|
required: true
|
|
},
|
|
{
|
|
name: `ports[${index}].containerPort`,
|
|
placeholder: "Container Port"
|
|
},
|
|
{
|
|
name: `ports[${index}].protocol`,
|
|
placeholder: "Protocol"
|
|
}
|
|
]}
|
|
onRemove={handleRemovePort}
|
|
/>
|
|
))}
|
|
</Records>
|
|
)}
|
|
{emptyPorts && (
|
|
<Description>
|
|
This service does not have any ports.
|
|
<br />
|
|
Click "+ New port" to add a new port.
|
|
</Description>
|
|
)}
|
|
|
|
<AddButton size="sm" variant="plain" onClick={handleNewPort}>
|
|
<PlusIcon className="h-4 w-4 mr-2" />
|
|
New port
|
|
</AddButton>
|
|
</Group>
|
|
</Fields>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default General;
|