forked from github/plane
41b7544cfc
* feat: search endpoint for parent issue selection * feat: blocker and blocked by search endpoint * refactor: blocker and blocked by components and types * refactor: blocker and blocked by components, feeat: cycle and module new search endpoints * chore: sub-issues param change * style: show selected issues list
202 lines
7.3 KiB
TypeScript
202 lines
7.3 KiB
TypeScript
import React, { useEffect, useState } from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
// headless ui
|
|
import { Combobox, Dialog, Transition } from "@headlessui/react";
|
|
// services
|
|
import projectService from "services/project.service";
|
|
// hooks
|
|
import useDebounce from "hooks/use-debounce";
|
|
// components
|
|
import { LayerDiagonalIcon } from "components/icons";
|
|
// ui
|
|
import { Loader } from "components/ui";
|
|
// icons
|
|
import { MagnifyingGlassIcon } from "@heroicons/react/24/outline";
|
|
// types
|
|
import { ISearchIssueResponse } from "types";
|
|
|
|
type Props = {
|
|
isOpen: boolean;
|
|
handleClose: () => void;
|
|
value?: any;
|
|
onChange: (...event: any[]) => void;
|
|
issueId?: string;
|
|
customDisplay?: JSX.Element;
|
|
};
|
|
|
|
export const ParentIssuesListModal: React.FC<Props> = ({
|
|
isOpen,
|
|
handleClose: onClose,
|
|
value,
|
|
onChange,
|
|
issueId,
|
|
customDisplay,
|
|
}) => {
|
|
const [searchTerm, setSearchTerm] = useState("");
|
|
const [issues, setIssues] = useState<ISearchIssueResponse[]>([]);
|
|
const [isLoading, setIsLoading] = useState(false);
|
|
const [isSearching, setIsSearching] = useState(false);
|
|
|
|
const debouncedSearchTerm: string = useDebounce(searchTerm, 500);
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query;
|
|
|
|
const handleClose = () => {
|
|
onClose();
|
|
setSearchTerm("");
|
|
};
|
|
|
|
useEffect(() => {
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
setIsLoading(true);
|
|
|
|
if (debouncedSearchTerm) {
|
|
setIsSearching(true);
|
|
|
|
projectService
|
|
.projectIssuesSearch(workspaceSlug as string, projectId as string, {
|
|
search: debouncedSearchTerm,
|
|
parent: true,
|
|
issue_id: issueId,
|
|
})
|
|
.then((res) => {
|
|
setIssues(res);
|
|
})
|
|
.finally(() => {
|
|
setIsLoading(false);
|
|
setIsSearching(false);
|
|
});
|
|
} else {
|
|
setIssues([]);
|
|
setIsLoading(false);
|
|
setIsSearching(false);
|
|
}
|
|
}, [debouncedSearchTerm, workspaceSlug, projectId, issueId]);
|
|
|
|
return (
|
|
<>
|
|
<Transition.Root
|
|
show={isOpen}
|
|
as={React.Fragment}
|
|
afterLeave={() => setSearchTerm("")}
|
|
appear
|
|
>
|
|
<Dialog as="div" className="relative z-20" onClose={handleClose}>
|
|
<Transition.Child
|
|
as={React.Fragment}
|
|
enter="ease-out duration-300"
|
|
enterFrom="opacity-0"
|
|
enterTo="opacity-100"
|
|
leave="ease-in duration-200"
|
|
leaveFrom="opacity-100"
|
|
leaveTo="opacity-0"
|
|
>
|
|
<div className="fixed inset-0 bg-brand-backdrop bg-opacity-50 transition-opacity" />
|
|
</Transition.Child>
|
|
|
|
<div className="fixed inset-0 z-20 overflow-y-auto p-4 sm:p-6 md:p-20">
|
|
<Transition.Child
|
|
as={React.Fragment}
|
|
enter="ease-out duration-300"
|
|
enterFrom="opacity-0 scale-95"
|
|
enterTo="opacity-100 scale-100"
|
|
leave="ease-in duration-200"
|
|
leaveFrom="opacity-100 scale-100"
|
|
leaveTo="opacity-0 scale-95"
|
|
>
|
|
<Dialog.Panel className="relative mx-auto max-w-2xl transform rounded-xl border border-brand-base bg-brand-base shadow-2xl transition-all">
|
|
<Combobox value={value} onChange={onChange}>
|
|
<div className="relative m-1">
|
|
<MagnifyingGlassIcon
|
|
className="pointer-events-none absolute top-3.5 left-4 h-5 w-5 text-brand-base text-opacity-40"
|
|
aria-hidden="true"
|
|
/>
|
|
<Combobox.Input
|
|
className="h-12 w-full border-0 bg-transparent pl-11 pr-4 text-brand-base placeholder-gray-500 outline-none focus:ring-0 sm:text-sm"
|
|
placeholder="Type to search..."
|
|
value={searchTerm}
|
|
onChange={(e) => setSearchTerm(e.target.value)}
|
|
displayValue={() => ""}
|
|
/>
|
|
</div>
|
|
{customDisplay && <div className="p-2">{customDisplay}</div>}
|
|
<Combobox.Options static className="max-h-80 scroll-py-2 overflow-y-auto mt-2">
|
|
{debouncedSearchTerm !== "" && (
|
|
<h5 className="text-[0.825rem] text-brand-secondary mx-2">
|
|
Search results for{" "}
|
|
<span className="text-brand-base">
|
|
{'"'}
|
|
{debouncedSearchTerm}
|
|
{'"'}
|
|
</span>{" "}
|
|
in project:
|
|
</h5>
|
|
)}
|
|
|
|
{!isLoading &&
|
|
issues.length === 0 &&
|
|
searchTerm !== "" &&
|
|
debouncedSearchTerm !== "" && (
|
|
<div className="flex flex-col items-center justify-center gap-4 px-3 py-8 text-center">
|
|
<LayerDiagonalIcon height="52" width="52" />
|
|
<h3 className="text-brand-secondary">
|
|
No issues found. Create a new issue with{" "}
|
|
<pre className="inline rounded bg-brand-surface-2 px-2 py-1 text-sm">
|
|
C
|
|
</pre>
|
|
.
|
|
</h3>
|
|
</div>
|
|
)}
|
|
|
|
{isLoading || isSearching ? (
|
|
<Loader className="space-y-3 p-3">
|
|
<Loader.Item height="40px" />
|
|
<Loader.Item height="40px" />
|
|
<Loader.Item height="40px" />
|
|
<Loader.Item height="40px" />
|
|
</Loader>
|
|
) : (
|
|
<ul className={`text-sm ${issues.length > 0 ? "p-2" : ""}`}>
|
|
{issues.map((issue) => (
|
|
<Combobox.Option
|
|
key={issue.id}
|
|
value={issue.id}
|
|
className={({ active, selected }) =>
|
|
`flex cursor-pointer select-none items-center gap-2 rounded-md px-3 py-2 text-brand-secondary ${
|
|
active ? "bg-brand-surface-2 text-brand-base" : ""
|
|
} ${selected ? "text-brand-base" : ""}`
|
|
}
|
|
onClick={handleClose}
|
|
>
|
|
<>
|
|
<span
|
|
className="block h-1.5 w-1.5 flex-shrink-0 rounded-full"
|
|
style={{
|
|
backgroundColor: issue.state__color,
|
|
}}
|
|
/>
|
|
<span className="flex-shrink-0 text-xs">
|
|
{issue.project__identifier}-{issue.sequence_id}
|
|
</span>{" "}
|
|
{issue.name}
|
|
</>
|
|
</Combobox.Option>
|
|
))}
|
|
</ul>
|
|
)}
|
|
</Combobox.Options>
|
|
</Combobox>
|
|
</Dialog.Panel>
|
|
</Transition.Child>
|
|
</div>
|
|
</Dialog>
|
|
</Transition.Root>
|
|
</>
|
|
);
|
|
};
|