import { FC, useMemo } from "react"; import { observer } from "mobx-react-lite"; // components import { LabelList, LabelCreate, IssueLabelSelectRoot } from "./"; // hooks import { useIssueDetail, useLabel } from "hooks/store"; // types import { IIssueLabel, TIssue } from "@plane/types"; import useToast from "hooks/use-toast"; export type TIssueLabel = { workspaceSlug: string; projectId: string; issueId: string; disabled: boolean; }; export type TLabelOperations = { updateIssue: (workspaceSlug: string, projectId: string, issueId: string, data: Partial) => Promise; createLabel: (workspaceSlug: string, projectId: string, data: Partial) => Promise; }; export const IssueLabel: FC = observer((props) => { const { workspaceSlug, projectId, issueId, disabled = false } = props; // hooks const { updateIssue } = useIssueDetail(); const { createLabel } = useLabel(); const { setToastAlert } = useToast(); const labelOperations: TLabelOperations = useMemo( () => ({ updateIssue: async (workspaceSlug: string, projectId: string, issueId: string, data: Partial) => { try { await updateIssue(workspaceSlug, projectId, issueId, data); setToastAlert({ title: "Issue updated successfully", type: "success", message: "Issue updated successfully", }); } catch (error) { setToastAlert({ title: "Issue update failed", type: "error", message: "Issue update failed", }); } }, createLabel: async (workspaceSlug: string, projectId: string, data: Partial) => { try { const labelResponse = await createLabel(workspaceSlug, projectId, data); setToastAlert({ title: "Label created successfully", type: "success", message: "Label created successfully", }); return labelResponse; } catch (error) { setToastAlert({ title: "Label creation failed", type: "error", message: "Label creation failed", }); return error; } }, }), [updateIssue, createLabel, setToastAlert] ); return (
{!disabled && ( )} {!disabled && ( )}
); });