import React from "react"; import { useRouter } from "next/router"; // lucide icons import { CircleDashed, Plus } from "lucide-react"; // components import { CreateUpdateIssueModal } from "components/issues/modal"; import { ExistingIssuesListModal } from "components/core"; import { CustomMenu } from "@plane/ui"; // mobx import { observer } from "mobx-react-lite"; // types import { IIssue, ISearchIssueResponse } from "types"; import { EProjectStore } from "store/command-palette.store"; interface IHeaderGroupByCard { icon?: React.ReactNode; title: string; count: number; issuePayload: Partial; disableIssueCreation?: boolean; currentStore: EProjectStore; } export const HeaderGroupByCard = observer( ({ icon, title, count, issuePayload, disableIssueCreation, currentStore }: IHeaderGroupByCard) => { const router = useRouter(); const { workspaceSlug, projectId, moduleId, cycleId } = router.query; const [isOpen, setIsOpen] = React.useState(false); const [openExistingIssueListModal, setOpenExistingIssueListModal] = React.useState(false); const renderExistingIssueModal = moduleId || cycleId; const ExistingIssuesListModalPayload = moduleId ? { module: true } : { cycle: true }; const handleAddIssuesToModule = async (data: ISearchIssueResponse[]) => { if (!workspaceSlug || !projectId) return; const payload = { issues: data.map((i) => i.id), }; // await moduleService // .addIssuesToModule(workspaceSlug as string, projectId as string, moduleId as string, payload, user) // .catch(() => // setToastAlert({ // type: "error", // title: "Error!", // message: "Selected issues could not be added to the module. Please try again.", // }) // ); }; const handleAddIssuesToCycle = async (data: ISearchIssueResponse[]) => { if (!workspaceSlug || !projectId) return; const payload = { issues: data.map((i) => i.id), }; // await issueService // .addIssueToCycle(workspaceSlug as string, projectId as string, cycleId as string, payload, user) // .catch(() => { // setToastAlert({ // type: "error", // title: "Error!", // message: "Selected issues could not be added to the cycle. Please try again.", // }); // }); }; return ( <>
{icon ? icon : }
{title}
{count || 0}
{!disableIssueCreation && (renderExistingIssueModal ? ( } > setIsOpen(true)}> Create issue setOpenExistingIssueListModal(true)}> Add an existing issue ) : (
setIsOpen(true)} >
))} setIsOpen(false)} currentStore={currentStore} prePopulateData={issuePayload} /> {renderExistingIssueModal && ( setOpenExistingIssueListModal(false)} searchParams={ExistingIssuesListModalPayload} handleOnSubmit={moduleId ? handleAddIssuesToModule : handleAddIssuesToCycle} /> )}
); } );