barrelsby-alias
Version:
Barrelsby fork providing an alias builder.
79 lines • 3.42 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const fs = require("fs");
const path = require("path");
const utilities_1 = require("./utilities");
const alias_1 = require("./builders/alias");
const fileSystem_1 = require("./builders/fileSystem");
const flat_1 = require("./builders/flat");
const modules_1 = require("./modules");
function buildBarrels(destinations, options) {
let builder;
switch (options.structure) {
case "filesystem":
builder = fileSystem_1.buildFileSystemBarrel;
break;
case "alias":
builder = alias_1.buildAliasBarrel;
break;
case "flat":
default:
builder = flat_1.buildFlatBarrel;
break;
}
// Build the barrels.
destinations.forEach((destination) => buildBarrel(destination, builder, options));
}
exports.buildBarrels = buildBarrels;
// Build a barrel for the specified directory.
function buildBarrel(directory, builder, options) {
options.logger(`Building barrel @ ${directory.path}`);
const content = builder(directory, modules_1.loadDirectoryModules(directory, options), options);
const destination = path.join(directory.path, options.barrelName);
if (content.length === 0) {
// Skip empty barrels.
return;
}
fs.writeFileSync(destination, content);
// Update the file tree model with the new barrel.
if (!directory.files.some((file) => file.name === options.barrelName)) {
const convertedPath = utilities_1.convertPathSeparator(destination);
const barrel = {
name: options.barrelName,
path: convertedPath,
};
options.logger(`Updating model barrel @ ${convertedPath}`);
directory.files.push(barrel);
directory.barrel = barrel;
}
}
/** Builds the TypeScript */
function buildImportPath(directory, target, options) {
// If the base URL option is set then imports should be relative to there.
const startLocation = options.combinedBaseUrl ? options.combinedBaseUrl : directory.path;
const relativePath = path.relative(startLocation, target.path);
// Get the route and ensure it's relative
let directoryPath = path.dirname(relativePath);
if (directoryPath !== ".") {
directoryPath = `.${path.sep}${directoryPath}`;
}
// Strip off the .ts or .tsx from the file name.
const fileName = getBasename(relativePath);
// Build the final path string. Use posix-style seperators.
const location = `${directoryPath}${path.sep}${fileName}`;
const convertedLocation = utilities_1.convertPathSeparator(location);
return stripThisDirectory(convertedLocation, options);
}
exports.buildImportPath = buildImportPath;
function stripThisDirectory(location, options) {
return options.combinedBaseUrl ? location.replace(utilities_1.thisDirectory, "") : location;
}
/** Strips the .ts or .tsx file extension from a path and returns the base filename. */
function getBasename(relativePath) {
const strippedTsPath = path.basename(relativePath, ".ts");
const strippedTsxPath = path.basename(relativePath, ".tsx");
// Return whichever path is shorter. If they're the same length then nothing was stripped.
return strippedTsPath.length < strippedTsxPath.length ? strippedTsPath : strippedTsxPath;
}
exports.getBasename = getBasename;
//# sourceMappingURL=builder.js.map