import { useDropzone } from 'react-dropzone';
// @mui
import { alpha } from '@mui/material/styles';
import Box from '@mui/material/Box';
import Stack from '@mui/material/Stack';
import Button from '@mui/material/Button';
import IconButton from '@mui/material/IconButton';
import Typography from '@mui/material/Typography';
// assets
import { UploadIllustration } from 'src/assets/illustrations';
//
import Iconify from '../iconify';
//
import { UploadProps } from './types';
import RejectionFiles from './errors-rejection-files';
import MultiFilePreview from './preview-multi-file';
import SingleFilePreview from './preview-single-file';
// ----------------------------------------------------------------------
export default function Upload({
disabled,
multiple = false,
error,
helperText,
//
file,
onDelete,
//
files,
thumbnail,
onUpload,
onRemove,
onRemoveAll,
sx,
...other
}: UploadProps) {
const { getRootProps, getInputProps, isDragActive, isDragReject, fileRejections } = useDropzone({
multiple,
disabled,
...other,
});
const hasFile = !!file && !multiple;
const hasFiles = !!files && multiple && !!files.length;
const hasError = isDragReject || !!error;
const renderPlaceholder = (
Drop or Select file
Drop files here or click
browse
thorough your machine
);
const renderSinglePreview = (
);
const removeSinglePreview = hasFile && onDelete && (
alpha(theme.palette.common.white, 0.8),
bgcolor: (theme) => alpha(theme.palette.grey[900], 0.72),
'&:hover': {
bgcolor: (theme) => alpha(theme.palette.grey[900], 0.48),
},
}}
>
);
const renderMultiPreview = hasFiles && (
<>
{onRemoveAll && (
)}
{onUpload && (
}
>
Upload
)}
>
);
return (
alpha(theme.palette.grey[500], 0.08),
border: (theme) => `1px dashed ${alpha(theme.palette.grey[500], 0.2)}`,
transition: (theme) => theme.transitions.create(['opacity', 'padding']),
'&:hover': {
opacity: 0.72,
},
...(isDragActive && {
opacity: 0.72,
}),
...(disabled && {
opacity: 0.48,
pointerEvents: 'none',
}),
...(hasError && {
color: 'error.main',
borderColor: 'error.main',
bgcolor: (theme) => alpha(theme.palette.error.main, 0.08),
}),
...(hasFile && {
padding: '24% 0',
}),
}}
>
{hasFile ? renderSinglePreview : renderPlaceholder}
{removeSinglePreview}
{helperText && helperText}
{renderMultiPreview}
);
}