This repository has been archived by the owner on Jul 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
index.js
84 lines (69 loc) · 2.12 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
require("dotenv").config();
const { WakaTimeClient, RANGE } = require("wakatime-client");
const { Octokit } = require("@octokit/rest");
const {
GIST_ID: gistId,
GH_TOKEN: githubToken,
WAKATIME_API_KEY: wakatimeApiKey
} = process.env;
const wakatime = new WakaTimeClient(wakatimeApiKey);
const octokit = new Octokit({ auth: `token ${githubToken}` });
async function main() {
const stats = await wakatime.getMyStats({ range: RANGE.LAST_7_DAYS });
await updateGist(stats);
}
function trimRightStr(str, len) {
// Ellipsis takes 3 positions, so the index of substring is 0 to total length - 3.
return str.length > len ? str.substring(0, len - 3) + "..." : str;
}
async function updateGist(stats) {
let gist;
try {
gist = await octokit.gists.get({ gist_id: gistId });
} catch (error) {
console.error(`Unable to get gist\n${error}`);
}
const lines = [];
for (let i = 0; i < Math.min(stats.data.languages.length, 5); i++) {
const data = stats.data.languages[i];
const { name, percent, text: time } = data;
const line = [
trimRightStr(name, 10).padEnd(10),
time.padEnd(14),
generateBarChart(percent, 21),
String(percent.toFixed(1)).padStart(5) + "%"
];
lines.push(line.join(" "));
}
if (lines.length == 0) return;
try {
// Get original filename to update that same file
const filename = Object.keys(gist.data.files)[0];
await octokit.gists.update({
gist_id: gistId,
files: {
[filename]: {
filename: `📊 Weekly development breakdown`,
content: lines.join("\n")
}
}
});
} catch (error) {
console.error(`Unable to update gist\n${error}`);
}
}
function generateBarChart(percent, size) {
const syms = "░▏▎▍▌▋▊▉█";
const frac = Math.floor((size * 8 * percent) / 100);
const barsFull = Math.floor(frac / 8);
if (barsFull >= size) {
return syms.substring(8, 9).repeat(size);
}
const semi = frac % 8;
return [syms.substring(8, 9).repeat(barsFull), syms.substring(semi, semi + 1)]
.join("")
.padEnd(size, syms.substring(0, 1));
}
(async () => {
await main();
})();