Initial commit, vypis adresarove struktury
This commit is contained in:
22
js/controller.js
Normal file
22
js/controller.js
Normal 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) {}
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user