forked from github/plane
061be85a5d
* fix: GET request changes * fix: filtering changes * feat: cycles and modules archive. * chore: disable fetching of cycle/ module details when clicked on the card in archives page. * chore: remove copy link button from archived modules/ cycles. * fix: archived cycle and module loading fliker issue. * chore: add validation to only archive completed cycles. * chore: add validation to only archive completed or cancelled module. * chore: archived issues/ cycles/ modules empty state update. --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
47 lines
1.2 KiB
TypeScript
47 lines
1.2 KiB
TypeScript
import React from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
import { useRouter } from "next/router";
|
|
import { TIssue } from "@plane/types";
|
|
// hooks
|
|
import { cn } from "@/helpers/common.helper";
|
|
import { useApplication } from "@/hooks/store";
|
|
// types
|
|
// helpers
|
|
|
|
type Props = {
|
|
issue: TIssue;
|
|
};
|
|
|
|
export const SpreadsheetSubIssueColumn: React.FC<Props> = observer((props: Props) => {
|
|
const { issue } = props;
|
|
// router
|
|
const router = useRouter();
|
|
// hooks
|
|
const {
|
|
router: { workspaceSlug },
|
|
} = useApplication();
|
|
|
|
const redirectToIssueDetail = () => {
|
|
router.push({
|
|
pathname: `/${workspaceSlug}/projects/${issue.project_id}/${issue.archived_at ? "archives/" : ""}issues/${
|
|
issue.id
|
|
}`,
|
|
hash: "sub-issues",
|
|
});
|
|
};
|
|
|
|
return (
|
|
<div
|
|
onClick={issue?.sub_issues_count ? redirectToIssueDetail : () => {}}
|
|
className={cn(
|
|
"flex h-11 w-full items-center px-2.5 py-1 text-xs border-b-[0.5px] border-custom-border-200 hover:bg-custom-background-80",
|
|
{
|
|
"cursor-pointer": issue?.sub_issues_count,
|
|
}
|
|
)}
|
|
>
|
|
{issue?.sub_issues_count} {issue?.sub_issues_count === 1 ? "sub-issue" : "sub-issues"}
|
|
</div>
|
|
);
|
|
});
|