mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-23 04:21:52 +00:00
78 lines
2.1 KiB
TypeScript
78 lines
2.1 KiB
TypeScript
"use client";
|
|
|
|
import { Icon } from "@iconify/react";
|
|
import { Input } from "@nextui-org/react";
|
|
import React, { useState } from "react";
|
|
import { Control, FieldPath, FieldValues } from "react-hook-form";
|
|
|
|
import { FormControl, FormField, FormMessage } from "@/components/ui/form";
|
|
|
|
interface CustomInputProps<T extends FieldValues> {
|
|
control: Control<T>;
|
|
name: FieldPath<T>;
|
|
label?: string;
|
|
labelPlacement?: "inside" | "outside";
|
|
variant?: "flat" | "bordered" | "underlined" | "faded";
|
|
type?: string;
|
|
placeholder?: string;
|
|
password?: boolean;
|
|
isRequired?: boolean;
|
|
isInvalid?: boolean;
|
|
}
|
|
|
|
export const CustomInput = <T extends FieldValues>({
|
|
control,
|
|
name,
|
|
type = "text",
|
|
label = name,
|
|
labelPlacement = "inside",
|
|
placeholder,
|
|
variant = "bordered",
|
|
password = false,
|
|
isRequired = true,
|
|
isInvalid,
|
|
}: CustomInputProps<T>) => {
|
|
const [isVisible, setIsVisible] = useState(false);
|
|
|
|
const toggleVisibility = () => setIsVisible(!isVisible);
|
|
|
|
const inputLabel = password ? "Password" : label;
|
|
const inputType = password ? (isVisible ? "text" : "password") : type;
|
|
const inputPlaceholder = password ? "Enter your password" : placeholder;
|
|
const inputIsRequired = password ? true : isRequired;
|
|
|
|
const endContent = password && (
|
|
<button type="button" onClick={toggleVisibility}>
|
|
<Icon
|
|
className="pointer-events-none text-2xl text-default-400"
|
|
icon={isVisible ? "solar:eye-closed-linear" : "solar:eye-bold"}
|
|
/>
|
|
</button>
|
|
);
|
|
|
|
return (
|
|
<FormField
|
|
control={control}
|
|
name={name}
|
|
render={({ field }) => (
|
|
<>
|
|
<FormControl>
|
|
<Input
|
|
isRequired={inputIsRequired}
|
|
label={inputLabel}
|
|
labelPlacement={labelPlacement}
|
|
placeholder={inputPlaceholder}
|
|
type={inputType}
|
|
variant={variant}
|
|
isInvalid={isInvalid}
|
|
endContent={endContent}
|
|
{...field}
|
|
/>
|
|
</FormControl>
|
|
<FormMessage className="text-system-error dark:text-system-error" />
|
|
</>
|
|
)}
|
|
/>
|
|
);
|
|
};
|