fix transfert

This commit is contained in:
GMrrc 2024-12-11 16:04:40 +01:00
parent 99fa335004
commit dd4521324c
2 changed files with 17 additions and 20 deletions

View File

@ -407,23 +407,22 @@ export default {
try {
this.isTransfering = true;
const file = this.file;
if (!file) return;
if (file.isList) {
await this.moveListOfFiles(file);
return;
}
if (!file) return;
if (file.isDirectory) {
await this.moveFilesOfFolder(file, '');
} else {
this.transferProgress = 25;
if (file.content && typeof file.content.arrayBuffer === 'function') {
file.content = await file.content.arrayBuffer();
if (file.isDirectory) {
await this.moveFilesOfFolder(file, '');
} else {
this.transferProgress = 25;
if (file.content && typeof file.content.arrayBuffer === 'function') {
file.content = await file.content.arrayBuffer();
}
this.transferProgress = 50;
await this.moveFileToTarget(file, '');
this.transferProgress = 100;
}
this.transferProgress = 50;
await this.moveFileToTarget(file, '');
this.transferProgress = 100;
}
this.isTransfering = false;
@ -443,14 +442,15 @@ export default {
this.isDroppable = true;
},
async moveListOfFiles(files) {
for (const file of files) {
for (const file of files.children) {
if (file.isDirectory) {
await this.moveFilesOfFolder(file, '');
//just create the folder
await this.createFolder(file, file.parentPath + '/');
} else {
if (file.content && typeof file.content.arrayBuffer === 'function') {
file.content = await file.content.arrayBuffer();
}
await this.moveFileToTarget(file, '');
await this.moveFileToTarget(file, file.parentPath + '/');
}
}
},

View File

@ -72,7 +72,6 @@
{{ formatFileSize(file.size) }}
</div>
</div>
</div>
</div>
<div v-if="isLoading" class="flex h-full items-center justify-center">
@ -333,9 +332,7 @@ export default {
unzip: Promise.all(this.cochedFiles.map(file => file.unzip))
};
try {
const files = getFilesFromFolder(folder);
const filesToUnzip = files.map(file => file.unzip);
await Promise.all(filesToUnzip);
await folder.unzip;
this.$emit('file-upload', folder);
} catch (error) {
console.error('Erreur lors du drag start :', error);