import { Fragment, ReactNode, useEffect, useRef, useState } from "react"; import { observer } from "mobx-react-lite"; import { Combobox } from "@headlessui/react"; import { usePopper } from "react-popper"; import { Placement } from "@popperjs/core"; import { Check, ChevronDown, Search } from "lucide-react"; // hooks import { useApplication, useCycle } from "hooks/store"; import { useDropdownKeyDown } from "hooks/use-dropdown-key-down"; import useOutsideClickDetector from "hooks/use-outside-click-detector"; // icons import { ContrastIcon } from "@plane/ui"; // helpers import { cn } from "helpers/common.helper"; // types import { ICycle } from "@plane/types"; import { TButtonVariants } from "./types"; type Props = { button?: ReactNode; buttonClassName?: string; buttonContainerClassName?: string; buttonVariant: TButtonVariants; className?: string; disabled?: boolean; dropdownArrow?: boolean; onChange: (val: string | null) => void; placement?: Placement; projectId: string; value: string | null; tabIndex?: number; }; type ButtonProps = { className?: string; cycle: ICycle | null; hideText?: boolean; dropdownArrow: boolean; }; type DropdownOptions = | { value: string | null; query: string; content: JSX.Element; }[] | undefined; const BorderButton = (props: ButtonProps) => { const { className, cycle, dropdownArrow, hideText = false } = props; return (
{!hideText && {cycle?.name ?? "Cycle"}} {dropdownArrow &&
); }; const BackgroundButton = (props: ButtonProps) => { const { className, cycle, dropdownArrow, hideText = false } = props; return (
{!hideText && {cycle?.name ?? "Cycle"}} {dropdownArrow &&
); }; const TransparentButton = (props: ButtonProps) => { const { className, cycle, dropdownArrow, hideText = false } = props; return (
{!hideText && {cycle?.name ?? "Cycle"}} {dropdownArrow &&
); }; export const CycleDropdown: React.FC = observer((props) => { const { button, buttonClassName, buttonContainerClassName, buttonVariant, className = "", disabled = false, dropdownArrow = false, onChange, placement, projectId, value, tabIndex, } = props; // states const [query, setQuery] = useState(""); const [isOpen, setIsOpen] = useState(false); // refs const dropdownRef = useRef(null); // popper-js refs const [referenceElement, setReferenceElement] = useState(null); const [popperElement, setPopperElement] = useState(null); // popper-js init const { styles, attributes } = usePopper(referenceElement, popperElement, { placement: placement ?? "bottom-start", modifiers: [ { name: "preventOverflow", options: { padding: 12, }, }, ], }); // store hooks const { router: { workspaceSlug }, } = useApplication(); const { getProjectCycleIds, fetchAllCycles, getCycleById } = useCycle(); const cycleIds = getProjectCycleIds(projectId); const options: DropdownOptions = cycleIds?.map((cycleId) => { const cycleDetails = getCycleById(cycleId); return { value: cycleId, query: `${cycleDetails?.name}`, content: (
{cycleDetails?.name}
), }; }); options?.unshift({ value: null, query: "No cycle", content: (
No cycle
), }); const filteredOptions = query === "" ? options : options?.filter((o) => o.query.toLowerCase().includes(query.toLowerCase())); // fetch cycles of the project if not already present in the store useEffect(() => { if (!workspaceSlug) return; if (!cycleIds) fetchAllCycles(workspaceSlug, projectId); }, [cycleIds, fetchAllCycles, projectId, workspaceSlug]); const selectedCycle = value ? getCycleById(value) : null; const openDropdown = () => { setIsOpen(true); if (referenceElement) referenceElement.focus(); }; const closeDropdown = () => setIsOpen(false); const handleKeyDown = useDropdownKeyDown(openDropdown, closeDropdown, isOpen); useOutsideClickDetector(dropdownRef, closeDropdown); return ( {button ? ( ) : ( )} {isOpen && (
setQuery(e.target.value)} placeholder="Search" displayValue={(assigned: any) => assigned?.name} />
{filteredOptions ? ( filteredOptions.length > 0 ? ( filteredOptions.map((option) => ( `w-full truncate flex items-center justify-between gap-2 rounded px-1 py-1.5 cursor-pointer select-none ${ active ? "bg-custom-background-80" : "" } ${selected ? "text-custom-text-100" : "text-custom-text-200"}` } > {({ selected }) => ( <> {option.content} {selected && } )} )) ) : (

No matches found

) ) : (

Loading...

)}
)}
); });