import React, { useRef, useState } from "react"; // headless ui import { Combobox } from "@headlessui/react"; // hooks import useDynamicDropdownPosition from "hooks/use-dynamic-dropdown"; // icons import { Check, Search, XIcon } from "lucide-react"; // types import { ICustomAttribute } from "types"; type Props = { attributeDetails: ICustomAttribute; className?: string; onChange: (val: string | string[] | undefined) => void; } & ( | { multiple?: false; value: string | undefined; } | { multiple?: true; value: string[] | undefined } ); export const CustomSelectAttribute: React.FC = (props) => { const { attributeDetails, className = "", multiple = false, onChange, value } = props; const [isOpen, setIsOpen] = useState(false); const [query, setQuery] = useState(""); const dropdownButtonRef = useRef(null); const dropdownOptionsRef = useRef(null); const options = attributeDetails.children.filter((option) => option.display_name.toLowerCase().includes(query.toLowerCase()) ); const comboboxProps: any = { onChange, value, }; useDynamicDropdownPosition(isOpen, () => setIsOpen(false), dropdownButtonRef, dropdownOptionsRef); if (multiple) comboboxProps.multiple = true; return ( {({ open }: { open: boolean }) => { if (open) { if (!isOpen) setIsOpen(true); } else if (isOpen) setIsOpen(false); return ( <> {value ? ( Array.isArray(value) ? ( value.length > 0 ? (
{value.map((val) => { const optionDetails = options.find((o) => o.id === val); return (
{optionDetails?.display_name} {((attributeDetails.is_required && value.length > 1) || !attributeDetails.is_required) && ( { e.preventDefault(); e.stopPropagation(); onChange(value.filter((v) => v !== val)); }} > )}
); })}
) : (
Select {attributeDetails.display_name}
) ) : (
o.id === value)?.color}40`, }} > {options.find((o) => o.id === value)?.display_name} {!attributeDetails.is_required && ( { e.preventDefault(); e.stopPropagation(); onChange(undefined); }} > )}
) ) : (
Select {attributeDetails.display_name}
)}
setQuery(e.target.value)} placeholder="Type to search..." displayValue={(assigned: any) => assigned?.name} />
{(options ?? []).map((option) => ( `flex items-center justify-between gap-1 cursor-pointer select-none truncate rounded px-1 py-1.5 w-full ${ active ? "bg-custom-background-80" : "" }` } > {({ selected }) => ( <> {option.display_name} {selected && } )} ))}
); }}
); };