forked from github/plane
4611ec0b83
* fix: handled undefined issue_id in list layout * dev: issue detail store and optimization * dev: issue filter and list operations * fix: typo on labels update * dev: Handled all issues in the list layout in project issues * dev: handled kanban and auick add issue in swimlanes * chore: fixed peekoverview in kanban * chore: fixed peekoverview in calendar * chore: fixed peekoverview in gantt * chore: updated quick add in the gantt chart * chore: handled issue detail properties and resolved build issues --------- Co-authored-by: pablohashescobar <nikhilschacko@gmail.com>
123 lines
4.1 KiB
TypeScript
123 lines
4.1 KiB
TypeScript
import { FC, useState } from "react";
|
|
// hooks
|
|
import useToast from "hooks/use-toast";
|
|
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";
|
|
import { copyTextToClipboard } from "helpers/string.helper";
|
|
|
|
export type TIssueLinkDetail = {
|
|
linkId: string;
|
|
linkOperations: TLinkOperationsModal;
|
|
isNotAllowed: boolean;
|
|
};
|
|
|
|
export const IssueLinkDetail: FC<TIssueLinkDetail> = (props) => {
|
|
// props
|
|
const { linkId, linkOperations, isNotAllowed } = props;
|
|
// hooks
|
|
const {
|
|
toggleIssueLinkModal: toggleIssueLinkModalStore,
|
|
link: { getLinkById },
|
|
} = useIssueDetail();
|
|
const { setToastAlert } = useToast();
|
|
|
|
// state
|
|
const [isIssueLinkModalOpen, setIsIssueLinkModalOpen] = useState(false);
|
|
const toggleIssueLinkModal = (modalToggle: boolean) => {
|
|
toggleIssueLinkModalStore(modalToggle);
|
|
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 cursor-pointer"
|
|
onClick={() => {
|
|
copyTextToClipboard(linkDetail.url);
|
|
setToastAlert({
|
|
type: "success",
|
|
title: "Link copied!",
|
|
message: "Link copied to clipboard",
|
|
});
|
|
}}
|
|
>
|
|
<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="truncate text-xs">
|
|
{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();
|
|
toggleIssueLinkModal(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>
|
|
);
|
|
};
|