import React from "react"; import { useRouter } from "next/router"; import useSWR, { mutate } from "swr"; // services import { ModuleService } from "services/module.service"; // ui import { CustomSearchSelect, DiceIcon, Tooltip } from "@plane/ui"; // types import { IIssue } from "types"; // fetch-keys import { ISSUE_DETAILS, MODULE_ISSUES, MODULE_LIST } from "constants/fetch-keys"; type Props = { issueDetail: IIssue | undefined; handleModuleChange: (moduleId: string) => void; disabled?: boolean; }; const moduleService = new ModuleService(); export const SidebarModuleSelect: React.FC = ({ issueDetail, handleModuleChange, disabled = false }) => { const router = useRouter(); const { workspaceSlug, projectId, issueId } = router.query; const { data: modules } = useSWR( workspaceSlug && projectId ? MODULE_LIST(projectId as string) : null, workspaceSlug && projectId ? () => moduleService.getModules(workspaceSlug as string, projectId as string) : null ); const removeIssueFromModule = (bridgeId: string, moduleId: string) => { if (!workspaceSlug || !projectId) return; moduleService .removeIssueFromModule(workspaceSlug as string, projectId as string, moduleId, bridgeId) .then(() => { mutate(ISSUE_DETAILS(issueId as string)); mutate(MODULE_ISSUES(moduleId)); }) .catch((e) => { console.log(e); }); }; const options = modules?.map((module) => ({ value: module.id, query: module.name, content: (
{module.name}
), })); const issueModule = issueDetail?.issue_module; return ( { value === issueModule?.module_detail.id ? removeIssueFromModule(issueModule?.id ?? "", issueModule?.module ?? "") : handleModuleChange(value); }} options={options} customButton={
m.id === issueModule?.module)?.name ?? "No module"}`} >
} width="max-w-[10rem]" noChevron disabled={disabled} /> ); };