forked from xrkffgg/waka-box
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
113 lines (100 loc) · 2.59 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
111
112
113
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);
}
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, 4); i++) {
const data = stats.data.languages[i];
const { name, percent, text: time } = data;
const line = [
name.padEnd(11),
time.padStart(14) + " ",
unicodeProgressBar(percent + 15),
String(percent.toFixed(1)).padStart(5) + "%"
];
lines.push(line.join(" "));
}
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`,
content: lines.join("\n")
}
}
});
} catch (error) {
console.error(`Unable to update gist\n${error}`);
}
}
const bar_styles = [
"▁▂▃▄▅▆▇█",
"⣀⣄⣤⣦⣶⣷⣿",
"⣀⣄⣆⣇⣧⣷⣿",
"○◔◐◕⬤",
"□◱◧▣■",
"□◱▨▩■",
"□◱▥▦■",
"░▒▓█",
"░█",
"⬜⬛",
"⬛⬜",
"▱▰",
"▭◼",
"▯▮",
"◯⬤",
"⚪⚫"
];
function unicodeProgressBar(p, style = 7, min_size = 20, max_size = 20) {
let d;
let full;
let m;
let middle;
let r;
let rest;
let x;
let min_delta = Number.POSITIVE_INFINITY;
const bar_style = bar_styles[style];
const full_symbol = bar_style[bar_style.length - 1];
const n = bar_style.length - 1;
if (p === 100) return full_symbol.repeat(max_size);
p = p / 100;
for (let i = max_size; i >= min_size; i--) {
x = p * i;
full = Math.floor(x);
rest = x - full;
middle = Math.floor(rest * n);
if (p !== 0 && full === 0 && middle === 0) middle = 1;
d = Math.abs(p - (full + middle / n) / i) * 100;
if (d < min_delta) {
min_delta = d;
m = bar_style[middle];
if (full === i) m = "";
r = full_symbol.repeat(full) + m + bar_style[0].repeat(i - full - 1);
}
}
return r;
}
(async () => {
await main();
})();