mirror of
https://github.com/OpenCut-app/OpenCut.git
synced 2026-07-13 21:52:53 +02:00
59 lines
2.2 KiB
TypeScript
59 lines
2.2 KiB
TypeScript
import * as React from "react";
|
|
import { Eye, EyeOff } from "lucide-react";
|
|
|
|
import { cn } from "../../lib/utils";
|
|
import { Button } from "./button";
|
|
|
|
interface InputProps extends React.ComponentProps<"input"> {
|
|
showPassword?: boolean;
|
|
onShowPasswordChange?: (show: boolean) => void;
|
|
}
|
|
|
|
const Input = React.forwardRef<HTMLInputElement, InputProps>(
|
|
(
|
|
{ className, type, showPassword, onShowPasswordChange, value, ...props },
|
|
ref
|
|
) => {
|
|
const isPassword = type === "password";
|
|
const showPasswordToggle = isPassword && onShowPasswordChange;
|
|
const inputType = isPassword && showPassword ? "text" : type;
|
|
|
|
return (
|
|
<div className={showPassword ? "relative w-full" : ""}>
|
|
<input
|
|
type={inputType}
|
|
className={cn(
|
|
"file:text-foreground placeholder:text-muted-foreground selection:bg-primary selection:text-primary-foreground dark:bg-input/30 border-input flex h-9 w-full min-w-0 rounded-md border bg-transparent px-3 py-1 text-base shadow-xs transition-[color,box-shadow] outline-none file:inline-flex file:h-7 file:border-0 file:bg-transparent file:text-sm file:font-medium disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50 md:text-sm",
|
|
"focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[2px]",
|
|
"aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive",
|
|
showPasswordToggle && "pr-10",
|
|
className
|
|
)}
|
|
ref={ref}
|
|
value={value}
|
|
{...props}
|
|
/>
|
|
{showPasswordToggle && (
|
|
<Button
|
|
type="button"
|
|
variant="text"
|
|
size="icon"
|
|
onClick={() => onShowPasswordChange?.(!showPassword)}
|
|
className="absolute right-0 top-0 h-full px-3 text-muted-foreground hover:text-foreground"
|
|
aria-label={showPassword ? "Hide password" : "Show password"}
|
|
>
|
|
{showPassword ? (
|
|
<Eye className="h-4 w-4" />
|
|
) : (
|
|
<EyeOff className="h-4 w-4" />
|
|
)}
|
|
</Button>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
);
|
|
Input.displayName = "Input";
|
|
|
|
export { Input };
|