forked from github/plane
3d09a69d58
* fix: eslint fixes --------- Co-authored-by: gurusainath <gurusainath007@gmail.com>
72 lines
2.6 KiB
TypeScript
72 lines
2.6 KiB
TypeScript
import { FC } from "react";
|
|
import Link from "next/link";
|
|
import { MinusCircle } from "lucide-react";
|
|
// component
|
|
// ui
|
|
import { CustomMenu } from "@plane/ui";
|
|
// hooks
|
|
import { useIssues, useProject, useProjectState } from "hooks/store";
|
|
// types
|
|
import { TIssue } from "@plane/types";
|
|
import { TIssueOperations } from "../root";
|
|
import { IssueParentSiblings } from "./siblings";
|
|
|
|
export type TIssueParentDetail = {
|
|
workspaceSlug: string;
|
|
projectId: string;
|
|
issueId: string;
|
|
issue: TIssue;
|
|
issueOperations: TIssueOperations;
|
|
};
|
|
|
|
export const IssueParentDetail: FC<TIssueParentDetail> = (props) => {
|
|
const { workspaceSlug, projectId, issueId, issue, issueOperations } = props;
|
|
// hooks
|
|
const { issueMap } = useIssues();
|
|
const { getProjectById } = useProject();
|
|
const { getProjectStates } = useProjectState();
|
|
|
|
const parentIssue = issueMap?.[issue.parent_id || ""] || undefined;
|
|
|
|
const issueParentState = getProjectStates(parentIssue?.project_id)?.find(
|
|
(state) => state?.id === parentIssue?.state_id
|
|
);
|
|
const stateColor = issueParentState?.color || undefined;
|
|
|
|
if (!parentIssue) return <></>;
|
|
|
|
return (
|
|
<>
|
|
<div className="mb-5 flex w-min items-center gap-3 whitespace-nowrap rounded-md border border-custom-border-300 bg-custom-background-80 px-2.5 py-1 text-xs">
|
|
<Link href={`/${workspaceSlug}/projects/${parentIssue?.project_id}/issues/${parentIssue.id}`}>
|
|
<div className="flex items-center gap-3">
|
|
<div className="flex items-center gap-2.5">
|
|
<span className="block h-2 w-2 rounded-full" style={{ backgroundColor: stateColor }} />
|
|
<span className="flex-shrink-0 text-custom-text-200">
|
|
{getProjectById(parentIssue.project_id)?.identifier}-{parentIssue?.sequence_id}
|
|
</span>
|
|
</div>
|
|
<span className="truncate text-custom-text-100">{(parentIssue?.name ?? "").substring(0, 50)}</span>
|
|
</div>
|
|
</Link>
|
|
|
|
<CustomMenu ellipsis optionsClassName="p-1.5">
|
|
<div className="border-b border-custom-border-300 text-xs font-medium text-custom-text-200">
|
|
Sibling issues
|
|
</div>
|
|
|
|
<IssueParentSiblings currentIssue={issue} parentIssue={parentIssue} />
|
|
|
|
<CustomMenu.MenuItem
|
|
onClick={() => issueOperations.update(workspaceSlug, projectId, issueId, { parent_id: null })}
|
|
className="flex items-center gap-2 py-2 text-red-500"
|
|
>
|
|
<MinusCircle className="h-4 w-4" />
|
|
<span> Remove Parent Issue</span>
|
|
</CustomMenu.MenuItem>
|
|
</CustomMenu>
|
|
</div>
|
|
</>
|
|
);
|
|
};
|