mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
163 lines
5.3 KiB
TypeScript
163 lines
5.3 KiB
TypeScript
import { FC, useEffect, useRef, useState } from "react";
|
|
import { Placement } from "@popperjs/core";
|
|
import { observer } from "mobx-react";
|
|
import { usePopper } from "react-popper";
|
|
// components
|
|
import { Check, Search } from "lucide-react";
|
|
import { Combobox } from "@headlessui/react";
|
|
// icon
|
|
import { TCycleGroups } from "@plane/types";
|
|
// ui
|
|
import { ContrastIcon, CycleGroupIcon } from "@plane/ui";
|
|
// store hooks
|
|
import { useApplication, useCycle } from "@/hooks/store";
|
|
// types
|
|
|
|
type DropdownOptions =
|
|
| {
|
|
value: string | null;
|
|
query: string;
|
|
content: JSX.Element;
|
|
}[]
|
|
| undefined;
|
|
|
|
type CycleOptionsProps = {
|
|
projectId: string;
|
|
referenceElement: HTMLButtonElement | null;
|
|
placement: Placement | undefined;
|
|
isOpen: boolean;
|
|
};
|
|
|
|
export const CycleOptions: FC<CycleOptionsProps> = observer((props) => {
|
|
const { projectId, isOpen, referenceElement, placement } = props;
|
|
|
|
//state hooks
|
|
const [query, setQuery] = useState("");
|
|
const [popperElement, setPopperElement] = useState<HTMLDivElement | null>(null);
|
|
const inputRef = useRef<HTMLInputElement | null>(null);
|
|
|
|
// store hooks
|
|
const {
|
|
router: { workspaceSlug },
|
|
} = useApplication();
|
|
const { getProjectCycleIds, fetchAllCycles, getCycleById } = useCycle();
|
|
|
|
useEffect(() => {
|
|
if (isOpen) {
|
|
onOpen();
|
|
inputRef.current && inputRef.current.focus();
|
|
}
|
|
}, [isOpen]);
|
|
|
|
// popper-js init
|
|
const { styles, attributes } = usePopper(referenceElement, popperElement, {
|
|
placement: placement ?? "bottom-start",
|
|
modifiers: [
|
|
{
|
|
name: "preventOverflow",
|
|
options: {
|
|
padding: 12,
|
|
},
|
|
},
|
|
],
|
|
});
|
|
|
|
const cycleIds = (getProjectCycleIds(projectId) ?? [])?.filter((cycleId) => {
|
|
const cycleDetails = getCycleById(cycleId);
|
|
return cycleDetails?.status ? (cycleDetails?.status.toLowerCase() != "completed" ? true : false) : true;
|
|
});
|
|
|
|
const onOpen = () => {
|
|
if (workspaceSlug && !cycleIds) fetchAllCycles(workspaceSlug, projectId);
|
|
};
|
|
|
|
const searchInputKeyDown = (e: React.KeyboardEvent<HTMLInputElement>) => {
|
|
if (query !== "" && e.key === "Escape") {
|
|
e.stopPropagation();
|
|
setQuery("");
|
|
}
|
|
};
|
|
|
|
const options: DropdownOptions = cycleIds?.map((cycleId) => {
|
|
const cycleDetails = getCycleById(cycleId);
|
|
const cycleStatus = cycleDetails?.status ? (cycleDetails.status.toLocaleLowerCase() as TCycleGroups) : "draft";
|
|
|
|
return {
|
|
value: cycleId,
|
|
query: `${cycleDetails?.name}`,
|
|
content: (
|
|
<div className="flex items-center gap-2">
|
|
<CycleGroupIcon cycleGroup={cycleStatus} className="h-3.5 w-3.5 flex-shrink-0" />
|
|
<span className="flex-grow truncate">{cycleDetails?.name}</span>
|
|
</div>
|
|
),
|
|
};
|
|
});
|
|
options?.unshift({
|
|
value: null,
|
|
query: "No cycle",
|
|
content: (
|
|
<div className="flex items-center gap-2">
|
|
<ContrastIcon className="h-3 w-3 flex-shrink-0" />
|
|
<span className="flex-grow truncate">No cycle</span>
|
|
</div>
|
|
),
|
|
});
|
|
|
|
const filteredOptions =
|
|
query === "" ? options : options?.filter((o) => o.query.toLowerCase().includes(query.toLowerCase()));
|
|
|
|
return (
|
|
<Combobox.Options className="fixed z-10" static>
|
|
<div
|
|
className="my-1 w-48 rounded border-[0.5px] border-custom-border-300 bg-custom-background-100 px-2 py-2.5 text-xs shadow-custom-shadow-rg focus:outline-none"
|
|
ref={setPopperElement}
|
|
style={styles.popper}
|
|
{...attributes.popper}
|
|
>
|
|
<div className="flex items-center gap-1.5 rounded border border-custom-border-100 bg-custom-background-90 px-2">
|
|
<Search className="h-3.5 w-3.5 text-custom-text-400" strokeWidth={1.5} />
|
|
<Combobox.Input
|
|
as="input"
|
|
ref={inputRef}
|
|
className="w-full bg-transparent py-1 text-xs text-custom-text-200 placeholder:text-custom-text-400 focus:outline-none"
|
|
value={query}
|
|
onChange={(e) => setQuery(e.target.value)}
|
|
placeholder="Search"
|
|
displayValue={(assigned: any) => assigned?.name}
|
|
onKeyDown={searchInputKeyDown}
|
|
/>
|
|
</div>
|
|
<div className="mt-2 max-h-48 space-y-1 overflow-y-scroll">
|
|
{filteredOptions ? (
|
|
filteredOptions.length > 0 ? (
|
|
filteredOptions.map((option) => (
|
|
<Combobox.Option
|
|
key={option.value}
|
|
value={option.value}
|
|
className={({ active, selected }) =>
|
|
`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 }) => (
|
|
<>
|
|
<span className="flex-grow truncate">{option.content}</span>
|
|
{selected && <Check className="h-3.5 w-3.5 flex-shrink-0" />}
|
|
</>
|
|
)}
|
|
</Combobox.Option>
|
|
))
|
|
) : (
|
|
<p className="text-custom-text-400 italic py-1 px-1.5">No matches found</p>
|
|
)
|
|
) : (
|
|
<p className="text-custom-text-400 italic py-1 px-1.5">Loading...</p>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</Combobox.Options>
|
|
);
|
|
});
|