forked from github/plane
feat: upload cover image for project (#1668)
This commit is contained in:
parent
6fe99c7f3e
commit
10059b2150
@ -1,8 +1,15 @@
|
|||||||
import React, { useEffect, useState, useRef } from "react";
|
import React, { useEffect, useState, useRef, useCallback } from "react";
|
||||||
|
|
||||||
|
// next
|
||||||
|
import Image from "next/image";
|
||||||
|
import { useRouter } from "next/router";
|
||||||
|
|
||||||
// swr
|
// swr
|
||||||
import useSWR from "swr";
|
import useSWR from "swr";
|
||||||
|
|
||||||
|
// react-dropdown
|
||||||
|
import { useDropzone } from "react-dropzone";
|
||||||
|
|
||||||
// headless ui
|
// headless ui
|
||||||
import { Tab, Transition, Popover } from "@headlessui/react";
|
import { Tab, Transition, Popover } from "@headlessui/react";
|
||||||
|
|
||||||
@ -12,6 +19,7 @@ import fileService from "services/file.service";
|
|||||||
// components
|
// components
|
||||||
import { Input, Spinner, PrimaryButton } from "components/ui";
|
import { Input, Spinner, PrimaryButton } from "components/ui";
|
||||||
// hooks
|
// hooks
|
||||||
|
import useWorkspaceDetails from "hooks/use-workspace-details";
|
||||||
import useOutsideClickDetector from "hooks/use-outside-click-detector";
|
import useOutsideClickDetector from "hooks/use-outside-click-detector";
|
||||||
|
|
||||||
const unsplashEnabled =
|
const unsplashEnabled =
|
||||||
@ -38,7 +46,13 @@ type Props = {
|
|||||||
export const ImagePickerPopover: React.FC<Props> = ({ label, value, onChange }) => {
|
export const ImagePickerPopover: React.FC<Props> = ({ label, value, onChange }) => {
|
||||||
const ref = useRef<HTMLDivElement>(null);
|
const ref = useRef<HTMLDivElement>(null);
|
||||||
|
|
||||||
const [isOpen, setIsOpen] = useState(false);
|
const router = useRouter();
|
||||||
|
const { workspaceSlug } = router.query;
|
||||||
|
|
||||||
|
const [image, setImage] = useState<File | null>(null);
|
||||||
|
const [isImageUploading, setIsImageUploading] = useState(false);
|
||||||
|
|
||||||
|
const [isOpen, setIsOpen] = useState(true);
|
||||||
const [searchParams, setSearchParams] = useState("");
|
const [searchParams, setSearchParams] = useState("");
|
||||||
const [formData, setFormData] = useState({
|
const [formData, setFormData] = useState({
|
||||||
search: "",
|
search: "",
|
||||||
@ -48,10 +62,49 @@ export const ImagePickerPopover: React.FC<Props> = ({ label, value, onChange })
|
|||||||
fileService.getUnsplashImages(1, searchParams)
|
fileService.getUnsplashImages(1, searchParams)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
const { workspaceDetails } = useWorkspaceDetails();
|
||||||
|
|
||||||
useOutsideClickDetector(ref, () => {
|
useOutsideClickDetector(ref, () => {
|
||||||
setIsOpen(false);
|
setIsOpen(false);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const onDrop = useCallback((acceptedFiles: File[]) => {
|
||||||
|
setImage(acceptedFiles[0]);
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const { getRootProps, getInputProps, isDragActive } = useDropzone({
|
||||||
|
onDrop,
|
||||||
|
});
|
||||||
|
|
||||||
|
const handleSubmit = async () => {
|
||||||
|
setIsImageUploading(true);
|
||||||
|
|
||||||
|
if (!image || !workspaceSlug) return;
|
||||||
|
|
||||||
|
const formData = new FormData();
|
||||||
|
formData.append("asset", image);
|
||||||
|
formData.append("attributes", JSON.stringify({}));
|
||||||
|
|
||||||
|
fileService
|
||||||
|
.uploadFile(workspaceSlug.toString(), formData)
|
||||||
|
.then((res) => {
|
||||||
|
const oldValue = value;
|
||||||
|
const isUnsplashImage = oldValue?.split("/")[2] === "images.unsplash.com";
|
||||||
|
|
||||||
|
const imageUrl = res.asset;
|
||||||
|
onChange(imageUrl);
|
||||||
|
setIsImageUploading(false);
|
||||||
|
setImage(null);
|
||||||
|
|
||||||
|
if (isUnsplashImage) return;
|
||||||
|
|
||||||
|
if (oldValue && workspaceDetails) fileService.deleteFile(workspaceDetails.id, oldValue);
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
console.log(err);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!images || value !== null) return;
|
if (!images || value !== null) return;
|
||||||
onChange(images[0].urls.regular);
|
onChange(images[0].urls.regular);
|
||||||
@ -77,22 +130,24 @@ export const ImagePickerPopover: React.FC<Props> = ({ label, value, onChange })
|
|||||||
leaveTo="transform opacity-0 scale-95"
|
leaveTo="transform opacity-0 scale-95"
|
||||||
>
|
>
|
||||||
<Popover.Panel className="absolute right-0 z-10 mt-2 rounded-md border border-custom-border-200 bg-custom-background-80 shadow-lg">
|
<Popover.Panel className="absolute right-0 z-10 mt-2 rounded-md border border-custom-border-200 bg-custom-background-80 shadow-lg">
|
||||||
<div className="h-96 w-80 overflow-auto rounded border border-custom-border-300 bg-custom-background-100 p-3 shadow-2xl sm:max-w-2xl md:w-96 lg:w-[40rem]">
|
<div className="h-96 flex flex-col w-80 overflow-auto rounded border border-custom-border-300 bg-custom-background-100 p-3 shadow-2xl sm:max-w-2xl md:w-96 lg:w-[40rem]">
|
||||||
<Tab.Group>
|
<Tab.Group>
|
||||||
<Tab.List as="span" className="inline-block rounded bg-custom-background-80 p-1">
|
<div>
|
||||||
{tabOptions.map((tab) => (
|
<Tab.List as="span" className="inline-block rounded bg-custom-background-80 p-1">
|
||||||
<Tab
|
{tabOptions.map((tab) => (
|
||||||
key={tab.key}
|
<Tab
|
||||||
className={({ selected }) =>
|
key={tab.key}
|
||||||
`rounded py-1 px-4 text-center text-sm outline-none transition-colors ${
|
className={({ selected }) =>
|
||||||
selected ? "bg-custom-primary text-white" : "text-custom-text-100"
|
`rounded py-1 px-4 text-center text-sm outline-none transition-colors ${
|
||||||
}`
|
selected ? "bg-custom-primary text-white" : "text-custom-text-100"
|
||||||
}
|
}`
|
||||||
>
|
}
|
||||||
{tab.title}
|
>
|
||||||
</Tab>
|
{tab.title}
|
||||||
))}
|
</Tab>
|
||||||
</Tab.List>
|
))}
|
||||||
|
</Tab.List>
|
||||||
|
</div>
|
||||||
<Tab.Panels className="h-full w-full flex-1 overflow-y-auto overflow-x-hidden">
|
<Tab.Panels className="h-full w-full flex-1 overflow-y-auto overflow-x-hidden">
|
||||||
<Tab.Panel className="h-full w-full space-y-4">
|
<Tab.Panel className="h-full w-full space-y-4">
|
||||||
<div className="flex gap-x-2 pt-7">
|
<div className="flex gap-x-2 pt-7">
|
||||||
@ -133,8 +188,57 @@ export const ImagePickerPopover: React.FC<Props> = ({ label, value, onChange })
|
|||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</Tab.Panel>
|
</Tab.Panel>
|
||||||
<Tab.Panel className="flex h-full w-full flex-col items-center justify-center">
|
<Tab.Panel className="h-full w-full flex flex-col items-center justify-center">
|
||||||
<p>Coming Soon...</p>
|
<div className="w-full h-full flex flex-col py-5">
|
||||||
|
<div className="flex items-center gap-3 w-full flex-1">
|
||||||
|
<div
|
||||||
|
{...getRootProps()}
|
||||||
|
className={`relative grid h-80 w-full cursor-pointer place-items-center rounded-lg p-12 text-center focus:outline-none focus:ring-2 focus:ring-custom-primary focus:ring-offset-2 ${
|
||||||
|
(image === null && isDragActive) || !value
|
||||||
|
? "border-2 border-dashed border-custom-border-200 hover:bg-custom-background-90"
|
||||||
|
: ""
|
||||||
|
}`}
|
||||||
|
>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
className="absolute top-0 right-0 z-40 -translate-y-1/2 rounded bg-custom-background-90 px-2 py-0.5 text-xs font-medium text-custom-text-200"
|
||||||
|
>
|
||||||
|
Edit
|
||||||
|
</button>
|
||||||
|
{image !== null || (value && value !== "") ? (
|
||||||
|
<>
|
||||||
|
<Image
|
||||||
|
layout="fill"
|
||||||
|
objectFit="cover"
|
||||||
|
src={image ? URL.createObjectURL(image) : value ? value : ""}
|
||||||
|
alt="image"
|
||||||
|
className="rounded-lg"
|
||||||
|
/>
|
||||||
|
</>
|
||||||
|
) : (
|
||||||
|
<div>
|
||||||
|
<span className="mt-2 block text-sm font-medium text-custom-text-200">
|
||||||
|
{isDragActive
|
||||||
|
? "Drop image here to upload"
|
||||||
|
: "Drag & drop image here"}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<input {...getInputProps()} type="text" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="mt-5 sm:mt-6 flex justify-end flex-auto">
|
||||||
|
<PrimaryButton
|
||||||
|
onClick={handleSubmit}
|
||||||
|
disabled={!image}
|
||||||
|
loading={isImageUploading}
|
||||||
|
>
|
||||||
|
{isImageUploading ? "Uploading..." : "Upload & Save"}
|
||||||
|
</PrimaryButton>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</Tab.Panel>
|
</Tab.Panel>
|
||||||
</Tab.Panels>
|
</Tab.Panels>
|
||||||
</Tab.Group>
|
</Tab.Group>
|
||||||
|
Loading…
Reference in New Issue
Block a user