mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
14dd498d08
* chore: issue attachment services added * feat: attachment icons added * chore: fetch-key and icons export * feat: issue attachment upload section added * feat: issue attachment list section added * feat: date helper function added * style: responsiveness added * feat: attachment info added * style: attachment overflow fix * style: cursor pointer added * chore: issue attachment interface * style: uploading state added * feat: delete issue attachment modal * style: style improvement and refactor * style: consistent icon added , chore: refactor the code * fix: js icon import fix * fix: build fix * chore: refactor code
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 items-center justify-between h-[60px] gap-1 px-4 py-2 text-sm border border-gray-200 bg-white rounded-md"
|
|
>
|
|
<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-gray-500 text-xs">
|
|
<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>
|
|
))}
|
|
</>
|
|
);
|
|
};
|