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>
41 lines
1.2 KiB
TypeScript
41 lines
1.2 KiB
TypeScript
import { FC } from "react";
|
|
import { observer } from "mobx-react";
|
|
import { RotateCcw } from "lucide-react";
|
|
// hooks
|
|
import { ArchiveIcon } from "@plane/ui";
|
|
import { useIssueDetail } from "hooks/store";
|
|
// components
|
|
import { IssueActivityBlockComponent } from "./";
|
|
// ui
|
|
|
|
type TIssueArchivedAtActivity = { activityId: string; ends: "top" | "bottom" | undefined };
|
|
|
|
export const IssueArchivedAtActivity: FC<TIssueArchivedAtActivity> = observer((props) => {
|
|
const { activityId, ends } = props;
|
|
// hooks
|
|
const {
|
|
activity: { getActivityById },
|
|
} = useIssueDetail();
|
|
|
|
const activity = getActivityById(activityId);
|
|
|
|
if (!activity) return <></>;
|
|
|
|
return (
|
|
<IssueActivityBlockComponent
|
|
icon={
|
|
activity.new_value === "restore" ? (
|
|
<RotateCcw className="h-3.5 w-3.5" color="#6b7280" aria-hidden="true" />
|
|
) : (
|
|
<ArchiveIcon className="h-3.5 w-3.5" color="#6b7280" aria-hidden="true" />
|
|
)
|
|
}
|
|
activityId={activityId}
|
|
ends={ends}
|
|
customUserName={activity.new_value === "archive" ? "Plane" : undefined}
|
|
>
|
|
{activity.new_value === "restore" ? "restored the issue" : "archived the issue"}.
|
|
</IssueActivityBlockComponent>
|
|
);
|
|
});
|