forked from pingcap/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfilterCloudDoc.js
More file actions
64 lines (56 loc) · 1.4 KB
/
Copy pathfilterCloudDoc.js
File metadata and controls
64 lines (56 loc) · 1.4 KB
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
import * as fs from "fs";
import {
getAllMdList,
copySingleFileSync,
copyFileWithCustomContentSync,
copyDirectoryWithCustomContentSync,
removeCustomContent,
} from "./utils.js";
const contentHandler = (content = "") => {
return removeCustomContent("tidb-cloud", content);
};
const extractFilefromList = (
fileList = [],
inputPath = ".",
outputPath = "."
) => {
fileList.forEach((filePath) => {
copyFileWithCustomContentSync(
`${inputPath}/${filePath}`,
`${outputPath}/${filePath}`,
contentHandler
);
});
};
const tocCopyTargets = [
{ src: "TOC-tidb-cloud.md", dest: "./tmp/TOC.md" },
{
src: "TOC-tidb-cloud-starter.md",
dest: "./tmp/TOC-tidb-cloud-starter.md",
},
{
src: "TOC-tidb-cloud-essential.md",
dest: "./tmp/TOC-tidb-cloud-essential.md",
},
{
src: "TOC-tidb-cloud-premium.md",
dest: "./tmp/TOC-tidb-cloud-premium.md",
},
];
const tocFiles = tocCopyTargets.map(({ src }) => src);
const main = () => {
const existingTocFiles = tocFiles.filter((file) => fs.existsSync(file));
const filteredLinkList = getAllMdList(existingTocFiles);
extractFilefromList(filteredLinkList, ".", "./tmp");
tocCopyTargets.forEach(({ src, dest }) => {
if (fs.existsSync(src)) {
copySingleFileSync(src, dest);
}
});
copyDirectoryWithCustomContentSync(
"./tidb-cloud/",
"./tmp/tidb-cloud/",
contentHandler
);
};
main();