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>
44 lines
1.5 KiB
TypeScript
44 lines
1.5 KiB
TypeScript
import { FC } from "react";
|
|
import { observer } from "mobx-react";
|
|
// hooks
|
|
import { UserGroupIcon } from "@plane/ui";
|
|
import { useIssueDetail } from "hooks/store";
|
|
// components
|
|
import { IssueActivityBlockComponent, IssueLink } from "./";
|
|
// icons
|
|
|
|
type TIssueAssigneeActivity = { activityId: string; showIssue?: boolean; ends: "top" | "bottom" | undefined };
|
|
|
|
export const IssueAssigneeActivity: FC<TIssueAssigneeActivity> = observer((props) => {
|
|
const { activityId, ends, showIssue = true } = props;
|
|
// hooks
|
|
const {
|
|
activity: { getActivityById },
|
|
} = useIssueDetail();
|
|
|
|
const activity = getActivityById(activityId);
|
|
|
|
if (!activity) return <></>;
|
|
return (
|
|
<IssueActivityBlockComponent
|
|
icon={<UserGroupIcon className="h-4 w-4 flex-shrink-0" />}
|
|
activityId={activityId}
|
|
ends={ends}
|
|
>
|
|
<>
|
|
{activity.old_value === "" ? `added a new assignee ` : `removed the assignee `}
|
|
<a
|
|
href={`/${activity.workspace_detail?.slug}/profile/${activity.new_identifier ?? activity.old_identifier}`}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="inline-flex items-center font-medium text-custom-text-100 hover:underline capitalize"
|
|
>
|
|
{activity.new_value && activity.new_value !== "" ? activity.new_value : activity.old_value}
|
|
</a>
|
|
{showIssue && (activity.old_value === "" ? ` to ` : ` from `)}
|
|
{showIssue && <IssueLink activityId={activityId} />}.
|
|
</>
|
|
</IssueActivityBlockComponent>
|
|
);
|
|
});
|