-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate-readme.ts
54 lines (46 loc) · 1.87 KB
/
update-readme.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
import fs from "fs";
const stars = {
// Y: [1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4, 5]
2024: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2],
2023: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1],
2022: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 2, 0, 1],
2021: [2, 2, 2, 2],
2016: [2, 2, 2, 1, 0, 2],
2015: [2, 2, 2, 0, 2, 2, 0, 0, 2, 2, 0, 0, 0, 2, 0, 0, 0, 2],
};
const taskPath = (year: number, day: number) => `src/${year}/${(day + 1).toString().padStart(2, "0")}.ts`;
const star = (year: number, day: number, count: number | undefined) => {
const d = (day + 1).toString().padStart(2, "0");
switch (count) {
case 0:
return ``;
case 1:
return `[](${taskPath(year, day)})`;
case 2:
return `[](${taskPath(year, day)})`;
default:
return ``;
}
};
const updateReadme = async () => {
const content = fs.readFileSync("./README.md").toString();
const starsContent = Object.entries(stars)
.sort(([y1], [y2]) => Number(y2) - Number(y1))
.map(([y, stars]) => {
const year = Number(y);
const total = stars.reduce((acc, count) => acc + count, 0);
return (
"## " +
`${year}: ${total} ★` +
"\n\n" +
stars.map((count, day) => star(year, day, count) + ((day + 1) % 8 === 0 ? " " : "") + "\n").join("")
);
})
.join("\n\n");
const newContent = content.replace(
/<!-- stars -->[.\s\S]*<!-- \/stars -->/m,
`<!-- stars -->\n\n${starsContent}\n\n<!-- /stars -->`
);
fs.writeFileSync("./README.md", newContent);
};
updateReadme();