import { FC, useRef, useState } from "react"; import { Combobox } from "@headlessui/react"; import { ChevronDown, Search, X, Check } from "lucide-react"; import { observer } from "mobx-react-lite"; // components import { Tooltip, StateGroupIcon } from "@plane/ui"; // hooks import useDynamicDropdownPosition from "hooks/use-dynamic-dropdown"; // types import { IState } from "types"; interface IFiltersOption { id: string; title: string; group: string; color: string | null; } export interface IIssuePropertyState { value?: any; onChange?: (id: any, data: IFiltersOption) => void; disabled?: boolean; list?: any; className?: string; buttonClassName?: string; optionsClassName?: string; dropdownArrow?: boolean; } export const IssuePropertyState: FC = observer((props) => { const { value, onChange, disabled, list, className, buttonClassName, optionsClassName, dropdownArrow = true, } = props; const dropdownBtn = useRef(null); const dropdownOptions = useRef(null); const [isOpen, setIsOpen] = useState(false); const [search, setSearch] = useState(""); const options: IFiltersOption[] | [] = (list && list?.length > 0 && list.map((_state: IState) => ({ id: _state?.id, title: _state?.name, group: _state?.group, color: _state?.color || null, }))) || []; useDynamicDropdownPosition(isOpen, () => setIsOpen(false), dropdownBtn, dropdownOptions); const selectedOption: IFiltersOption | null | undefined = (value && options.find((_state: IFiltersOption) => _state.id === value)) || null; const filteredOptions: IFiltersOption[] = search === "" ? options && options.length > 0 ? options : [] : options && options.length > 0 ? options.filter((_state: IFiltersOption) => _state.title.toLowerCase().replace(/\s+/g, "").includes(search.toLowerCase().replace(/\s+/g, "")) ) : []; return ( { if (onChange && selectedOption) onChange(data, selectedOption); }} disabled={disabled} > {({ open }: { open: boolean }) => { if (open) { if (!isOpen) setIsOpen(true); } else if (isOpen) setIsOpen(false); return ( <> {selectedOption ? (
{selectedOption?.title}
) : (
Select State
)} {dropdownArrow && !disabled && (
)}
{options && options.length > 0 ? ( <>
setSearch(e.target.value)} placeholder="Search" displayValue={(assigned: any) => assigned?.name} />
{search && search.length > 0 && (
setSearch("")} className="flex-shrink-0 flex justify-center items-center w-[16px] h-[16px] rounded-sm cursor-pointer hover:bg-custom-background-80" >
)}
{filteredOptions ? ( filteredOptions.length > 0 ? ( filteredOptions.map((option) => ( `cursor-pointer select-none truncate rounded px-1 py-1.5 ${ active || selected ? "bg-custom-background-80" : "" } ${selected ? "text-custom-text-100" : "text-custom-text-200"}` } > {({ selected }) => (
{option.title}
{selected && (
)}
)}
)) ) : (

No matching results

) ) : (

Loading...

)}
) : (

No options available.

)}
); }}
); });