2024-01-23 07:58:58 +00:00
|
|
|
import { FC } from "react";
|
|
|
|
import { observer } from "mobx-react";
|
|
|
|
import { CalendarDays } from "lucide-react";
|
|
|
|
// hooks
|
2024-03-06 13:09:14 +00:00
|
|
|
import { renderFormattedDate } from "helpers/date-time.helper";
|
2024-01-23 07:58:58 +00:00
|
|
|
import { useIssueDetail } from "hooks/store";
|
|
|
|
// components
|
|
|
|
import { IssueActivityBlockComponent, IssueLink } from "./";
|
|
|
|
// helpers
|
|
|
|
|
|
|
|
type TIssueTargetDateActivity = { activityId: string; showIssue?: boolean; ends: "top" | "bottom" | undefined };
|
|
|
|
|
|
|
|
export const IssueTargetDateActivity: FC<TIssueTargetDateActivity> = observer((props) => {
|
|
|
|
const { activityId, showIssue = true, ends } = props;
|
|
|
|
// hooks
|
|
|
|
const {
|
|
|
|
activity: { getActivityById },
|
|
|
|
} = useIssueDetail();
|
|
|
|
|
|
|
|
const activity = getActivityById(activityId);
|
|
|
|
|
|
|
|
if (!activity) return <></>;
|
|
|
|
return (
|
|
|
|
<IssueActivityBlockComponent
|
|
|
|
icon={<CalendarDays size={14} color="#6b7280" aria-hidden="true" />}
|
|
|
|
activityId={activityId}
|
|
|
|
ends={ends}
|
|
|
|
>
|
|
|
|
<>
|
|
|
|
{activity.new_value ? `set the due date to ` : `removed the due date `}
|
|
|
|
{activity.new_value && (
|
|
|
|
<>
|
|
|
|
<span className="font-medium text-custom-text-100">{renderFormattedDate(activity.new_value)}</span>
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
{showIssue && (activity.new_value ? ` for ` : ` from `)}
|
|
|
|
{showIssue && <IssueLink activityId={activityId} />}.
|
|
|
|
</>
|
|
|
|
</IssueActivityBlockComponent>
|
|
|
|
);
|
|
|
|
});
|