PromucFlow_constructor/app/client/src/components/ads/FilePicker.tsx
Kaushik Varanasi 3a6da2d797
Feature/import applications (#4483)
* Added export option to app menu. TODO: call api to download app file

* Added checkbox component and removed unused code

* Added import app without filepicker. Opens modal

* added ability to fetch the exported app

* can download exported application as a json file

* Updated the file picker component to accept other file formats

* WIP import app

* Added functionality to import application json file

* minor fixes

* Made the file type prop mandatory for file picker

* added a test suite for export app

* Test added to check if on import application click, it open a modal

* added a dummy application file for cypress testing

* Added end to end integration test suite
to verify import app feature

* added test to verify the export api status and download file.

* added a linked btn to carry exporting.
- according to latest BE changes

* Removed old redux and saga mechanism for app export

* updated cypress test to validate new flow

* fixed minor linting errors

* updated test case title

* updated the test cases for import/export app feat

* review changes

* added prop to facilitate delayed upload

* added new application file to fixtures. Minor fix to take care of loading state.

* Removed export app modal. Added one click action, to download the file.

* Updated File picker to work with all other files acc to the design.

* Updated the import modal

* updated the import application test

* Added remove upload tooltip

* updated the icons for import/export actions

* removed unused logs

* added hard coded feature flag to hide/show import export feature

Co-authored-by: Pranav Kanade <pranav@appsmith.com>
2021-06-03 11:48:08 +05:30

486 lines
12 KiB
TypeScript

import React, { useEffect, useRef, useState } from "react";
import styled from "styled-components";
import Button, { Category, Size } from "./Button";
import axios from "axios";
import { ReactComponent as UploadIcon } from "../../assets/icons/ads/upload.svg";
import { ReactComponent as UploadSuccessIcon } from "../../assets/icons/ads/upload_success.svg";
import { DndProvider, useDrop, DropTargetMonitor } from "react-dnd";
import HTML5Backend, { NativeTypes } from "react-dnd-html5-backend";
import Text, { TextType } from "./Text";
import { Classes, Variant } from "./common";
import { Toaster } from "./Toast";
import {
createMessage,
ERROR_FILE_TOO_LARGE,
REMOVE_FILE_TOOL_TIP,
} from "constants/messages";
import TooltipComponent from "components/ads/Tooltip";
import { Position } from "@blueprintjs/core/lib/esm/common/position";
import Icon, { IconSize } from "./Icon";
const CLOUDINARY_PRESETS_NAME = "";
const CLOUDINARY_CLOUD_NAME = "";
const FileEndings = {
IMAGE: ".jpeg,.png,.svg",
JSON: ".json",
TEXT: ".txt",
ANY: "*",
};
export enum FileType {
IMAGE = "IMAGE",
JSON = "JSON",
TEXT = "TEXT",
ANY = "ANY",
}
type FilePickerProps = {
onFileUploaded?: (fileUrl: string) => void;
onFileRemoved?: () => void;
fileUploader?: FileUploader;
url?: string;
logoUploadError?: string;
fileType: FileType;
delayedUpload?: boolean;
};
const ContainerDiv = styled.div<{
isUploaded: boolean;
isActive: boolean;
canDrop: boolean;
fileType: FileType;
}>`
width: 320px;
height: 190px;
background-color: ${(props) => props.theme.colors.filePicker.bg};
position: relative;
#fileInput {
display: none;
}
.drag-drop-text {
margin: ${(props) => props.theme.spaces[6]}px 0
${(props) => props.theme.spaces[6]}px 0;
color: ${(props) => props.theme.colors.filePicker.color};
}
.upload-form-container {
width: 100%;
height: 100%;
display: grid;
place-items: center;
background-repeat: no-repeat;
background-position: center;
background-size: contain;
}
.centered {
justify-content: center;
flex-direction: column;
align-items: center;
.success-container {
display: flex;
align-items: center;
.success-icon {
margin-right: ${(props) => props.theme.spaces[4]}px;
}
.success-text {
color: #03b365;
margin-right: ${(props) => props.theme.spaces[4]}px;
}
}
}
.file-description {
width: 95%;
margin: 0 auto;
margin-top: ${(props) =>
props.fileType === FileType.IMAGE ? "auto" : "0px"};
margin-bottom: ${(props) => props.theme.spaces[6] + 1}px;
display: none;
}
.file-spec {
margin-bottom: ${(props) => props.theme.spaces[3]}px;
span {
margin-right: ${(props) => props.theme.spaces[4]}px;
}
}
.progress-container {
width: 100%;
background: ${(props) => props.theme.colors.filePicker.progress};
transition: height 0.2s;
}
.progress-inner {
background-color: ${(props) => props.theme.colors.success.light};
transition: width 0.4s ease;
height: ${(props) => props.theme.spaces[1]}px;
border-radius: ${(props) => props.theme.spaces[1] - 1}px;
width: 0%;
}
.button-wrapper {
display: flex;
flex-direction: column;
align-items: center;
}
.remove-button {
display: none;
position: absolute;
bottom: 0;
right: 0;
background: linear-gradient(
180deg,
${(props) => props.theme.colors.filePicker.shadow.from},
${(props) => props.theme.colors.filePicker.shadow.to}
);
opacity: 0.6;
width: 100%;
a {
width: 110px;
margin: ${(props) => props.theme.spaces[13]}px
${(props) => props.theme.spaces[3]}px
${(props) => props.theme.spaces[3]}px auto;
.${Classes.ICON} {
margin-right: ${(props) => props.theme.spaces[2] - 1}px;
}
}
}
&:hover {
.remove-button {
display: ${(props) => (props.isUploaded ? "block" : "none")};
}
}
`;
const IconWrapper = styled.div`
width: ${(props) => props.theme.spaces[9]}px;
padding-left: ${(props) => props.theme.spaces[2]}px;
`;
export type SetProgress = (percentage: number) => void;
export type UploadCallback = (url: string) => void;
export type FileUploader = (
file: any,
setProgress: SetProgress,
onUpload: UploadCallback,
) => void;
export function CloudinaryUploader(
file: any,
setProgress: SetProgress,
onUpload: UploadCallback,
) {
const formData = new FormData();
formData.append("upload_preset", CLOUDINARY_PRESETS_NAME);
if (file) {
formData.append("file", file);
}
axios
.post(
`https://api.cloudinary.com/v1_1/${CLOUDINARY_CLOUD_NAME}/image/upload`,
formData,
{
headers: {
"Content-Type": "multipart/form-data",
},
onUploadProgress: function(progressEvent: ProgressEvent) {
const uploadPercentage = Math.round(
(progressEvent.loaded / progressEvent.total) * 100,
);
setProgress(uploadPercentage);
},
},
)
.then((data) => {
onUpload(data.data.url);
})
.catch((error) => {
console.error("error in file uploading", error);
});
}
function FilePickerComponent(props: FilePickerProps) {
const { fileType, logoUploadError } = props;
const [fileInfo, setFileInfo] = useState<{ name: string; size: number }>({
name: "",
size: 0,
});
const [isUploaded, setIsUploaded] = useState<boolean>(false);
const [fileUrl, setFileUrl] = useState("");
const [{ canDrop, isOver }, drop] = useDrop({
accept: [NativeTypes.FILE],
drop(item, monitor) {
onDrop(monitor);
},
collect: (monitor) => ({
isOver: monitor.isOver(),
canDrop: monitor.canDrop(),
}),
});
const inputRef = useRef<HTMLInputElement>(null);
const bgRef = useRef<HTMLDivElement>(null);
const progressRef = useRef<HTMLDivElement>(null);
const fileDescRef = useRef<HTMLDivElement>(null);
const fileContainerRef = useRef<HTMLDivElement>(null);
function ButtonClick(event: React.MouseEvent<HTMLElement>) {
event.preventDefault();
if (inputRef.current) {
inputRef.current.click();
}
}
function onDrop(monitor: DropTargetMonitor) {
if (monitor) {
const files = monitor.getItem().files;
if (!files) {
return;
}
handleFileUpload(files);
}
}
function setProgress(uploadPercentage: number) {
if (progressRef.current) {
progressRef.current.style.width = `${uploadPercentage}%`;
}
if (uploadPercentage === 100) {
setIsUploaded(true);
if (fileDescRef.current && bgRef.current && fileType === FileType.IMAGE) {
fileDescRef.current.style.display = "none";
bgRef.current.style.opacity = "1";
}
}
}
function onUpload(url: string) {
props.onFileUploaded && props.onFileUploaded(url);
}
function handleFileUpload(files: FileList | null) {
if (fileType === FileType.IMAGE) {
handleImageFileUpload(files);
} else {
handleOtherFileUpload(files);
}
}
function handleOtherFileUpload(files: FileList | null) {
const file = files && files[0];
let fileSize = 0;
if (!file) {
return;
}
fileSize = Math.floor(file.size / 1024);
setFileInfo({ name: file.name, size: fileSize });
if (props.delayedUpload) {
setIsUploaded(true);
setProgress(100);
}
if (fileDescRef.current) {
fileDescRef.current.style.display = "flex";
}
if (fileContainerRef.current) {
fileContainerRef.current.style.display = "none";
}
props.fileUploader && props.fileUploader(file, setProgress, onUpload);
}
function handleImageFileUpload(files: FileList | null) {
const file = files && files[0];
let fileSize = 0;
if (!file) {
return;
}
fileSize = Math.floor(file.size / 1024);
setFileInfo({ name: file.name, size: fileSize });
if (fileSize < 250) {
if (bgRef.current) {
bgRef.current.style.backgroundImage = `url(${URL.createObjectURL(
file,
)})`;
bgRef.current.style.opacity = "0.5";
}
if (fileDescRef.current) {
fileDescRef.current.style.display = "block";
}
if (fileContainerRef.current) {
fileContainerRef.current.style.display = "none";
}
/* set form data and send api request */
props.fileUploader && props.fileUploader(file, setProgress, onUpload);
} else {
Toaster.show({
text: createMessage(ERROR_FILE_TOO_LARGE, "250 KB"),
variant: Variant.warning,
});
}
}
function removeFile() {
if (fileContainerRef.current) {
setFileUrl("");
if (fileDescRef.current) {
fileDescRef.current.style.display = "none";
}
fileContainerRef.current.style.display = "flex";
if (bgRef.current) {
bgRef.current.style.backgroundImage = "url('')";
}
setIsUploaded(false);
props.onFileRemoved && props.onFileRemoved();
}
}
const isActive = canDrop && isOver;
useEffect(() => {
if (props.url) {
const urlKeys = props.url.split("/");
if (urlKeys[urlKeys.length - 1] !== "null") {
setFileUrl(props.url);
} else {
setFileUrl("");
}
}
}, [props.url]);
// Following hook should be used only if file type is image.
useEffect(() => {
if (fileUrl && !isUploaded && fileType === FileType.IMAGE) {
setIsUploaded(true);
if (bgRef.current) {
bgRef.current.style.backgroundImage = `url(${fileUrl})`;
bgRef.current.style.opacity = "1";
}
if (fileDescRef.current) {
fileDescRef.current.style.display = "none";
}
if (fileContainerRef.current) {
fileContainerRef.current.style.display = "none";
}
}
}, [fileUrl, logoUploadError]);
// <UploadSuccessIcon />
const uploadFileForm = (
<div className="button-wrapper" ref={fileContainerRef}>
<UploadIcon />
<Text className="drag-drop-text" type={TextType.P2}>
Drag & Drop files to upload or
</Text>
<form>
<input
accept={FileEndings[fileType]}
id="fileInput"
multiple={false}
onChange={(el) => handleFileUpload(el.target.files)}
ref={inputRef}
type="file"
value={""}
/>
<Button
category={Category.tertiary}
onClick={(el) => ButtonClick(el)}
size={Size.medium}
text="Browse"
/>
</form>
</div>
);
const uploadStatus = (
<div className="file-spec">
<Text type={TextType.H6}>{fileInfo.name}</Text>
<Text type={TextType.H6}>{fileInfo.size}KB</Text>
</div>
);
const imageUploadComponent = (
<>
<div className="upload-form-container" ref={bgRef}>
{uploadFileForm}
<div className="file-description" id="fileDesc" ref={fileDescRef}>
{uploadStatus}
<div className="progress-container">
<div className="progress-inner" ref={progressRef} />
</div>
</div>
</div>
<div className="remove-button">
<Button
category={Category.tertiary}
icon="delete"
onClick={() => removeFile()}
size={Size.medium}
text="remove"
/>
</div>
</>
);
const uploadComponent = (
<div className="upload-form-container">
{uploadFileForm}
<div
className="file-description centered"
id="fileDesc"
ref={fileDescRef}
>
{uploadStatus}
<div className="success-container">
<UploadSuccessIcon className="success-icon" />
<Text className="success-text" type={TextType.H4}>
Successfully Uploaded!
</Text>
<TooltipComponent
content={REMOVE_FILE_TOOL_TIP()}
position={Position.TOP}
>
<IconWrapper className="icon-wrapper" onClick={() => removeFile()}>
<Icon name="close" size={IconSize.XL} />
</IconWrapper>
</TooltipComponent>
</div>
</div>
</div>
);
return (
<ContainerDiv
canDrop={canDrop}
fileType={fileType}
isActive={isActive}
isUploaded={isUploaded}
ref={drop}
>
{fileType === FileType.IMAGE ? imageUploadComponent : uploadComponent}
</ContainerDiv>
);
}
function FilePicker(props: FilePickerProps) {
return (
<DndProvider backend={HTML5Backend}>
<FilePickerComponent {...props} />
</DndProvider>
);
}
export default FilePicker;