vusion-api
Version:
Vusion Node.js API
87 lines • 3.64 kB
JavaScript
;
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
const fs = require("fs-extra");
const path = require("path");
const FSEntry_1 = require("./FSEntry");
const File_1 = require("./File");
class Directory extends FSEntry_1.default {
constructor(fullPath) {
super(fullPath, true);
}
forceOpen() {
return __awaiter(this, void 0, void 0, function* () {
this.close();
yield this.load();
this.isOpen = true;
});
}
close() {
this.children = undefined;
this.isOpen = false;
}
load() {
return __awaiter(this, void 0, void 0, function* () {
if (!fs.existsSync(this.fullPath))
throw new Error(`Cannot find: ${this.fullPath}`);
const children = [];
const fileNames = yield fs.readdir(this.fullPath);
fileNames.forEach((name) => {
if (name === '.DS_Store' || name === '.git')
return;
const fullPath = path.join(this.fullPath, name);
const isDirectory = fs.statSync(fullPath).isDirectory();
let fsEntry;
if (this.isWatched)
fsEntry = isDirectory ? Directory.fetch(fullPath) : File_1.default.fetch(fullPath);
else
fsEntry = isDirectory ? new Directory(fullPath) : new File_1.default(fullPath);
children.push(fsEntry);
});
children.sort((a, b) => {
if (a.isDirectory === b.isDirectory)
return a.fileName.localeCompare(b.fileName);
else
return a.isDirectory ? -1 : 1;
});
return this.children = children;
});
}
find(relativePath, openIfNotLoaded = false) {
return __awaiter(this, void 0, void 0, function* () {
if (!this.children) {
if (openIfNotLoaded)
yield this.open();
else
return;
}
relativePath = path.normalize(relativePath);
const arr = relativePath.split(path.sep);
const next = arr[0];
if (!next)
throw new Error('Starting root / is not allowed!');
const nextEntry = this.children.find((fsEntry) => fsEntry.fileName === next);
if (arr.length === 0)
throw new Error('Error path: ' + relativePath);
else if (arr.length === 1)
return nextEntry;
else if (!nextEntry.isDirectory)
throw new Error('Not a directory: ' + nextEntry.fullPath);
else
return nextEntry.find(arr.slice(1).join(path.sep), openIfNotLoaded);
});
}
static fetch(fullPath) {
return super.fetch(fullPath);
}
}
exports.default = Directory;
//# sourceMappingURL=Directory.js.map