-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuild.js
190 lines (167 loc) · 5.63 KB
/
build.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
const fs = require("fs");
const path = require("path");
const MarkdownIt = require("markdown-it");
const ejs = require("ejs");
const matter = require("gray-matter");
const hljs = require("highlight.js");
// Load plugins
const md = MarkdownIt({
highlight: function (str, lang) {
if (lang && hljs.getLanguage(lang)) {
try {
return hljs.highlight(str, { language: lang }).value;
} catch (__) { }
}
return "";
},
linkify: true,
});
const srcPath = path.join(__dirname, "src");
const buildPath = path.join(__dirname, "build");
const lessonsPath = path.join(srcPath, "lessons");
const layoutPath = path.join(srcPath, "layout.ejs");
const indexPath = path.join(srcPath, "index.ejs");
const indexHtmlPath = path.join(buildPath, "index.html");
const lessons = [];
// Utility functions
const getDirectories = (source) =>
fs
.readdirSync(source, { withFileTypes: true })
.filter((dirent) => dirent.isDirectory())
.map((dirent) => dirent.name);
const getMarkdownFiles = (source) =>
fs
.readdirSync(source, { withFileTypes: true })
.filter(
(dirent) =>
!dirent.isDirectory() && path.extname(dirent.name) === ".md",
)
.map((dirent) => dirent.name);
const parseMarkdownFile = (filePath) => {
const content = fs.readFileSync(filePath, "utf-8");
const parsed = matter(content);
const title = parsed.data.title || path.basename(filePath, ".md");
const order = parsed.data.order || 0;
const author = parsed.data.author || 'unknown';
const renderedContent = md.render(parsed.content);
const urlSlug = path.basename(filePath, ".md");
const outputFileName = path.basename(filePath, ".md") + ".html";
return { title, order, renderedContent, urlSlug, outputFileName, author };
};
const copyFolderRecursive = (src, dest) => {
if (!fs.existsSync(dest)) {
fs.mkdirSync(dest, { recursive: true });
}
const entries = fs.readdirSync(src, { withFileTypes: true });
for (const entry of entries) {
const srcPath = path.join(src, entry.name);
const destPath = path.join(dest, entry.name);
if (entry.isDirectory()) {
copyFolderRecursive(srcPath, destPath);
} else {
fs.copyFileSync(srcPath, destPath);
}
}
};
const deleteFolderRecursive = (folderPath) => {
if (fs.existsSync(folderPath)) {
fs.readdirSync(folderPath).forEach((file) => {
const currentPath = path.join(folderPath, file);
if (fs.lstatSync(currentPath).isDirectory()) {
deleteFolderRecursive(currentPath);
} else {
fs.unlinkSync(currentPath);
}
});
fs.rmdirSync(folderPath);
}
};
// Ensure build path
if (fs.existsSync(buildPath)) {
fs.rmSync(buildPath, { recursive: true });
}
fs.mkdirSync(buildPath);
getDirectories(lessonsPath).forEach((l) => {
const lessonDir = path.join(lessonsPath, l);
const lesson = {
name: l,
location: l,
chapters: [],
};
const chapters = getMarkdownFiles(lessonDir);
chapters.forEach((c) => {
const chapterPath = path.join(lessonDir, c);
const { title, order, renderedContent, urlSlug, outputFileName, author } =
parseMarkdownFile(chapterPath);
const chapterUrl = `/${l}/${urlSlug}`;
lesson.chapters.push({
title,
order,
author,
content: renderedContent,
url: chapterUrl,
filename: outputFileName,
});
});
if (chapters.length > 0) {
// Sort chapters by order
const sortedChapters = lesson.chapters.sort(
(a, b) => a.order - b.order,
);
lesson.chapters = sortedChapters;
// Set the lesson URL to the first chapter's URL
lesson.url = sortedChapters[0].url;
lessons.push(lesson);
// Copy assets
const assetsPath = path.join(lessonDir, 'assets');
if (fs.existsSync(assetsPath)) {
const buildAssetsPath = path.join(buildPath, l, 'assets')
copyFolderRecursive(assetsPath, buildAssetsPath);
}
} else {
console.log(
`⚠ Skipping lesson: ${l}\n⚠ No chapters within this lesson`,
);
}
});
lessons.forEach((lesson) => {
const lessonBuildPath = path.join(buildPath, lesson.location);
if (!fs.existsSync(lessonBuildPath)) {
fs.mkdirSync(lessonBuildPath);
}
const sortedChapters = lesson.chapters.sort((a, b) => a.order - b.order);
lesson.chapters = sortedChapters;
sortedChapters.forEach((chapter) => {
const currentUrl = chapter.url;
ejs.renderFile(
layoutPath,
{
chapters: sortedChapters,
content: chapter.content,
name: lesson.name,
author: chapter.author,
currentUrl,
},
(err, str) => {
if (err) {
console.error("⨯ Error rendering EJS:", err);
return;
}
const outputFilePath = path.join(
buildPath,
lesson.location,
chapter.filename,
);
fs.writeFileSync(outputFilePath, str);
},
);
});
});
ejs.renderFile(indexPath, { lessons }, (err, str) => {
if (err) {
console.error("⨯ Error rendering index.ejs:", err);
return;
}
fs.writeFileSync(indexHtmlPath, str);
});
console.log("✓ Lessons processed and HTML files generated successfully!");