2023-11-03 13:45:09 +00:00
|
|
|
import React from "react";
|
2024-05-08 17:31:20 +00:00
|
|
|
import { observer } from "mobx-react";
|
2024-02-21 12:48:14 +00:00
|
|
|
import { useRouter } from "next/router";
|
|
|
|
// types
|
2024-05-08 17:31:20 +00:00
|
|
|
import { TIssue } from "@plane/types";
|
2024-02-23 13:33:45 +00:00
|
|
|
// helpers
|
2024-05-08 17:31:20 +00:00
|
|
|
import { cn } from "@/helpers/common.helper";
|
|
|
|
// hooks
|
|
|
|
import { useAppRouter } from "@/hooks/store";
|
2023-11-03 13:45:09 +00:00
|
|
|
|
|
|
|
type Props = {
|
2024-01-11 12:49:19 +00:00
|
|
|
issue: TIssue;
|
2023-11-03 13:45:09 +00:00
|
|
|
};
|
|
|
|
|
2024-01-11 12:49:19 +00:00
|
|
|
export const SpreadsheetSubIssueColumn: React.FC<Props> = observer((props: Props) => {
|
|
|
|
const { issue } = props;
|
2024-02-21 12:48:14 +00:00
|
|
|
// router
|
|
|
|
const router = useRouter();
|
|
|
|
// hooks
|
2024-05-08 17:31:20 +00:00
|
|
|
const { workspaceSlug } = useAppRouter();
|
2024-05-21 11:44:41 +00:00
|
|
|
// derived values
|
|
|
|
const subIssueCount = issue.sub_issues_count;
|
2024-02-21 12:48:14 +00:00
|
|
|
|
|
|
|
const redirectToIssueDetail = () => {
|
|
|
|
router.push({
|
2024-03-20 15:32:58 +00:00
|
|
|
pathname: `/${workspaceSlug}/projects/${issue.project_id}/${issue.archived_at ? "archives/" : ""}issues/${
|
2024-02-21 12:48:14 +00:00
|
|
|
issue.id
|
|
|
|
}`,
|
|
|
|
hash: "sub-issues",
|
|
|
|
});
|
|
|
|
};
|
2023-11-03 13:45:09 +00:00
|
|
|
|
|
|
|
return (
|
2024-02-21 12:48:14 +00:00
|
|
|
<div
|
2024-05-21 11:44:41 +00:00
|
|
|
onClick={subIssueCount ? redirectToIssueDetail : () => {}}
|
2024-02-23 13:33:45 +00:00
|
|
|
className={cn(
|
2024-05-08 17:31:20 +00:00
|
|
|
"flex h-11 w-full items-center border-b-[0.5px] border-custom-border-200 px-2.5 py-1 text-xs hover:bg-custom-background-80",
|
2024-02-23 13:33:45 +00:00
|
|
|
{
|
2024-05-21 11:44:41 +00:00
|
|
|
"cursor-pointer": subIssueCount,
|
2024-02-23 13:33:45 +00:00
|
|
|
}
|
|
|
|
)}
|
2024-02-21 12:48:14 +00:00
|
|
|
>
|
2024-05-21 11:44:41 +00:00
|
|
|
{subIssueCount} {subIssueCount === 1 ? "sub-issue" : "sub-issues"}
|
2024-01-11 12:49:19 +00:00
|
|
|
</div>
|
2023-11-03 13:45:09 +00:00
|
|
|
);
|
2024-01-11 12:49:19 +00:00
|
|
|
});
|