forked from github/plane
3427652c22
* fix: labels dropdown on issue details page theming * style: trash box styling and positioning * chore: empty state for scope and demand analytics, show assignee name in scope graph tooltip * chore: empty state for analytics * chore: modify analytics sidebar and header
107 lines
3.0 KiB
TypeScript
107 lines
3.0 KiB
TypeScript
import React, { useCallback, useState } from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
import { mutate } from "swr";
|
|
|
|
// react-dropzone
|
|
import { useDropzone } from "react-dropzone";
|
|
// toast
|
|
import useToast from "hooks/use-toast";
|
|
// fetch key
|
|
import { ISSUE_ATTACHMENTS } from "constants/fetch-keys";
|
|
// services
|
|
import issuesService from "services/issues.service";
|
|
// type
|
|
import { IIssueAttachment } from "types";
|
|
|
|
const maxFileSize = 5 * 1024 * 1024; // 5 MB
|
|
|
|
export const IssueAttachmentUpload = () => {
|
|
const [isLoading, setIsLoading] = useState(false);
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId, issueId } = router.query;
|
|
|
|
const { setToastAlert } = useToast();
|
|
|
|
const onDrop = useCallback((acceptedFiles: File[]) => {
|
|
if (!acceptedFiles[0] || !workspaceSlug) return;
|
|
|
|
const formData = new FormData();
|
|
formData.append("asset", acceptedFiles[0]);
|
|
formData.append(
|
|
"attributes",
|
|
JSON.stringify({
|
|
name: acceptedFiles[0].name,
|
|
size: acceptedFiles[0].size,
|
|
})
|
|
);
|
|
setIsLoading(true);
|
|
|
|
issuesService
|
|
.uploadIssueAttachment(
|
|
workspaceSlug as string,
|
|
projectId as string,
|
|
issueId as string,
|
|
formData
|
|
)
|
|
.then((res) => {
|
|
mutate<IIssueAttachment[]>(
|
|
ISSUE_ATTACHMENTS(issueId as string),
|
|
(prevData) => [res, ...(prevData ?? [])],
|
|
false
|
|
);
|
|
setToastAlert({
|
|
type: "success",
|
|
title: "Success!",
|
|
message: "File added successfully.",
|
|
});
|
|
setIsLoading(false);
|
|
})
|
|
.catch((err) => {
|
|
setIsLoading(false);
|
|
setToastAlert({
|
|
type: "error",
|
|
title: "error!",
|
|
message: "Something went wrong. please check file type & size (max 5 MB)",
|
|
});
|
|
});
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, []);
|
|
|
|
const { getRootProps, getInputProps, isDragActive, isDragReject, fileRejections } = useDropzone({
|
|
onDrop,
|
|
maxSize: maxFileSize,
|
|
multiple: false,
|
|
disabled: isLoading,
|
|
});
|
|
|
|
const fileError =
|
|
fileRejections.length > 0
|
|
? `Invalid file type or size (max ${maxFileSize / 1024 / 1024} MB)`
|
|
: null;
|
|
|
|
return (
|
|
<div
|
|
{...getRootProps()}
|
|
className={`flex items-center justify-center h-[60px] cursor-pointer border-2 border-dashed text-brand-accent bg-brand-accent/5 text-xs rounded-md px-4 ${
|
|
isDragActive ? "bg-brand-accent/10 border-brand-accent" : "border-brand-base"
|
|
} ${isDragReject ? "bg-red-100" : ""}`}
|
|
>
|
|
<input {...getInputProps()} />
|
|
<span className="flex items-center gap-2">
|
|
{isDragActive ? (
|
|
<p>Drop here...</p>
|
|
) : fileError ? (
|
|
<p className="text-center text-red-500">{fileError}</p>
|
|
) : isLoading ? (
|
|
<p className="text-center">Uploading...</p>
|
|
) : (
|
|
<p className="text-center">Click or drag a file here</p>
|
|
)}
|
|
</span>
|
|
</div>
|
|
);
|
|
};
|