-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
139 lines (113 loc) · 3.24 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
let colors = require('colors');
let colorReservation = [];
let generate = {
indent: function () {
let space = ' ';
let spaces = '';
for (let i = 0; i < 4; i++) {
spaces += space;
}
return spaces;
},
indents: function (levels) {
let indent = generate.indent();
let indents = '';
for (let i = 0; i < levels; i++) {
indents += indent;
}
return indents;
},
color: function (index) {
const colorList = [
'white',
'green',
'yellow',
'gray',
'magenta',
'cyan',
'red'
];
let countOfColors = colorList.length;
let indexOfColor =
index < countOfColors ?
index :
index % countOfColors;
return colorList[indexOfColor]
}
};
let isScopeOpened = function (command, indent) {
for (var i = colorReservation.length - 1; i >= 0; i--) {
if (colorReservation[i].command == command && colorReservation[i].destination == 'begin' && colorReservation[i].indent == indent && colorReservation[i].isClosed != true) {
return true;
}
}
return false;
};
let getIndexOfOldSibling = function (command) {
for (var i = colorReservation.length - 1; i >= 0; i--) {
if (colorReservation[i].command == command && colorReservation[i].destination == 'begin' && !colorReservation[i].isClosed) {
return i;
}
}
return false;
};
let getLastIndentIndex = function (colorReservationList, command, destination) {
let countOfReservedColors = colorReservation.length;
if (countOfReservedColors == 0) {
return 0;
}
if (destination == 'begin') {
for (var i = colorReservation.length - 1; i >= 0; i--) {
if (colorReservationList[i].destination && !colorReservationList[i].isClosed) {
break;
}
}
if (i != -1) {
return colorReservationList[i].indent + 1;
}
return colorReservationList[countOfReservedColors - 1].indent;
} else if (destination == 'end') {
let indexOfOldSibling = getIndexOfOldSibling(command);
let sibling = colorReservation[indexOfOldSibling];
if (sibling) {
return sibling.indent;
}
}
if (colorReservationList[countOfReservedColors - 1].destination == 'begin') {
return colorReservationList[countOfReservedColors - 1].indent + 1;
}
return colorReservationList[countOfReservedColors - 1].indent;
};
console.llog = exports.log = function (command, destination) {
let env = process.env.DEBUG;
if (env != 'true') {
return;
}
let color;
let indents;
let isClosed = false;
let indent = getLastIndentIndex(colorReservation, command, destination);
if (!isScopeOpened(command, indent)) {
let countOfReservedColors = colorReservation.length;
color = generate.color(countOfReservedColors);
} else {
let indexOfOldSibling = getIndexOfOldSibling(command);
colorReservation[indexOfOldSibling].isClosed = true;
isClosed = true;
let sibling = colorReservation[indexOfOldSibling];
color = sibling.colors;
}
indents = generate.indents(indent);
colorReservation.push({
command: command,
colors: color,
indent: indent,
destination: destination,
isClosed: isClosed
});
let text = indents + colors[color](command);
console.log(text);
};
exports.init = function () {
colorReservation = [];
};