-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
110 lines (92 loc) · 2.88 KB
/
index.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
const shell = require("shelljs");
const path = require("path");
const fs = require("fs-extra");
module.exports = function (context, options) {
return {
name: "docusaurus-plugin-docs-create-date",
postBuild: async ({ outDir, routes, siteDir }) => {
console.log("Generating docs create date...");
const filename = options.filename || "docsCreateDate";
// flatten routes
const docsPathname = getDocsPathname(routes);
// get date
const docItemsPromises = docsPathname.map(async (path) => {
const date = await getDate(siteDir + path);
return { path, ...date };
});
docItems = await Promise.all(docItemsPromises);
// write to file
fs.writeFile(
`${outDir}/${filename}.json`,
JSON.stringify(docItems),
(err) => {
if (err) {
console.error("Error writing to file:", err);
} else {
console.log("Docs create date generated successfully to ${outDir}/${filename}.json 🎉");
}
}
);
},
};
};
/* -------------------------------------------------------------------------- */
/* Function; */
/* -------------------------------------------------------------------------- */
function getFileFirstCommitDate(file) {
if (!shell.which("git")) {
throw new GitNotFoundError(
`Failed to retrieve git history for "${file}" because git is not installed.`
);
}
if (!shell.test("-f", file)) {
throw new Error(
`Failed to retrieve git history for "${file}" because the file does not exist.`
);
}
const result = shell.exec(
`git log --follow --format=%aI -- "${path.basename(file)}" | tail -n 1`,
{
// Setting cwd is important, see: https://github.com/facebook/docusaurus/pull/5048
cwd: path.dirname(file),
silent: true,
}
);
if (result.code !== 0) {
throw new Error(
`Failed to retrieve the git history for file "${file}" with exit code ${result.code}: ${result.stderr}`
);
}
const timestamp = Date.parse(result.stdout.trim());
if (!timestamp) {
throw new FileNotTrackedError(
`Failed to retrieve the git history for file "${file}" because the file is not tracked by git.`
);
}
const date = new Date(timestamp).toLocaleDateString("zh-TW", {
year: "numeric",
month: "2-digit",
day: "2-digit",
});
return { date, timestamp };
}
async function getDate(file) {
try {
const result = getFileFirstCommitDate(file);
return result;
} catch (err) {
return (await fs.stat(file)).birthtime;
}
}
function getDocsPathname(arr) {
let result = [];
for (const obj of arr) {
if (obj.component === "@theme/DocItem") {
result.push(obj.modules.content.slice(5));
}
if (obj.routes) {
result = result.concat(getDocsPathname(obj.routes));
}
}
return result;
}