Initial commit, vypis adresarove struktury

This commit is contained in:
2020-12-19 19:53:31 +01:00
commit 59c2625cd1
7 changed files with 185 additions and 0 deletions

22
js/controller.js Normal file
View File

@@ -0,0 +1,22 @@
class Controller {
constructor(model, view) {
this.model = model;
this.view = view;
// 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";
this.model.dirTree().then(
function (value) {
view.showDirTree(value);
},
function (error) {}
);
}
}