forked from Polkadot-Blockchain-Academy/pba-content
-
Notifications
You must be signed in to change notification settings - Fork 0
/
extractSyllabus.ts
57 lines (52 loc) · 1.51 KB
/
extractSyllabus.ts
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
const { globSync } = require('glob')
const { writeFileSync } = require('fs')
// Sorting based on the initial number (even if it is in a string)
const sortArray = (arr: string[]) => {
const tempArr: any[] = [];
let n;
for (let i in arr) {
tempArr[i] = arr[i].match(/([^0-9]+)|([0-9]+)/g);
for (let j in tempArr[i]) {
if( ! isNaN(n = parseInt(tempArr[i][j])) ){
tempArr[i][j] = n;
}
}
}
tempArr.sort(function (x, y) {
for (let i in x) {
if (y.length < i || x[i] < y[i]) {
return -1; // x is longer
}
if (x[i] > y[i]) {
return 1;
}
}
return 0;
});
for (let i in tempArr) {
arr[i] = tempArr[i].join('');
}
return arr;
}
const dirs = globSync('./syllabus/**/*slides.md', { ignore: ['node_modules/**', '**/README.md'] })
const paths = sortArray(dirs).map((dir:any) =>
dir.replace("syllabus/", "")
.replace("_slides.md", "")
.replace("_Slides.md", "")
.replace("-slides.md", "")
.replace("-Slides.md", "")
)
const parsed: any = {};
for(let i = 0; i < paths.length; i++) {
let position = parsed;
const split = paths[i].split('/');
for(let j = 0; j < split.length; j++) {
if(split[j] !== "") {
if(typeof position[split[j]] === 'undefined')
position[split[j]] = {};
position = position[split[j]];
}
}
}
const data = JSON.stringify(parsed)
writeFileSync('./src/syllabus.json', data)