-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathbasic-usage-examples.js
214 lines (175 loc) · 8.04 KB
/
basic-usage-examples.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
const Table = require('../src/table');
const colors = require('colors/safe');
module.exports = function(runTest) {
function it(name, fn) {
let result = fn();
runTest(name, result[0], result[1], result[2]);
}
it('Basic Usage', function() {
function makeTable() {
// By default, headers will be red, and borders will be grey
let table = new Table({ head: ['a', 'b'] });
table.push(['c', 'd']);
return table;
}
let expected = [
colors.gray('┌───') + colors.gray('┬───┐'),
colors.gray('│') + colors.red(' a ') + colors.gray('│') + colors.red(' b ') + colors.gray('│'),
colors.gray('├───') + colors.gray('┼───┤'),
colors.gray('│') + ' c ' + colors.gray('│') + ' d ' + colors.gray('│'),
colors.gray('└───') + colors.gray('┴───┘'),
];
return [makeTable, expected, 'basic-usage-with-colors'];
});
it('Basic Usage - disable colors - (used often in the examples and tests)', function() {
function makeTable() {
// For most of these examples, and most of the unit tests we disable colors.
// It makes unit tests easier to write/understand, and allows these pages to
// display the examples as text instead of screen shots.
let table = new Table({
head: ['Rel', 'Change', 'By', 'When'],
style: {
head: [], //disable colors in header cells
border: [], //disable colors for the border
},
colWidths: [6, 21, 25, 17], //set the widths of each column (optional)
});
table.push(
['v0.1', 'Testing something cool', '[email protected]', '7 minutes ago'],
['v0.1', 'Testing something cool', '[email protected]', '8 minutes ago']
);
return table;
}
let expected = [
'┌──────┬─────────────────────┬─────────────────────────┬─────────────────┐',
'│ Rel │ Change │ By │ When │',
'├──────┼─────────────────────┼─────────────────────────┼─────────────────┤',
'│ v0.1 │ Testing something … │ [email protected] │ 7 minutes ago │',
'├──────┼─────────────────────┼─────────────────────────┼─────────────────┤',
'│ v0.1 │ Testing something … │ [email protected] │ 8 minutes ago │',
'└──────┴─────────────────────┴─────────────────────────┴─────────────────┘',
];
return [makeTable, expected];
});
it('Create vertical tables by adding objects a that specify key-value pairs', function() {
function makeTable() {
let table = new Table({
style: { 'padding-left': 0, 'padding-right': 0, head: [], border: [] },
});
table.push({ 'v0.1': 'Testing something cool' }, { 'v0.1': 'Testing something cool' });
return table;
}
let expected = [
'┌────┬──────────────────────┐',
'│v0.1│Testing something cool│',
'├────┼──────────────────────┤',
'│v0.1│Testing something cool│',
'└────┴──────────────────────┘',
];
return [makeTable, expected];
});
it('Cross tables are similar to vertical tables, but include an empty string for the first header', function() {
function makeTable() {
let table = new Table({
head: ['', 'Header 1', 'Header 2'],
style: { 'padding-left': 0, 'padding-right': 0, head: [], border: [] },
}); // clear styles to prevent color output
table.push(
{ 'Header 3': ['v0.1', 'Testing something cool'] },
{ 'Header 4': ['v0.1', 'Testing something cool'] }
);
return table;
}
let expected = [
'┌────────┬────────┬──────────────────────┐',
'│ │Header 1│Header 2 │',
'├────────┼────────┼──────────────────────┤',
'│Header 3│v0.1 │Testing something cool│',
'├────────┼────────┼──────────────────────┤',
'│Header 4│v0.1 │Testing something cool│',
'└────────┴────────┴──────────────────────┘',
];
return [makeTable, expected];
});
it('Stylize the table with custom border characters', function() {
function makeTable() {
let table = new Table({
chars: {
top: '═',
'top-mid': '╤',
'top-left': '╔',
'top-right': '╗',
bottom: '═',
'bottom-mid': '╧',
'bottom-left': '╚',
'bottom-right': '╝',
left: '║',
'left-mid': '╟',
right: '║',
'right-mid': '╢',
},
style: {
head: [],
border: [],
},
});
table.push(['foo', 'bar', 'baz'], ['frob', 'bar', 'quuz']);
return table;
}
let expected = [
'╔══════╤═════╤══════╗',
'║ foo │ bar │ baz ║',
'╟──────┼─────┼──────╢',
'║ frob │ bar │ quuz ║',
'╚══════╧═════╧══════╝',
];
return [makeTable, expected];
});
it('Use ansi colors (i.e. colors.js) to style text within the cells at will, even across multiple lines', function() {
function makeTable() {
let table = new Table({ style: { border: [], header: [] } });
table.push([colors.red('Hello\nhow\nare\nyou?'), colors.blue('I\nam\nfine\nthanks!')]);
return table;
}
let expected = [
'┌───────┬─────────┐',
'│ ' + colors.red('Hello') + ' │ ' + colors.blue('I') + ' │',
'│ ' + colors.red('how') + ' │ ' + colors.blue('am') + ' │',
'│ ' + colors.red('are') + ' │ ' + colors.blue('fine') + ' │',
'│ ' + colors.red('you?') + ' │ ' + colors.blue('thanks!') + ' │',
'└───────┴─────────┘',
];
return [makeTable, expected, 'multi-line-colors'];
});
it('Set `wordWrap` to true to make lines of text wrap instead of being truncated', function() {
function makeTable() {
let table = new Table({
style: { border: [], header: [] },
colWidths: [7, 9],
wordWrap: true,
});
table.push(['Hello how are you?', 'I am fine thanks!']);
return table;
}
let expected = [
'┌───────┬─────────┐',
'│ Hello │ I am │',
'│ how │ fine │',
'│ are │ thanks! │',
'│ you? │ │',
'└───────┴─────────┘',
];
return [makeTable, expected];
});
};
/* Expectation - ready to be copy/pasted and filled in. DO NOT DELETE THIS
let expected = [
'┌──┬───┬──┬──┐'
, '│ │ │ │ │'
, '├──┼───┼──┼──┤'
, '│ │ … │ │ │'
, '├──┼───┼──┼──┤'
, '│ │ … │ │ │'
, '└──┴───┴──┴──┘'
];
*/