mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
110 lines
3.8 KiB
TypeScript
110 lines
3.8 KiB
TypeScript
|
import { FC, useState } from "react";
|
||
|
// hooks
|
||
|
import { useIssueDetail } from "hooks/store";
|
||
|
// ui
|
||
|
import { ExternalLinkIcon, Tooltip } from "@plane/ui";
|
||
|
// icons
|
||
|
import { Pencil, Trash2, LinkIcon } from "lucide-react";
|
||
|
// types
|
||
|
import { IssueLinkCreateUpdateModal, TLinkOperationsModal } from "./create-update-link-modal";
|
||
|
// helpers
|
||
|
import { calculateTimeAgo } from "helpers/date-time.helper";
|
||
|
|
||
|
export type TIssueLinkDetail = {
|
||
|
linkId: string;
|
||
|
linkOperations: TLinkOperationsModal;
|
||
|
isNotAllowed: boolean;
|
||
|
};
|
||
|
|
||
|
export const IssueLinkDetail: FC<TIssueLinkDetail> = (props) => {
|
||
|
// props
|
||
|
const { linkId, linkOperations, isNotAllowed } = props;
|
||
|
// hooks
|
||
|
const {
|
||
|
link: { getLinkById },
|
||
|
} = useIssueDetail();
|
||
|
// state
|
||
|
const [isIssueLinkModalOpen, setIsIssueLinkModalOpen] = useState(false);
|
||
|
const toggleIssueLinkModal = (modalToggle: boolean) => setIsIssueLinkModalOpen(modalToggle);
|
||
|
|
||
|
const linkDetail = getLinkById(linkId);
|
||
|
if (!linkDetail) return <></>;
|
||
|
|
||
|
return (
|
||
|
<div key={linkId}>
|
||
|
<IssueLinkCreateUpdateModal
|
||
|
isModalOpen={isIssueLinkModalOpen}
|
||
|
handleModal={toggleIssueLinkModal}
|
||
|
linkOperations={linkOperations}
|
||
|
preloadedData={linkDetail}
|
||
|
/>
|
||
|
|
||
|
<div className="relative flex flex-col rounded-md bg-custom-background-90 p-2.5">
|
||
|
<div className="flex w-full items-start justify-between gap-2">
|
||
|
<div className="flex items-start gap-2 truncate">
|
||
|
<span className="py-1">
|
||
|
<LinkIcon className="h-3 w-3 flex-shrink-0" />
|
||
|
</span>
|
||
|
<Tooltip tooltipContent={linkDetail.title && linkDetail.title !== "" ? linkDetail.title : linkDetail.url}>
|
||
|
<span
|
||
|
className="cursor-pointer truncate text-xs"
|
||
|
// onClick={() =>
|
||
|
// copyToClipboard(linkDetail.title && linkDetail.title !== "" ? linkDetail.title : linkDetail.url)
|
||
|
// }
|
||
|
>
|
||
|
{linkDetail.title && linkDetail.title !== "" ? linkDetail.title : linkDetail.url}
|
||
|
</span>
|
||
|
</Tooltip>
|
||
|
</div>
|
||
|
|
||
|
{!isNotAllowed && (
|
||
|
<div className="z-[1] flex flex-shrink-0 items-center gap-2">
|
||
|
<button
|
||
|
type="button"
|
||
|
className="flex items-center justify-center p-1 hover:bg-custom-background-80"
|
||
|
onClick={(e) => {
|
||
|
e.preventDefault();
|
||
|
e.stopPropagation();
|
||
|
setIsIssueLinkModalOpen(true);
|
||
|
}}
|
||
|
>
|
||
|
<Pencil className="h-3 w-3 stroke-[1.5] text-custom-text-200" />
|
||
|
</button>
|
||
|
<a
|
||
|
href={linkDetail.url}
|
||
|
target="_blank"
|
||
|
rel="noopener noreferrer"
|
||
|
className="flex items-center justify-center p-1 hover:bg-custom-background-80"
|
||
|
>
|
||
|
<ExternalLinkIcon className="h-3 w-3 stroke-[1.5] text-custom-text-200" />
|
||
|
</a>
|
||
|
<button
|
||
|
type="button"
|
||
|
className="flex items-center justify-center p-1 hover:bg-custom-background-80"
|
||
|
onClick={(e) => {
|
||
|
e.preventDefault();
|
||
|
e.stopPropagation();
|
||
|
linkOperations.remove(linkDetail.id);
|
||
|
}}
|
||
|
>
|
||
|
<Trash2 className="h-3 w-3" />
|
||
|
</button>
|
||
|
</div>
|
||
|
)}
|
||
|
</div>
|
||
|
|
||
|
<div className="px-5">
|
||
|
<p className="mt-0.5 stroke-[1.5] text-xs text-custom-text-300">
|
||
|
Added {calculateTimeAgo(linkDetail.created_at)}
|
||
|
<br />
|
||
|
by{" "}
|
||
|
{linkDetail.created_by_detail.is_bot
|
||
|
? linkDetail.created_by_detail.first_name + " Bot"
|
||
|
: linkDetail.created_by_detail.display_name}
|
||
|
</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
);
|
||
|
};
|