mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-08-29 20:21:50 +02:00
Add functionality to create content directory for a roadmap
This commit is contained in:
163
bin/roadmap-content.cjs
Normal file
163
bin/roadmap-content.cjs
Normal file
@@ -0,0 +1,163 @@
|
|||||||
|
const fs = require('fs');
|
||||||
|
const path = require('path');
|
||||||
|
|
||||||
|
const CONTENT_DIR = path.join(__dirname, '../content');
|
||||||
|
// Directory containing the roadmaps
|
||||||
|
const ROADMAP_CONTENT_DIR = path.join(__dirname, '../src/roadmaps');
|
||||||
|
const roadmapId = process.argv[2];
|
||||||
|
|
||||||
|
const allowedRoadmapIds = fs.readdirSync(ROADMAP_CONTENT_DIR);
|
||||||
|
if (!roadmapId) {
|
||||||
|
console.error('roadmapId is required');
|
||||||
|
process.exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!allowedRoadmapIds.includes(roadmapId)) {
|
||||||
|
console.error(`Invalid roadmap key ${roadmapId}`);
|
||||||
|
console.error(`Allowed keys are ${allowedRoadmapIds.join(', ')}`);
|
||||||
|
process.exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Directory holding the roadmap content files
|
||||||
|
const roadmapDirName = fs
|
||||||
|
.readdirSync(ROADMAP_CONTENT_DIR)
|
||||||
|
.find((dirName) => dirName.replace(/\d+-/, '') === roadmapId);
|
||||||
|
|
||||||
|
if (!roadmapDirName) {
|
||||||
|
console.error('Roadmap directory not found');
|
||||||
|
process.exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
const roadmapDirPath = path.join(ROADMAP_CONTENT_DIR, roadmapDirName);
|
||||||
|
const roadmapContentDirPath = path.join(
|
||||||
|
ROADMAP_CONTENT_DIR,
|
||||||
|
roadmapDirName,
|
||||||
|
'content'
|
||||||
|
);
|
||||||
|
|
||||||
|
// If roadmap content already exists do not proceed as it would override the files
|
||||||
|
if (fs.existsSync(roadmapContentDirPath)) {
|
||||||
|
console.error(`Roadmap content already exists @ ${roadmapContentDirPath}`);
|
||||||
|
process.exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
function prepareDirTree(control, dirTree, dirSortOrders) {
|
||||||
|
// Directories are only created for groups
|
||||||
|
if (control.typeID !== '__group__') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// e.g. 104-testing-your-apps:other-options
|
||||||
|
const controlName = control?.properties?.controlName || '';
|
||||||
|
// e.g. 104
|
||||||
|
const sortOrder = controlName.match(/^\d+/)?.[0];
|
||||||
|
|
||||||
|
// No directory for a group without control name
|
||||||
|
if (!controlName || !sortOrder) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// e.g. testing-your-apps:other-options
|
||||||
|
const controlNameWithoutSortOrder = controlName.replace(/^\d+-/, '');
|
||||||
|
// e.g. ['testing-your-apps', 'other-options']
|
||||||
|
const dirParts = controlNameWithoutSortOrder.split(':');
|
||||||
|
|
||||||
|
// Nest the dir path in the dirTree
|
||||||
|
let currDirTree = dirTree;
|
||||||
|
dirParts.forEach((dirPart) => {
|
||||||
|
currDirTree[dirPart] = currDirTree[dirPart] || {};
|
||||||
|
currDirTree = currDirTree[dirPart];
|
||||||
|
});
|
||||||
|
|
||||||
|
dirSortOrders[controlNameWithoutSortOrder] = Number(sortOrder);
|
||||||
|
|
||||||
|
const childrenControls = control.children.controls.control;
|
||||||
|
// No more children
|
||||||
|
if (childrenControls.length) {
|
||||||
|
childrenControls.forEach((childControl) => {
|
||||||
|
prepareDirTree(childControl, dirTree, dirSortOrders);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return { dirTree, dirSortOrders };
|
||||||
|
}
|
||||||
|
|
||||||
|
const roadmap = require(path.join(__dirname, `../public/jsons/${roadmapId}`));
|
||||||
|
const controls = roadmap.mockup.controls.control;
|
||||||
|
|
||||||
|
// Prepare the dir tree that we will be creating and also calculate the sort orders
|
||||||
|
const dirTree = {};
|
||||||
|
const dirSortOrders = {};
|
||||||
|
|
||||||
|
controls.forEach((control) => {
|
||||||
|
prepareDirTree(control, dirTree, dirSortOrders);
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param parentDir Parent directory in which directory is to be created
|
||||||
|
* @param dirTree Nested dir tree to be created
|
||||||
|
* @param sortOrders Mapping from groupName to sort order
|
||||||
|
* @param filePaths The mapping from groupName to file path
|
||||||
|
*/
|
||||||
|
function createDirTree(parentDir, dirTree, sortOrders, filePaths = {}) {
|
||||||
|
const childrenDirNames = Object.keys(dirTree);
|
||||||
|
const hasChildren = childrenDirNames.length !== 0;
|
||||||
|
|
||||||
|
// @todo write test for this, yolo for now
|
||||||
|
const groupName = parentDir
|
||||||
|
.replace(roadmapContentDirPath, '') // Remove base dir path
|
||||||
|
.replace(/(^\/)|(\/$)/g, '') // Remove trailing slashes
|
||||||
|
.replace(/(^\d+?-)/g, '') // Remove sorting information
|
||||||
|
.replaceAll('/', ':') // Replace slashes with `:`
|
||||||
|
.replace(/:\d+-/, ':');
|
||||||
|
|
||||||
|
const humanizedGroupName = groupName
|
||||||
|
.split(':')
|
||||||
|
.pop()
|
||||||
|
?.replaceAll('-', ' ')
|
||||||
|
.replace(/^\w/, ($0) => $0.toUpperCase());
|
||||||
|
|
||||||
|
const sortOrder = sortOrders[groupName] || '';
|
||||||
|
|
||||||
|
// Attach sorting information to dirname
|
||||||
|
// e.g. /roadmaps/100-frontend/content/internet
|
||||||
|
// ———> /roadmaps/100-frontend/content/103-internet
|
||||||
|
if (sortOrder) {
|
||||||
|
parentDir = parentDir.replace(/(.+?)([^\/]+)?$/, `$1${sortOrder}-$2`);
|
||||||
|
}
|
||||||
|
|
||||||
|
// If no children, create a file for this under the parent directory
|
||||||
|
if (!hasChildren) {
|
||||||
|
let fileName = `${parentDir}.md`;
|
||||||
|
fs.writeFileSync(fileName, `# ${humanizedGroupName}`);
|
||||||
|
|
||||||
|
filePaths[groupName || 'home'] = fileName.replace(CONTENT_DIR, '');
|
||||||
|
return filePaths;
|
||||||
|
}
|
||||||
|
|
||||||
|
// There *are* children, so create the parent as a directory
|
||||||
|
// and create `index.md` as the content file for this
|
||||||
|
fs.mkdirSync(parentDir);
|
||||||
|
|
||||||
|
let readmeFilePath = path.join(parentDir, 'index.md');
|
||||||
|
fs.writeFileSync(readmeFilePath, `# ${humanizedGroupName}`);
|
||||||
|
|
||||||
|
filePaths[groupName || 'home'] = readmeFilePath.replace(CONTENT_DIR, '');
|
||||||
|
|
||||||
|
// For each of the directory names, create a
|
||||||
|
// directory inside the given directory
|
||||||
|
childrenDirNames.forEach((dirName) => {
|
||||||
|
createDirTree(
|
||||||
|
path.join(parentDir, dirName),
|
||||||
|
dirTree[dirName],
|
||||||
|
dirSortOrders,
|
||||||
|
filePaths
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
return filePaths;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Create directories and get back the paths for created directories
|
||||||
|
createDirTree(roadmapContentDirPath, dirTree, dirSortOrders);
|
||||||
|
console.log('Created roadmap content directory structure');
|
@@ -0,0 +1 @@
|
|||||||
|
# Terminology
|
@@ -0,0 +1 @@
|
|||||||
|
# Architecture
|
@@ -0,0 +1 @@
|
|||||||
|
# Why spring
|
@@ -0,0 +1 @@
|
|||||||
|
# Introduction
|
@@ -0,0 +1 @@
|
|||||||
|
# Configuration
|
@@ -0,0 +1 @@
|
|||||||
|
# Dependency injection
|
@@ -0,0 +1 @@
|
|||||||
|
# Spring ioc
|
@@ -0,0 +1 @@
|
|||||||
|
# Spring aop
|
@@ -0,0 +1 @@
|
|||||||
|
# Spring mvc
|
@@ -0,0 +1 @@
|
|||||||
|
# Annotations
|
@@ -0,0 +1 @@
|
|||||||
|
# Spring bean scope
|
@@ -0,0 +1 @@
|
|||||||
|
# Spring core
|
@@ -0,0 +1 @@
|
|||||||
|
# Authentication
|
@@ -0,0 +1 @@
|
|||||||
|
# Authorization
|
@@ -0,0 +1 @@
|
|||||||
|
# Oauth2
|
@@ -0,0 +1 @@
|
|||||||
|
# Jwt authentication
|
@@ -0,0 +1 @@
|
|||||||
|
# Spring security
|
@@ -0,0 +1 @@
|
|||||||
|
# Spring boot starters
|
1
src/roadmaps/spring-boot/content/103-autconfiguration.md
Normal file
1
src/roadmaps/spring-boot/content/103-autconfiguration.md
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# Autconfiguration
|
@@ -0,0 +1 @@
|
|||||||
|
# Spring boot actuators
|
1
src/roadmaps/spring-boot/content/105-embedded-server.md
Normal file
1
src/roadmaps/spring-boot/content/105-embedded-server.md
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# Embedded server
|
@@ -0,0 +1 @@
|
|||||||
|
# Transactions
|
@@ -0,0 +1 @@
|
|||||||
|
# Relationships
|
@@ -0,0 +1 @@
|
|||||||
|
# Entity lifecycle
|
1
src/roadmaps/spring-boot/content/106-hibernate/index.md
Normal file
1
src/roadmaps/spring-boot/content/106-hibernate/index.md
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# Hibernate
|
@@ -0,0 +1 @@
|
|||||||
|
# Spring data jpa
|
@@ -0,0 +1 @@
|
|||||||
|
# Spring data mongodb
|
@@ -0,0 +1 @@
|
|||||||
|
# Spring data jdbc
|
@@ -0,0 +1 @@
|
|||||||
|
# Spring data
|
@@ -0,0 +1 @@
|
|||||||
|
# Spring cloud gateway
|
@@ -0,0 +1 @@
|
|||||||
|
# Cloud config
|
@@ -0,0 +1 @@
|
|||||||
|
# Spring cloud circuit breaker
|
@@ -0,0 +1 @@
|
|||||||
|
# Spring cloud openfeign
|
@@ -0,0 +1 @@
|
|||||||
|
# Hystrix
|
@@ -0,0 +1 @@
|
|||||||
|
# Sleuth
|
@@ -0,0 +1 @@
|
|||||||
|
# Eureka
|
@@ -0,0 +1 @@
|
|||||||
|
# Spring cloud
|
@@ -0,0 +1 @@
|
|||||||
|
# Microservices
|
@@ -0,0 +1 @@
|
|||||||
|
# Servlet
|
@@ -0,0 +1 @@
|
|||||||
|
# Jsp files
|
@@ -0,0 +1 @@
|
|||||||
|
# Architecture
|
@@ -0,0 +1 @@
|
|||||||
|
# Components
|
1
src/roadmaps/spring-boot/content/109-spring-mvc/index.md
Normal file
1
src/roadmaps/spring-boot/content/109-spring-mvc/index.md
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# Spring mvc
|
@@ -0,0 +1 @@
|
|||||||
|
# Jpa test
|
@@ -0,0 +1 @@
|
|||||||
|
# Mock mvc
|
@@ -0,0 +1 @@
|
|||||||
|
# Spring boot test annotation
|
@@ -0,0 +1 @@
|
|||||||
|
# Mockbean annotation
|
1
src/roadmaps/spring-boot/content/110-testing/index.md
Normal file
1
src/roadmaps/spring-boot/content/110-testing/index.md
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# Testing
|
Reference in New Issue
Block a user