@@ -10,6 +10,8 @@ const ImageUpload = ({ onImageUpload }) => {
10
10
const { t } = useTranslation ( ) ;
11
11
const { showSnackbar } = useSnackbar ( ) ;
12
12
const [ images , setImages ] = useState ( [ ] ) ;
13
+ const [ loading , setLoading ] = useState ( false ) ;
14
+ const [ progress , setProgress ] = useState ( 0 ) ;
13
15
14
16
const onDrop = useCallback ( ( acceptedFiles , fileRejections ) => {
15
17
if ( fileRejections . length ) {
@@ -19,20 +21,20 @@ const ImageUpload = ({ onImageUpload }) => {
19
21
return ;
20
22
}
21
23
}
22
-
24
+
23
25
const totalImages = images . length + acceptedFiles . length ;
24
26
if ( totalImages > 2 ) {
25
27
showSnackbar ( t ( "error.configuration.image_upload.max" ) , "error" ) ;
26
28
return ;
27
29
}
28
-
30
+
29
31
const newImages = acceptedFiles . map ( ( file ) => {
30
32
return Object . assign ( file , {
31
33
preview : URL . createObjectURL ( file ) ,
32
34
imageName : file . name ,
33
35
} ) ;
34
36
} ) ;
35
-
37
+
36
38
uploadImages ( newImages ) ;
37
39
} , [ images , onImageUpload , showSnackbar ] ) ;
38
40
@@ -44,13 +46,19 @@ const ImageUpload = ({ onImageUpload }) => {
44
46
} ) ;
45
47
46
48
try {
49
+ setLoading ( true ) ;
47
50
const response = await axios . post ( `${ import . meta. env . VITE_SERVER_URL } /upload` , formData , {
48
51
headers : {
49
52
'Content-Type' : 'multipart/form-data'
53
+ } ,
54
+ onUploadProgress : ( progressEvent ) => {
55
+ const { loaded, total } = progressEvent ;
56
+ let percentCompleted = Math . floor ( ( loaded * 100 ) / total ) ;
57
+ setProgress ( percentCompleted )
50
58
}
51
59
} ) ;
52
60
showSnackbar ( response . data . message , 'success' ) ;
53
-
61
+
54
62
const uploadedFiles = response . data . files ;
55
63
const uploadedImages = uploadedFiles . map ( file => ( {
56
64
preview : file . url ,
@@ -59,13 +67,16 @@ const ImageUpload = ({ onImageUpload }) => {
59
67
setImages ( uploadedImages ) ;
60
68
onImageUpload ( uploadedImages ) ;
61
69
} catch ( error ) {
62
- if ( error ?. data ) {
70
+ if ( error ?. data ) {
63
71
showSnackbar ( error . data . message , 'error' ) ;
64
72
} else {
65
73
showSnackbar ( t ( "error.server_connection" ) , 'error' )
66
74
}
67
75
console . error ( 'Error uploading images:' , error ) ;
68
76
}
77
+ finally {
78
+ setLoading ( false ) ;
79
+ }
69
80
} ;
70
81
71
82
const deleteImage = async ( filename ) => {
@@ -86,7 +97,7 @@ const ImageUpload = ({ onImageUpload }) => {
86
97
console . error ( 'Error deleting image:' , error ) ;
87
98
}
88
99
} ;
89
-
100
+
90
101
const handleRemoveImage = ( index ) => {
91
102
const imageToRemove = images [ index ] ;
92
103
deleteImage ( imageToRemove . filename ) ;
@@ -122,7 +133,24 @@ const ImageUpload = ({ onImageUpload }) => {
122
133
{ isDragActive ? (
123
134
< Typography sx = { { fontSize : "14px" , color : "rgb(117, 117, 117)" } } > { t ( "configuration.image_upload.file_drop" ) } </ Typography >
124
135
) : (
125
- < Typography sx = { { fontSize : "14px" , color : "rgb(117, 117, 117)" } } > { t ( "configuration.image_upload.description" ) } </ Typography >
136
+ < >
137
+ { loading ? (
138
+ < >
139
+ { progress > 0 && progress < 100 ? (
140
+ < >
141
+ < progress value = { progress } max = { 100 } />
142
+ < p > { progress } %</ p >
143
+ </ >
144
+ ) : (
145
+ < div className = "loading" > { t ( "loading" ) } </ div >
146
+ ) }
147
+ </ >
148
+ ) : (
149
+ < Typography sx = { { fontSize : "14px" , color : "rgb(117, 117, 117)" } } >
150
+ { t ( "configuration.image_upload.description" ) }
151
+ </ Typography >
152
+ ) }
153
+ </ >
126
154
) }
127
155
</ Box >
128
156
< Box display = "flex" flexWrap = "wrap" gap = "1rem" >
0 commit comments