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"; // hooks import useToast from "hooks/use-toast"; // mobx import { observer } from "mobx-react-lite"; // types import { IIssue, ISearchIssueResponse } from "types"; interface IHeaderGroupByCard { icon?: React.ReactNode; title: string; count: number; issuePayload: Partial; } export const HeaderGroupByCard = observer(({ icon, title, count, issuePayload }: IHeaderGroupByCard) => { const router = useRouter(); const { workspaceSlug, projectId, moduleId, cycleId } = router.query; const { setToastAlert } = useToast(); 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}
{renderExistingIssueModal ? ( } > setIsOpen(true)}> Create issue setOpenExistingIssueListModal(true)}> Add an existing issue ) : (
setIsOpen(true)} >
)} setIsOpen(false)} handleSubmit={(data: Partial) => { console.log(data); return Promise.resolve(); }} prePopulateData={issuePayload} /> {renderExistingIssueModal && ( setOpenExistingIssueListModal(false)} searchParams={ExistingIssuesListModalPayload} handleOnSubmit={moduleId ? handleAddIssuesToModule : handleAddIssuesToCycle} /> )}
); });