forked from github/plane
483c49d0ff
* style: sub issue theming * style: shortcut modal theming * style: blocking and blocked by modal theming * fix: filter labels dropdown width fix * style: display properties * chore: workspace invite * style: invite co workers theming * style: create workspace theming * style: attachment theming * style: workspace sidebar theming * style: issue property theming * style: create module modal lead icon * style: label list modal theming * delete attachment and member modal theming * style: transfer issue modal * style: delete estimate modal theming * style: module form status * style: delete state modal theming * style: shortcut modal * style: onboarding logo * style: onboarding command menu
112 lines
4.0 KiB
TypeScript
112 lines
4.0 KiB
TypeScript
import { useState } from "react";
|
|
|
|
import Link from "next/link";
|
|
import { useRouter } from "next/router";
|
|
|
|
import useSWR from "swr";
|
|
|
|
// ui
|
|
import { Tooltip } from "components/ui";
|
|
import { DeleteAttachmentModal } from "./delete-attachment-modal";
|
|
// icons
|
|
import { XMarkIcon } from "@heroicons/react/24/outline";
|
|
import { ExclamationIcon, getFileIcon } from "components/icons";
|
|
// services
|
|
import issuesService from "services/issues.service";
|
|
import projectService from "services/project.service";
|
|
// fetch-key
|
|
import { ISSUE_ATTACHMENTS, PROJECT_MEMBERS } from "constants/fetch-keys";
|
|
// helper
|
|
import { truncateText } from "helpers/string.helper";
|
|
import { renderLongDateFormat } from "helpers/date-time.helper";
|
|
import { convertBytesToSize, getFileExtension, getFileName } from "helpers/attachment.helper";
|
|
// type
|
|
import { IIssueAttachment } from "types";
|
|
|
|
export const IssueAttachments = () => {
|
|
const [deleteAttachment, setDeleteAttachment] = useState<IIssueAttachment | null>(null);
|
|
const [attachmentDeleteModal, setAttachmentDeleteModal] = useState<boolean>(false);
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId, issueId } = router.query;
|
|
|
|
const { data: attachments } = useSWR<IIssueAttachment[]>(
|
|
workspaceSlug && projectId && issueId ? ISSUE_ATTACHMENTS(issueId as string) : null,
|
|
workspaceSlug && projectId && issueId
|
|
? () =>
|
|
issuesService.getIssueAttachment(
|
|
workspaceSlug as string,
|
|
projectId as string,
|
|
issueId as string
|
|
)
|
|
: null
|
|
);
|
|
|
|
const { data: people } = useSWR(
|
|
workspaceSlug && projectId ? PROJECT_MEMBERS(projectId as string) : null,
|
|
workspaceSlug && projectId
|
|
? () => projectService.projectMembers(workspaceSlug as string, projectId as string)
|
|
: null
|
|
);
|
|
|
|
return (
|
|
<>
|
|
<DeleteAttachmentModal
|
|
isOpen={attachmentDeleteModal}
|
|
setIsOpen={setAttachmentDeleteModal}
|
|
data={deleteAttachment}
|
|
/>
|
|
{attachments &&
|
|
attachments.length > 0 &&
|
|
attachments.map((file) => (
|
|
<div
|
|
key={file.id}
|
|
className="flex h-[60px] items-center justify-between gap-1 rounded-md border-[2px] border-brand-surface-2 bg-brand-base px-4 py-2 text-sm"
|
|
>
|
|
<Link href={file.asset}>
|
|
<a target="_blank">
|
|
<div className="flex items-center gap-3">
|
|
<div className="h-7 w-7">{getFileIcon(getFileExtension(file.asset))}</div>
|
|
<div className="flex flex-col gap-1">
|
|
<div className="flex items-center gap-2">
|
|
<Tooltip theme="dark" tooltipContent={getFileName(file.attributes.name)}>
|
|
<span className="text-sm">
|
|
{truncateText(`${getFileName(file.attributes.name)}`, 10)}
|
|
</span>
|
|
</Tooltip>
|
|
<Tooltip
|
|
theme="dark"
|
|
tooltipContent={`${
|
|
people?.find((person) => person.member.id === file.updated_by)?.member
|
|
.first_name ?? ""
|
|
} uploaded on ${renderLongDateFormat(file.updated_at)}`}
|
|
>
|
|
<span>
|
|
<ExclamationIcon className="h-3 w-3" />
|
|
</span>
|
|
</Tooltip>
|
|
</div>
|
|
|
|
<div className="flex items-center gap-3 text-xs text-gray-500">
|
|
<span>{getFileExtension(file.asset).toUpperCase()}</span>
|
|
<span>{convertBytesToSize(file.attributes.size)}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
</Link>
|
|
|
|
<button
|
|
onClick={() => {
|
|
setDeleteAttachment(file);
|
|
setAttachmentDeleteModal(true);
|
|
}}
|
|
>
|
|
<XMarkIcon className="h-4 w-4 text-gray-500 hover:text-gray-800" />
|
|
</button>
|
|
</div>
|
|
))}
|
|
</>
|
|
);
|
|
};
|