import { PlusIcon, EyeOpenIcon, EyeClosedIcon } from "@radix-ui/react-icons"; import { useEffect, useRef, useState } from "react"; import { cn } from "@/util/utils"; import { Input } from "./ui/input"; import { Popover, PopoverContent, PopoverTrigger } from "./ui/popover"; import { WorkflowBlockParameterSelect } from "@/routes/workflows/editor/nodes/WorkflowBlockParameterSelect"; type Props = Omit, "onChange"> & { onChange: (value: string) => void; nodeId: string; }; function WorkflowBlockInput(props: Props) { const { nodeId, onChange, type, value, ...inputProps } = props; const [showPassword, setShowPassword] = useState(false); // Buffer input value locally so keystrokes update the DOM immediately // without waiting for the React Flow store roundtrip (which can reset the // cursor position — especially in nodes like ConditionalNode that replace // complex nested data on every keystroke). const [localValue, setLocalValue] = useState(value ?? ""); const isLocalChangeRef = useRef(false); useEffect(() => { if (!isLocalChangeRef.current) { setLocalValue(value ?? ""); } isLocalChangeRef.current = false; }, [value]); const isPasswordField = type === "password"; const actualType = isPasswordField && showPassword ? "text" : type; return (
{ isLocalChangeRef.current = true; setLocalValue(event.target.value); onChange(event.target.value); }} />
{isPasswordField && (
setShowPassword(!showPassword)} > {showPassword ? ( ) : ( )}
)}
{ const newValue = `${localValue}{{${parameterKey}}}`; isLocalChangeRef.current = true; setLocalValue(newValue); onChange(newValue); }} />
); } export { WorkflowBlockInput };