fix transfert
This commit is contained in:
parent
99fa335004
commit
dd4521324c
@ -407,25 +407,24 @@ 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;
|
||||
this.transferProgress = 0;
|
||||
this.cancelOperation = 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 + '/');
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user