add wipe fs

This commit is contained in:
2020-12-20 13:16:18 +01:00
parent 2e91df6260
commit 62cb680181
5 changed files with 58 additions and 33 deletions

View File

@@ -1,26 +1,32 @@
class Model {
constructor() {}
constructor() {
// Initialize isomorphic-git with a file system
window.fs = new LightningFS("fs");
// I prefer using the Promisified version honestly
window.pfs = window.fs.promises;
window.dir = "/test-clone";
}
async dirList(dir = "/") {
let list = await pfs.readdir(dir);
for (let u = 0; u < list.length; u++) {
let re = /^\..*$/;
if (re.test(list[u])) {
list.splice(u, 1)
u--
list.splice(u, 1);
u--;
}
}
let dirtree = [dir];
for (let i = 0; i < list.length; i++) {
dirtree[i + 1] = list[i];
let itemStat = await pfs.stat(dirtree[0] + dirtree[i+1]);
let itemStat = await pfs.stat(dirtree[0] + dirtree[i + 1]);
if (itemStat.isDirectory()) {
dirtree[i+1] = await this.dirList(dirtree[0] + dirtree[i+1] + "/");
dirtree[i + 1] = await this.dirList(dirtree[0] + dirtree[i + 1] + "/");
}
}
@@ -30,7 +36,12 @@ class Model {
async dirTree(dir = "/") {
var tree = await this.dirList(dir);
console.log(tree);
//console.log(tree);
return tree;
}
purgeFS() {
delete window.fs;
window.fs = new LightningFS("fs", { wipe: true });
}
}