opti for unzip

This commit is contained in:
GMrrc
2024-11-20 15:23:12 +01:00
parent e2752c2440
commit df12c52a2d
3 changed files with 21 additions and 30 deletions

View File

@ -147,32 +147,28 @@ export default {
const isDirectory = i < pathParts.length - 1 || file.dir;
let existing = currentLevel.find(f => f.name === partName && f.isDirectory === isDirectory);
let promise;
if (!isDirectory) {
promise = file.async("blob").then(content => {
existing.content = content;
});
}
if (!existing) {
existing = {
name: partName,
isDirectory,
size: isDirectory ? 0 : file._data.uncompressedSize,
content: isDirectory ? null : '', // Initialiser 'content' pour les fichiers
children: isDirectory ? [] : null
children: isDirectory ? [] : null,
unzip: promise
};
currentLevel.push(existing);
}
if (isDirectory) {
currentLevel = existing.children;
} else {
// Lire le contenu des fichiers non répertoires
if (file.dir) continue;
if (!existing && existing.size > 50 * 1024 * 1024) {
console.warn(`Fichier ${existing.name} trop volumineux pour être chargé`);
continue;
}
const promise = file.async("blob").then(content => {
existing.content = content;
});
filePromises.push(promise);
}
}
});
@ -192,8 +188,6 @@ export default {
};
initializeFolderMap(this.zipContent);
await Promise.all(filePromises);
console.log('Contenu du ZIP chargé avec succès');
} catch (error) {
console.error('Erreur lors du chargement du contenu du ZIP :', error);
@ -213,6 +207,7 @@ export default {
},
async onDragStart(file) {
console.log('Drag start', file);
await file.unzip;
this.$emit('file-upload', file);
}
},