2024-01-23 07:58:58 +00:00
|
|
|
import { FC } from "react";
|
|
|
|
import { observer } from "mobx-react";
|
|
|
|
import { Signal } from "lucide-react";
|
|
|
|
// hooks
|
2024-03-19 14:38:35 +00:00
|
|
|
import { useIssueDetail } from "@/hooks/store";
|
2024-01-23 07:58:58 +00:00
|
|
|
// components
|
|
|
|
import { IssueActivityBlockComponent, IssueLink } from "./";
|
|
|
|
|
|
|
|
type TIssuePriorityActivity = { activityId: string; showIssue?: boolean; ends: "top" | "bottom" | undefined };
|
|
|
|
|
|
|
|
export const IssuePriorityActivity: FC<TIssuePriorityActivity> = observer((props) => {
|
|
|
|
const { activityId, showIssue = true, ends } = props;
|
|
|
|
// hooks
|
|
|
|
const {
|
|
|
|
activity: { getActivityById },
|
|
|
|
} = useIssueDetail();
|
|
|
|
|
|
|
|
const activity = getActivityById(activityId);
|
|
|
|
|
|
|
|
if (!activity) return <></>;
|
|
|
|
return (
|
|
|
|
<IssueActivityBlockComponent
|
|
|
|
icon={<Signal size={14} color="#6b7280" aria-hidden="true" />}
|
|
|
|
activityId={activityId}
|
|
|
|
ends={ends}
|
|
|
|
>
|
|
|
|
<>
|
|
|
|
set the priority to <span className="font-medium text-custom-text-100">{activity.new_value}</span>
|
|
|
|
{showIssue ? ` for ` : ``}
|
|
|
|
{showIssue && <IssueLink activityId={activityId} />}.
|
|
|
|
</>
|
|
|
|
</IssueActivityBlockComponent>
|
|
|
|
);
|
|
|
|
});
|