-
-
Notifications
You must be signed in to change notification settings - Fork 139
/
Copy pathconsolidateSnippets.ts
56 lines (42 loc) · 1.63 KB
/
consolidateSnippets.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
import { copyFileSync, mkdirSync, writeFileSync } from "fs";
import { join } from "path";
import { exit } from "process";
import { parseAllSnippets } from "./snippetParser.js";
import { LanguageType } from "../src/types/index.js";
import { slugify } from "../src/utils/slugify.js";
const dataPath = "public/consolidated/";
const indexPath = join(dataPath, "_index.json");
const iconPath = "public/icons/";
const { errored, languages } = parseAllSnippets();
if (errored) {
exit(1);
}
mkdirSync(dataPath, { recursive: true });
mkdirSync(iconPath, { recursive: true });
const index: LanguageType[] = [];
for (const language of languages) {
copyFileSync(language.icon, join(iconPath, `${slugify(language.name)}.svg`));
const subLanguages: LanguageType["subLanguages"] = [];
for (const subLanguage of language.subLanguages) {
const joinedName = `${slugify(language.name)}--${slugify(subLanguage.name)}`;
const iconName = `${joinedName}.svg`;
const subLanguageFilePath = join(dataPath, `${joinedName}.json`);
copyFileSync(subLanguage.icon, join(iconPath, iconName));
subLanguages.push({
name: subLanguage.name.toUpperCase(),
icon: `/icons/${iconName}`,
});
writeFileSync(
subLanguageFilePath,
JSON.stringify(subLanguage.categories, null, 4)
);
}
index.push({
name: language.name.toUpperCase(),
icon: `/icons/${slugify(language.name)}.svg`,
subLanguages,
});
const languageFilePath = join(dataPath, `${slugify(language.name)}.json`);
writeFileSync(languageFilePath, JSON.stringify(language.categories, null, 4));
}
writeFileSync(indexPath, JSON.stringify(index, null, 4));