-
Notifications
You must be signed in to change notification settings - Fork 313
/
Copy pathcreate-i18n-entries.mjs
79 lines (72 loc) · 1.96 KB
/
create-i18n-entries.mjs
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
import { existsSync } from "fs";
import path from "path";
import { COLLECTIONS_ROOT } from "./collections/index.mjs";
import { getFrontMatterData } from "./collections/utils/get-frontmatter.mjs";
/**
* @typedef {Object} DocsEntry
* @property {string} type - The type of reference.
* @property {string} file - The file associated with the reference.
* @property {string} path - The path to the reference.
* @property {string} slug - The slug of the reference.
* @property {string} parent - The parent reference.
* @property {string} title - The title of the reference.
*/
/**
* @typedef {Object} DefaultEntries
* @property {DocsEntry[]} reference - An array of references.
* @property {DocsEntry[]} learn - An array of learn items.
*/
/**
*
* @param {DocsEntry[]} entryList
* @param {string} locale
* @param {string | undefined} project
*/
async function buildSectionList(entryList = [], locale, project = "") {
const sectionList = [];
for (const entry of entryList) {
const entryPath = entry.path.endsWith("/")
? entry.path + "index"
: entry.path;
const i18nEntryPath = path.join(
process.cwd(),
COLLECTIONS_ROOT,
project,
locale,
entryPath
);
if (existsSync(i18nEntryPath + ".mdx")) {
const { title, isDeprecated } = await getFrontMatterData(
i18nEntryPath + ".mdx"
);
sectionList.push({
...entry,
path: path.join(locale, entry.path),
title,
isDeprecated,
isTranslated: true,
});
} else {
sectionList.push({
...entry,
isTranslated: false,
});
}
}
return sectionList;
}
/**
* @param {DefaultEntries} defaultEntries
* @param {string} locale
* @param {string} project
*/
export async function createI18nEntries(defaultEntries, locale, project) {
const referenceLearn = await Promise.all([
buildSectionList(defaultEntries.learn, locale, project),
buildSectionList(defaultEntries.reference, locale, project),
]);
return {
learn: referenceLearn[0],
reference: referenceLearn[1],
};
}