mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
35 lines
1.1 KiB
TypeScript
35 lines
1.1 KiB
TypeScript
|
import { FC } from "react";
|
||
|
import { observer } from "mobx-react";
|
||
|
import { Signal } from "lucide-react";
|
||
|
// hooks
|
||
|
import { useIssueDetail } from "hooks/store";
|
||
|
// 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>
|
||
|
);
|
||
|
});
|