mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
dd65d03d33
* feat: issue bulk operations * style: bulk operations action bar * chore: remove edition separation
47 lines
1.3 KiB
TypeScript
47 lines
1.3 KiB
TypeScript
import React from "react";
|
|
import { observer } from "mobx-react";
|
|
import { useRouter } from "next/router";
|
|
// types
|
|
import { TIssue } from "@plane/types";
|
|
// helpers
|
|
import { cn } from "@/helpers/common.helper";
|
|
// hooks
|
|
import { useAppRouter } from "@/hooks/store";
|
|
|
|
type Props = {
|
|
issue: TIssue;
|
|
};
|
|
|
|
export const SpreadsheetSubIssueColumn: React.FC<Props> = observer((props: Props) => {
|
|
const { issue } = props;
|
|
// router
|
|
const router = useRouter();
|
|
// hooks
|
|
const { workspaceSlug } = useAppRouter();
|
|
// derived values
|
|
const subIssueCount = issue?.sub_issues_count ?? 0;
|
|
|
|
const redirectToIssueDetail = () => {
|
|
router.push({
|
|
pathname: `/${workspaceSlug}/projects/${issue.project_id}/${issue.archived_at ? "archives/" : ""}issues/${
|
|
issue.id
|
|
}`,
|
|
hash: "sub-issues",
|
|
});
|
|
};
|
|
|
|
return (
|
|
<div
|
|
onClick={subIssueCount ? redirectToIssueDetail : () => {}}
|
|
className={cn(
|
|
"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 group-[.selected-issue-row]:bg-custom-primary-100/5 group-[.selected-issue-row]:hover:bg-custom-primary-100/10",
|
|
{
|
|
"cursor-pointer": subIssueCount,
|
|
}
|
|
)}
|
|
>
|
|
{subIssueCount} {subIssueCount === 1 ? "sub-issue" : "sub-issues"}
|
|
</div>
|
|
);
|
|
});
|