-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprint.mjs
42 lines (36 loc) · 1.11 KB
/
print.mjs
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
import chalk from 'chalk'
export default (data, start, sep, end, spotStart, spot) => {
let pointer = ''
let top = ''
let middle = ''
let bottom = ''
let indicator = ''
data.forEach((char, index, data) => {
char ||= '\xf8';
let color;
if (index < start) color = chalk.white;
else if (index >= start && index < sep) color = chalk.yellow;
else if (index >= sep && index < end) color = chalk.green;
else color = chalk.white;
if (index === spotStart) pointer += ' ▼ ';
else pointer += ' ';
top += color('----');
middle += color('| ' + char + ' ');
bottom += color('----');
if (index === spot) indicator += ' ▲ ';
else indicator += ' ';
if (index === data.length - 1) {
pointer += ' ';
top += color('-');
middle += color('|');
bottom += color('-');
indicator += ' ';
}
})
console.log(pointer);
console.log(top);
console.log(middle);
console.log(bottom);
console.log(indicator);
console.log()
}