Skip to content

Commit 95740d7

Browse files
committed
Merge branch 'OmG2011-image_upload_progress_track'
2 parents 0772640 + 86be8ce commit 95740d7

File tree

2 files changed

+37
-8
lines changed

2 files changed

+37
-8
lines changed

client/src/ImageUpload/index.jsx

+35-7
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ const ImageUpload = ({ onImageUpload }) => {
1010
const { t } = useTranslation();
1111
const { showSnackbar } = useSnackbar();
1212
const [images, setImages] = useState([]);
13+
const [loading, setLoading] = useState(false);
14+
const [progress, setProgress] = useState(0);
1315

1416
const onDrop = useCallback((acceptedFiles, fileRejections) => {
1517
if (fileRejections.length) {
@@ -19,20 +21,20 @@ const ImageUpload = ({ onImageUpload }) => {
1921
return;
2022
}
2123
}
22-
24+
2325
const totalImages = images.length + acceptedFiles.length;
2426
if (totalImages > 2) {
2527
showSnackbar(t("error.configuration.image_upload.max"), "error");
2628
return;
2729
}
28-
30+
2931
const newImages = acceptedFiles.map((file) => {
3032
return Object.assign(file, {
3133
preview: URL.createObjectURL(file),
3234
imageName: file.name,
3335
});
3436
});
35-
37+
3638
uploadImages(newImages);
3739
}, [images, onImageUpload, showSnackbar]);
3840

@@ -44,13 +46,19 @@ const ImageUpload = ({ onImageUpload }) => {
4446
});
4547

4648
try {
49+
setLoading(true);
4750
const response = await axios.post(`${import.meta.env.VITE_SERVER_URL}/upload`, formData, {
4851
headers: {
4952
'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)
5058
}
5159
});
5260
showSnackbar(response.data.message, 'success');
53-
61+
5462
const uploadedFiles = response.data.files;
5563
const uploadedImages = uploadedFiles.map(file => ({
5664
preview: file.url,
@@ -59,13 +67,16 @@ const ImageUpload = ({ onImageUpload }) => {
5967
setImages(uploadedImages);
6068
onImageUpload(uploadedImages);
6169
} catch (error) {
62-
if(error?.data){
70+
if (error?.data) {
6371
showSnackbar(error.data.message, 'error');
6472
}else {
6573
showSnackbar(t("error.server_connection"), 'error')
6674
}
6775
console.error('Error uploading images:', error);
6876
}
77+
finally {
78+
setLoading(false);
79+
}
6980
};
7081

7182
const deleteImage = async (filename) => {
@@ -86,7 +97,7 @@ const ImageUpload = ({ onImageUpload }) => {
8697
console.error('Error deleting image:', error);
8798
}
8899
};
89-
100+
90101
const handleRemoveImage = (index) => {
91102
const imageToRemove = images[index];
92103
deleteImage(imageToRemove.filename);
@@ -122,7 +133,24 @@ const ImageUpload = ({ onImageUpload }) => {
122133
{isDragActive ? (
123134
<Typography sx={{fontSize: "14px", color: "rgb(117, 117, 117)" }}>{t("configuration.image_upload.file_drop")}</Typography>
124135
) : (
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+
</>
126154
)}
127155
</Box>
128156
<Box display="flex" flexWrap="wrap" gap="1rem">

client/src/Localization/translation-en-EN.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ const translationEnEN = {
5959
"helptext_circle": "Add Circle",
6060
"comment_placeholder": "Write comment here...",
6161
"image_tags": "Image Tags",
62-
"image_tags_classification_placeholder": "Image Classification"
62+
"image_tags_classification_placeholder": "Image Classification",
63+
"loading": "Loading...",
6364
};
6465

6566
export default translationEnEN;

0 commit comments

Comments
 (0)