import { FC } from "react"; import { observer } from "mobx-react"; // hooks import { useIssueDetail } from "hooks/store"; // components import { IssueActivityBlockComponent, IssueLink } from "./"; // icons import { UserGroupIcon } from "@plane/ui"; type TIssueAssigneeActivity = { activityId: string; showIssue?: boolean; ends: "top" | "bottom" | undefined }; export const IssueAssigneeActivity: FC = observer((props) => { const { activityId, ends, showIssue = true } = props; // hooks const { activity: { getActivityById }, } = useIssueDetail(); const activity = getActivityById(activityId); if (!activity) return <>; return ( } activityId={activityId} ends={ends} > <> {activity.old_value === "" ? `added a new assignee ` : `removed the assignee `} {activity.new_value && activity.new_value !== "" ? activity.new_value : activity.old_value} {showIssue && (activity.old_value === "" ? ` to ` : ` from `)} {showIssue && }. ); });