mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
141 lines
5.6 KiB
TypeScript
141 lines
5.6 KiB
TypeScript
import { faCircle } from "@fortawesome/free-regular-svg-icons";
|
|
import { faCheck, faEye, faEyeSlash, faKey, faXmark } from "@fortawesome/free-solid-svg-icons";
|
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
|
import { twMerge } from "tailwind-merge";
|
|
|
|
import { Button, TableContainer, Td, Tr } from "@app/components/v2";
|
|
import { useToggle } from "@app/hooks";
|
|
import { DecryptedSecret } from "@app/hooks/api/secrets/types";
|
|
|
|
import { SecretEditRow } from "./SecretEditRow";
|
|
|
|
type Props = {
|
|
secretKey: string;
|
|
environments: { name: string; slug: string }[];
|
|
expandableColWidth: number;
|
|
getSecretByKey: (slug: string, key: string) => DecryptedSecret | undefined;
|
|
onSecretCreate: (env: string, key: string, value: string) => Promise<void>;
|
|
onSecretUpdate: (env: string, key: string, value: string) => Promise<void>;
|
|
onSecretDelete: (env: string, key: string) => Promise<void>;
|
|
};
|
|
|
|
export const SecretOverviewTableRow = ({
|
|
secretKey,
|
|
environments = [],
|
|
getSecretByKey,
|
|
onSecretUpdate,
|
|
onSecretCreate,
|
|
onSecretDelete,
|
|
expandableColWidth
|
|
}: Props) => {
|
|
const [isFormExpanded, setIsFormExpanded] = useToggle();
|
|
const totalCols = environments.length + 1; // secret key row
|
|
const [isSecretVisible, setIsSecretVisible] = useToggle();
|
|
|
|
return (
|
|
<>
|
|
<Tr isHoverable isSelectable onClick={() => setIsFormExpanded.toggle()} className="group">
|
|
<Td className="sticky left-0 z-10 border-x border-mineshaft-700 bg-mineshaft-800 bg-clip-padding py-2.5 group-hover:bg-mineshaft-700">
|
|
<div className="flex items-center space-x-5">
|
|
<div className="text-blue-300/70">
|
|
<FontAwesomeIcon icon={faKey} />
|
|
</div>
|
|
<div>{secretKey}</div>
|
|
</div>
|
|
</Td>
|
|
{environments.map(({ slug }, i) => {
|
|
const secret = getSecretByKey(slug, secretKey);
|
|
const isSecretPresent = Boolean(secret);
|
|
const isSecretEmpty = secret?.value === "";
|
|
return (
|
|
<Td
|
|
key={`sec-overview-${slug}-${i + 1}-value`}
|
|
className={twMerge(
|
|
"border-x border-mineshaft-600 py-3 group-hover:bg-mineshaft-700",
|
|
isSecretPresent && !isSecretEmpty ? "text-green-600" : "",
|
|
isSecretPresent && isSecretEmpty ? "text-yellow" : "",
|
|
!isSecretPresent && !isSecretEmpty ? "text-red-600" : ""
|
|
)}
|
|
>
|
|
<div className="flex justify-center">
|
|
{!isSecretEmpty && <FontAwesomeIcon icon={!isSecretPresent ? faCheck : faXmark} />}
|
|
{isSecretEmpty && <FontAwesomeIcon icon={faCircle} />}
|
|
</div>
|
|
</Td>
|
|
);
|
|
})}
|
|
</Tr>
|
|
{isFormExpanded && (
|
|
<Tr>
|
|
<Td colSpan={totalCols}>
|
|
<div
|
|
className="rounded-md bg-bunker-700 p-2"
|
|
style={{
|
|
width: `calc(${expandableColWidth}px - 2rem)`,
|
|
position: "sticky",
|
|
left: "1.25rem",
|
|
right: "1.25rem"
|
|
}}
|
|
>
|
|
<TableContainer>
|
|
<table className="secret-table">
|
|
<thead>
|
|
<tr className="h-10 border-b-2 border-mineshaft-600">
|
|
<th
|
|
style={{ padding: "0.5rem 1rem" }}
|
|
className="min-table-row min-w-[11rem]"
|
|
>
|
|
Environment
|
|
</th>
|
|
<th style={{ padding: "0.5rem 1rem" }} className="border-none">Value</th>
|
|
<div className="absolute top-0 right-0 w-min ml-auto mt-1 mr-1">
|
|
<Button
|
|
variant="outline_bg"
|
|
className="p-1"
|
|
leftIcon={<FontAwesomeIcon icon={isSecretVisible ? faEyeSlash : faEye} />}
|
|
onClick={() => setIsSecretVisible.toggle()}
|
|
>
|
|
{isSecretVisible ? "Hide Values" : "Reveal Values"}
|
|
</Button>
|
|
</div>
|
|
</tr>
|
|
</thead>
|
|
<tbody className="border-t-2 border-mineshaft-600">
|
|
{environments.map(({ name, slug }) => {
|
|
const secret = getSecretByKey(slug, secretKey);
|
|
const isCreatable = !secret;
|
|
|
|
return (
|
|
<tr
|
|
key={`secret-expanded-${slug}-${secretKey}`}
|
|
className="hover:bg-mineshaft-700"
|
|
>
|
|
<td className="flex" style={{ padding: "0.25rem 1rem" }}>
|
|
<div className="flex h-8 items-center">{name}</div>
|
|
</td>
|
|
<td className="h-8 col-span-2 w-full">
|
|
<SecretEditRow
|
|
isVisible={isSecretVisible}
|
|
secretName={secretKey}
|
|
defaultValue={secret?.value}
|
|
isCreatable={isCreatable}
|
|
onSecretDelete={onSecretDelete}
|
|
onSecretCreate={onSecretCreate}
|
|
onSecretUpdate={onSecretUpdate}
|
|
environment={slug}
|
|
/>
|
|
</td>
|
|
</tr>
|
|
);
|
|
})}
|
|
</tbody>
|
|
</table>
|
|
</TableContainer>
|
|
</div>
|
|
</Td>
|
|
</Tr>
|
|
)}
|
|
</>
|
|
);
|
|
};
|