mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
f88109ef04
* fix: issue activity and comment change * chore: posthog enabled * chore: comment creation in activity * chore: comment crud in store mutation * fix: issue activity/ comments `disable` and `showAccessSpecifier` logic. * chore: comment reaction serializer change * conflicts: merge conflicts resolved * conflicts: merge conflicts resolved * chore: add issue activity/ comments to peek-overview. * imporve `showAccessIdentifier` logic. * chore: remove quotes from issue activity. * chore: use `projectLabels` instead of `workspaceLabels` in labels activity. * fix: project publish `is_deployed` not updating bug. * cleanup * fix: posthog enabled * fix: typos and the comment endpoint updates * fix: issue activity icons update --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: Prateek Shourya <prateekshourya29@gmail.com>
40 lines
1.2 KiB
TypeScript
40 lines
1.2 KiB
TypeScript
import { FC } from "react";
|
|
// hooks
|
|
import { useIssueDetail } from "hooks/store";
|
|
// ui
|
|
import { Tooltip } from "@plane/ui";
|
|
|
|
type TIssueLink = {
|
|
activityId: string;
|
|
};
|
|
|
|
export const IssueLink: FC<TIssueLink> = (props) => {
|
|
const { activityId } = props;
|
|
// hooks
|
|
const {
|
|
activity: { getActivityById },
|
|
} = useIssueDetail();
|
|
|
|
const activity = getActivityById(activityId);
|
|
|
|
if (!activity) return <></>;
|
|
return (
|
|
<Tooltip tooltipContent={activity.issue_detail ? activity.issue_detail.name : "This issue has been deleted"}>
|
|
<a
|
|
aria-disabled={activity.issue === null}
|
|
href={`${
|
|
activity.issue_detail
|
|
? `/${activity.workspace_detail?.slug}/projects/${activity.project}/issues/${activity.issue}`
|
|
: "#"
|
|
}`}
|
|
target={activity.issue === null ? "_self" : "_blank"}
|
|
rel={activity.issue === null ? "" : "noopener noreferrer"}
|
|
className="inline-flex items-center gap-1 font-medium text-custom-text-100 hover:underline"
|
|
>
|
|
{activity.issue_detail ? `${activity.project_detail.identifier}-${activity.issue_detail.sequence_id}` : "Issue"}{" "}
|
|
<span className="font-normal">{activity.issue_detail?.name}</span>
|
|
</a>
|
|
</Tooltip>
|
|
);
|
|
};
|