2024-01-23 07:58:58 +00:00
|
|
|
import { FC } from "react";
|
|
|
|
import { observer } from "mobx-react";
|
|
|
|
// hooks
|
2024-03-06 13:09:14 +00:00
|
|
|
import { DiceIcon } from "@plane/ui";
|
2024-01-23 07:58:58 +00:00
|
|
|
import { useIssueDetail } from "hooks/store";
|
|
|
|
// components
|
|
|
|
import { IssueActivityBlockComponent } from "./";
|
|
|
|
// icons
|
|
|
|
|
|
|
|
type TIssueModuleActivity = { activityId: string; ends: "top" | "bottom" | undefined };
|
|
|
|
|
|
|
|
export const IssueModuleActivity: FC<TIssueModuleActivity> = observer((props) => {
|
|
|
|
const { activityId, ends } = props;
|
|
|
|
// hooks
|
|
|
|
const {
|
|
|
|
activity: { getActivityById },
|
|
|
|
} = useIssueDetail();
|
|
|
|
|
|
|
|
const activity = getActivityById(activityId);
|
|
|
|
|
|
|
|
if (!activity) return <></>;
|
|
|
|
return (
|
|
|
|
<IssueActivityBlockComponent
|
|
|
|
icon={<DiceIcon className="h-4 w-4 flex-shrink-0 text-[#6b7280]" />}
|
|
|
|
activityId={activityId}
|
|
|
|
ends={ends}
|
|
|
|
>
|
|
|
|
<>
|
|
|
|
{activity.verb === "created" ? (
|
|
|
|
<>
|
|
|
|
<span>added this issue to the module </span>
|
|
|
|
<a
|
|
|
|
href={`/${activity.workspace_detail?.slug}/projects/${activity.project}/modules/${activity.new_identifier}`}
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
className="inline-flex items-center gap-1 truncate font-medium text-custom-text-100 hover:underline"
|
|
|
|
>
|
|
|
|
<span className="truncate">{activity.new_value}</span>
|
|
|
|
</a>
|
|
|
|
</>
|
|
|
|
) : activity.verb === "updated" ? (
|
|
|
|
<>
|
|
|
|
<span>set the module to </span>
|
|
|
|
<a
|
|
|
|
href={`/${activity.workspace_detail?.slug}/projects/${activity.project}/modules/${activity.new_identifier}`}
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
className="inline-flex items-center gap-1 truncate font-medium text-custom-text-100 hover:underline"
|
|
|
|
>
|
|
|
|
<span className="truncate"> {activity.new_value}</span>
|
|
|
|
</a>
|
|
|
|
</>
|
|
|
|
) : (
|
|
|
|
<>
|
|
|
|
<span>removed the issue from the module </span>
|
|
|
|
<a
|
|
|
|
href={`/${activity.workspace_detail?.slug}/projects/${activity.project}/modules/${activity.old_identifier}`}
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
className="inline-flex items-center gap-1 truncate font-medium text-custom-text-100 hover:underline"
|
|
|
|
>
|
2024-01-30 09:53:20 +00:00
|
|
|
<span className="truncate"> {activity.old_value}</span>
|
2024-01-23 07:58:58 +00:00
|
|
|
</a>
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
</>
|
|
|
|
</IssueActivityBlockComponent>
|
|
|
|
);
|
|
|
|
});
|