1 | import { useDropzone } from 'react-dropzone';
|
---|
2 | // @mui
|
---|
3 | import { alpha } from '@mui/material/styles';
|
---|
4 | import Box from '@mui/material/Box';
|
---|
5 | import Stack from '@mui/material/Stack';
|
---|
6 | import Typography from '@mui/material/Typography';
|
---|
7 | //
|
---|
8 | import Iconify from '../iconify';
|
---|
9 | import Image from '../image';
|
---|
10 | //
|
---|
11 | import { UploadProps } from './types';
|
---|
12 | import RejectionFiles from './errors-rejection-files';
|
---|
13 |
|
---|
14 | // ----------------------------------------------------------------------
|
---|
15 |
|
---|
16 | export default function UploadAvatar({
|
---|
17 | error,
|
---|
18 | file,
|
---|
19 | disabled,
|
---|
20 | helperText,
|
---|
21 | sx,
|
---|
22 | ...other
|
---|
23 | }: UploadProps) {
|
---|
24 | const { getRootProps, getInputProps, isDragActive, isDragReject, fileRejections } = useDropzone({
|
---|
25 | multiple: false,
|
---|
26 | disabled,
|
---|
27 | accept: {
|
---|
28 | 'image/*': [],
|
---|
29 | },
|
---|
30 | ...other,
|
---|
31 | });
|
---|
32 |
|
---|
33 | const hasFile = !!file;
|
---|
34 |
|
---|
35 | const hasError = isDragReject || !!error;
|
---|
36 |
|
---|
37 | const imgUrl = typeof file === 'string' ? file : file?.preview;
|
---|
38 |
|
---|
39 | const renderPreview = hasFile && (
|
---|
40 | <Image
|
---|
41 | alt="avatar"
|
---|
42 | src={imgUrl}
|
---|
43 | sx={{
|
---|
44 | width: 1,
|
---|
45 | height: 1,
|
---|
46 | borderRadius: '50%',
|
---|
47 | }}
|
---|
48 | />
|
---|
49 | );
|
---|
50 |
|
---|
51 | const renderPlaceholder = (
|
---|
52 | <Stack
|
---|
53 | alignItems="center"
|
---|
54 | justifyContent="center"
|
---|
55 | spacing={1}
|
---|
56 | className="upload-placeholder"
|
---|
57 | sx={{
|
---|
58 | top: 0,
|
---|
59 | left: 0,
|
---|
60 | width: 1,
|
---|
61 | height: 1,
|
---|
62 | zIndex: 9,
|
---|
63 | borderRadius: '50%',
|
---|
64 | position: 'absolute',
|
---|
65 | color: 'text.disabled',
|
---|
66 | bgcolor: (theme) => alpha(theme.palette.grey[500], 0.08),
|
---|
67 | transition: (theme) =>
|
---|
68 | theme.transitions.create(['opacity'], {
|
---|
69 | duration: theme.transitions.duration.shorter,
|
---|
70 | }),
|
---|
71 | '&:hover': {
|
---|
72 | opacity: 0.72,
|
---|
73 | },
|
---|
74 | ...(hasError && {
|
---|
75 | color: 'error.main',
|
---|
76 | bgcolor: (theme) => alpha(theme.palette.error.main, 0.08),
|
---|
77 | }),
|
---|
78 | ...(hasFile && {
|
---|
79 | zIndex: 9,
|
---|
80 | opacity: 0,
|
---|
81 | color: 'common.white',
|
---|
82 | bgcolor: (theme) => alpha(theme.palette.grey[900], 0.64),
|
---|
83 | }),
|
---|
84 | }}
|
---|
85 | >
|
---|
86 | <Iconify icon="solar:camera-add-bold" width={32} />
|
---|
87 |
|
---|
88 | <Typography variant="caption">{file ? 'Update photo' : 'Upload photo'}</Typography>
|
---|
89 | </Stack>
|
---|
90 | );
|
---|
91 |
|
---|
92 | const renderContent = (
|
---|
93 | <Box
|
---|
94 | sx={{
|
---|
95 | width: 1,
|
---|
96 | height: 1,
|
---|
97 | overflow: 'hidden',
|
---|
98 | borderRadius: '50%',
|
---|
99 | position: 'relative',
|
---|
100 | }}
|
---|
101 | >
|
---|
102 | {renderPreview}
|
---|
103 | {renderPlaceholder}
|
---|
104 | </Box>
|
---|
105 | );
|
---|
106 |
|
---|
107 | return (
|
---|
108 | <>
|
---|
109 | <Box
|
---|
110 | {...getRootProps()}
|
---|
111 | sx={{
|
---|
112 | p: 1,
|
---|
113 | m: 'auto',
|
---|
114 | width: 144,
|
---|
115 | height: 144,
|
---|
116 | cursor: 'pointer',
|
---|
117 | overflow: 'hidden',
|
---|
118 | borderRadius: '50%',
|
---|
119 | border: (theme) => `1px dashed ${alpha(theme.palette.grey[500], 0.2)}`,
|
---|
120 | ...(isDragActive && {
|
---|
121 | opacity: 0.72,
|
---|
122 | }),
|
---|
123 | ...(disabled && {
|
---|
124 | opacity: 0.48,
|
---|
125 | pointerEvents: 'none',
|
---|
126 | }),
|
---|
127 | ...(hasError && {
|
---|
128 | borderColor: 'error.main',
|
---|
129 | }),
|
---|
130 | ...(hasFile && {
|
---|
131 | ...(hasError && {
|
---|
132 | bgcolor: (theme) => alpha(theme.palette.error.main, 0.08),
|
---|
133 | }),
|
---|
134 | '&:hover .upload-placeholder': {
|
---|
135 | opacity: 1,
|
---|
136 | },
|
---|
137 | }),
|
---|
138 | ...sx,
|
---|
139 | }}
|
---|
140 | >
|
---|
141 | <input {...getInputProps()} />
|
---|
142 |
|
---|
143 | {renderContent}
|
---|
144 | </Box>
|
---|
145 |
|
---|
146 | {helperText && helperText}
|
---|
147 |
|
---|
148 | <RejectionFiles fileRejections={fileRejections} />
|
---|
149 | </>
|
---|
150 | );
|
---|
151 | }
|
---|