mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
3d09a69d58
* fix: eslint fixes --------- Co-authored-by: gurusainath <gurusainath007@gmail.com>
51 lines
1.9 KiB
TypeScript
51 lines
1.9 KiB
TypeScript
import { FC } from "react";
|
|
import { observer } from "mobx-react";
|
|
// hooks
|
|
import { issueRelationObject } from "components/issues/issue-detail/relation-select";
|
|
import { useIssueDetail } from "hooks/store";
|
|
// components
|
|
import { TIssueRelationTypes } from "@plane/types";
|
|
import { IssueActivityBlockComponent } from "./";
|
|
// component helpers
|
|
// types
|
|
|
|
type TIssueRelationActivity = { activityId: string; ends: "top" | "bottom" | undefined };
|
|
|
|
export const IssueRelationActivity: FC<TIssueRelationActivity> = observer((props) => {
|
|
const { activityId, ends } = props;
|
|
// hooks
|
|
const {
|
|
activity: { getActivityById },
|
|
} = useIssueDetail();
|
|
|
|
const activity = getActivityById(activityId);
|
|
|
|
if (!activity) return <></>;
|
|
return (
|
|
<IssueActivityBlockComponent
|
|
icon={activity.field ? issueRelationObject[activity.field as TIssueRelationTypes].icon(14) : <></>}
|
|
activityId={activityId}
|
|
ends={ends}
|
|
>
|
|
<>
|
|
{activity.field === "blocking" &&
|
|
(activity.old_value === "" ? `marked this issue is blocking issue ` : `removed the blocking issue `)}
|
|
{activity.field === "blocked_by" &&
|
|
(activity.old_value === ""
|
|
? `marked this issue is being blocked by `
|
|
: `removed this issue being blocked by issue `)}
|
|
{activity.field === "duplicate" &&
|
|
(activity.old_value === "" ? `marked this issue as duplicate of ` : `removed this issue as a duplicate of `)}
|
|
{activity.field === "relates_to" &&
|
|
(activity.old_value === "" ? `marked that this issue relates to ` : `removed the relation from `)}
|
|
|
|
{activity.old_value === "" ? (
|
|
<span className="font-medium text-custom-text-100">{activity.new_value}.</span>
|
|
) : (
|
|
<span className="font-medium text-custom-text-100">{activity.old_value}.</span>
|
|
)}
|
|
</>
|
|
</IssueActivityBlockComponent>
|
|
);
|
|
});
|