Files
dokploy/components/ui/secrets.tsx
2024-07-22 21:12:26 -06:00

79 lines
1.8 KiB
TypeScript

import { CodeEditor } from "@/components/shared/code-editor";
import {
CardContent,
CardDescription,
CardHeader,
CardTitle,
} from "@/components/ui/card";
import {
FormControl,
FormField,
FormItem,
FormMessage,
} from "@/components/ui/form";
import { Toggle } from "@/components/ui/toggle";
import { EyeIcon, EyeOffIcon } from "lucide-react";
import { type CSSProperties, type ReactNode, useState } from "react";
import { useFormContext } from "react-hook-form";
interface Props {
name: string;
title: string;
description: ReactNode;
placeholder: string;
}
export const Secrets = (props: Props) => {
const [isVisible, setIsVisible] = useState(true);
const form = useFormContext<Record<string, string>>();
return (
<>
<CardHeader className="flex flex-row w-full items-center justify-between">
<div>
<CardTitle className="text-xl">{props.title}</CardTitle>
<CardDescription>{props.description}</CardDescription>
</div>
<Toggle
aria-label="Toggle bold"
pressed={isVisible}
onPressedChange={setIsVisible}
>
{isVisible ? (
<EyeOffIcon className="h-4 w-4 text-muted-foreground" />
) : (
<EyeIcon className="h-4 w-4 text-muted-foreground" />
)}
</Toggle>
</CardHeader>
<CardContent className="w-full space-y-4">
<FormField
control={form.control}
name={props.name}
render={({ field }) => (
<FormItem className="w-full">
<FormControl>
<CodeEditor
style={
{
WebkitTextSecurity: isVisible ? "disc" : null,
} as CSSProperties
}
language="properties"
disabled={isVisible}
placeholder={props.placeholder}
className="h-96 font-mono"
{...field}
/>
</FormControl>
<FormMessage />
</FormItem>
)}
/>
</CardContent>
</>
);
};