forked from jedib0t/go-pretty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
render.go
277 lines (247 loc) · 10.1 KB
/
render.go
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
package table
import (
"fmt"
"strings"
"unicode/utf8"
"github.com/jedib0t/go-pretty/text"
"github.com/jedib0t/go-pretty/util"
)
func (h *renderHint) isRegularRow() bool {
return !h.isHeaderRow && !h.isFooterRow
}
// Render renders the Table in a human-readable "pretty" format. Example:
// ┌─────┬────────────┬───────────┬────────┬─────────────────────────────┐
// │ # │ FIRST NAME │ LAST NAME │ SALARY │ │
// ├─────┼────────────┼───────────┼────────┼─────────────────────────────┤
// │ 1 │ Arya │ Stark │ 3000 │ │
// │ 20 │ Jon │ Snow │ 2000 │ You know nothing, Jon Snow! │
// │ 300 │ Tyrion │ Lannister │ 5000 │ │
// ├─────┼────────────┼───────────┼────────┼─────────────────────────────┤
// │ │ │ TOTAL │ 10000 │ │
// └─────┴────────────┴───────────┴────────┴─────────────────────────────┘
func (t *Table) Render() string {
t.initForRender()
var out strings.Builder
if t.numColumns > 0 {
// top-most border
t.renderRowSeparator(&out, renderHint{isFirstRow: true})
// header rows or auto-index row
if len(t.rowsHeader) > 0 {
t.renderRows(&out, t.rowsHeader, t.colorsHeader, t.style.Format.Header, renderHint{isHeaderRow: true})
t.renderRowSeparator(&out, renderHint{isHeaderRow: true})
} else if t.autoIndex {
t.renderRow(&out, 0, t.getAutoIndexColumnIDs(), t.colorsHeader, text.FormatUpper, renderHint{isHeaderRow: true})
t.renderRowSeparator(&out, renderHint{isHeaderRow: true})
}
// (data) rows
t.renderRows(&out, t.rows, t.colors, t.style.Format.Row, renderHint{})
// footer rows
if len(t.rowsFooter) > 0 {
t.renderRowSeparator(&out, renderHint{isFooterRow: true})
t.renderRows(&out, t.rowsFooter, t.colorsFooter, t.style.Format.Footer, renderHint{isFooterRow: true})
}
// bottom-most border
t.renderRowSeparator(&out, renderHint{isLastRow: true})
// caption
if t.caption != "" {
out.WriteRune('\n')
out.WriteString(t.caption)
}
}
return t.render(&out)
}
func (t *Table) renderColumn(out *strings.Builder, rowNum int, row rowStr, colIdx int, maxColumnLength int, colors []text.Colors, format text.Format, hint renderHint) {
// when working on the first column, and autoIndex is true, insert a new
// column with the row number on it.
if colIdx == 0 && t.autoIndex {
t.renderColumnAutoIndex(out, rowNum, hint)
}
// when working on column number 2 or more, render the column separator
if colIdx > 0 {
t.renderColumnSeparator(out, hint)
}
// extract the text, convert-case if not-empty and align horizontally
var colStr string
if colIdx < len(row) {
colStr = format.Apply(row[colIdx])
}
colStr = t.getAlign(colIdx, hint).Apply(colStr, maxColumnLength)
// pad both sides of the column (when not a separator row)
if !hint.isSeparatorRow {
colStr = t.style.Box.PaddingLeft + colStr + t.style.Box.PaddingRight
}
t.renderColumnColorized(out, rowNum, colIdx, colStr, colors, hint)
}
func (t *Table) renderColumnAutoIndex(out *strings.Builder, rowNum int, hint renderHint) {
var outAutoIndex strings.Builder
outAutoIndex.Grow(t.maxColumnLengths[0])
if rowNum < 0 {
numChars := t.autoIndexVIndexMaxLength + utf8.RuneCountInString(t.style.Box.PaddingLeft) +
utf8.RuneCountInString(t.style.Box.PaddingRight)
outAutoIndex.WriteString(strings.Repeat(t.style.Box.MiddleHorizontal, numChars))
} else {
outAutoIndex.WriteString(t.style.Box.PaddingLeft)
rowNumStr := fmt.Sprint(rowNum)
if hint.isHeaderRow || hint.isFooterRow {
rowNumStr = strings.Repeat(" ", t.autoIndexVIndexMaxLength)
}
outAutoIndex.WriteString(text.AlignRight.Apply(rowNumStr, t.autoIndexVIndexMaxLength))
outAutoIndex.WriteString(t.style.Box.PaddingRight)
}
if t.style.Color.AutoIndexColumn != nil {
out.WriteString(t.style.Color.AutoIndexColumn.Sprintf(outAutoIndex.String()))
} else {
out.WriteString(outAutoIndex.String())
}
t.renderColumnSeparator(out, hint)
}
func (t *Table) renderColumnColorized(out *strings.Builder, rowNum int, colIdx int, colStr string, colors []text.Colors, hint renderHint) {
if colIdx < len(colors) && colors[colIdx] != nil {
out.WriteString(colors[colIdx].Sprint(colStr))
} else if hint.isHeaderRow && t.style.Color.Header != nil {
out.WriteString(t.style.Color.Header.Sprint(colStr))
} else if hint.isFooterRow && t.style.Color.Footer != nil {
out.WriteString(t.style.Color.Footer.Sprint(colStr))
} else if hint.isRegularRow() {
if colIdx == 0 && t.style.Color.FirstColumn != nil {
out.WriteString(t.style.Color.FirstColumn.Sprint(colStr))
} else if rowNum%2 == 1 && t.style.Color.RowAlternate != nil {
out.WriteString(t.style.Color.RowAlternate.Sprint(colStr))
} else if t.style.Color.Row != nil {
out.WriteString(t.style.Color.Row.Sprint(colStr))
} else {
out.WriteString(colStr)
}
} else {
out.WriteString(colStr)
}
}
func (t *Table) renderColumnSeparator(out *strings.Builder, hint renderHint) {
if t.style.Options.SeparateColumns {
// type of row determines the character used (top/bottom/separator)
if hint.isSeparatorRow {
if hint.isFirstRow {
out.WriteString(t.style.Box.TopSeparator)
} else if hint.isLastRow {
out.WriteString(t.style.Box.BottomSeparator)
} else {
out.WriteString(t.style.Box.MiddleSeparator)
}
} else {
out.WriteString(t.style.Box.MiddleVertical)
}
}
}
func (t *Table) renderLine(out *strings.Builder, rowNum int, row rowStr, colors []text.Colors, format text.Format, hint renderHint) {
if len(row) > 0 {
// if the output has content, it means that this call is working on line
// number 2 or more; separate them with a newline
if out.Len() > 0 {
out.WriteRune('\n')
}
// use a brand new strings.Builder if a row length limit has been set
var outLine *strings.Builder
if t.allowedRowLength > 0 {
outLine = &strings.Builder{}
} else {
outLine = out
}
// grow the strings.Builder to the maximum possible row length
outLine.Grow(t.maxRowLength)
if t.style.Options.DrawBorder {
t.renderMarginLeft(outLine, hint)
}
for colIdx, maxColumnLength := range t.maxColumnLengths {
t.renderColumn(outLine, rowNum, row, colIdx, maxColumnLength, colors, format, hint)
}
if t.style.Options.DrawBorder {
t.renderMarginRight(outLine, hint)
}
if outLine != out {
outLineStr := outLine.String()
if util.RuneCountWithoutEscapeSeq(outLineStr) > t.allowedRowLength {
trimLength := t.allowedRowLength - utf8.RuneCountInString(t.style.Box.UnfinishedRow)
if trimLength > 0 {
out.WriteString(util.TrimTextWithoutEscapeSeq(outLineStr, trimLength))
out.WriteString(t.style.Box.UnfinishedRow)
}
} else {
out.WriteString(outLineStr)
}
}
}
}
func (t *Table) renderMarginLeft(out *strings.Builder, hint renderHint) {
// type of row determines the character used (top/bottom/separator/etc.)
if hint.isFirstRow {
out.WriteString(t.style.Box.TopLeft)
} else if hint.isLastRow {
out.WriteString(t.style.Box.BottomLeft)
} else if hint.isSeparatorRow {
out.WriteString(t.style.Box.LeftSeparator)
} else {
out.WriteString(t.style.Box.Left)
}
}
func (t *Table) renderMarginRight(out *strings.Builder, hint renderHint) {
// type of row determines the character used (top/bottom/separator/etc.)
if hint.isFirstRow {
out.WriteString(t.style.Box.TopRight)
} else if hint.isLastRow {
out.WriteString(t.style.Box.BottomRight)
} else if hint.isSeparatorRow {
out.WriteString(t.style.Box.RightSeparator)
} else {
out.WriteString(t.style.Box.Right)
}
}
func (t *Table) renderRow(out *strings.Builder, rowNum int, row rowStr, colors []text.Colors, format text.Format, hint renderHint) {
// fit every column into the allowedColumnLength/maxColumnLength limit and
// in the process find the max. number of lines in any column in this row
colMaxLines := 0
rowWrapped := make(rowStr, len(row))
for colIdx, colStr := range row {
rowWrapped[colIdx] = util.WrapText(colStr, t.maxColumnLengths[colIdx])
colNumLines := strings.Count(rowWrapped[colIdx], "\n") + 1
if colNumLines > colMaxLines {
colMaxLines = colNumLines
}
}
// if there is just 1 line in all columns, add the row as such; else split
// each column into individual lines and render them one-by-one
if colMaxLines == 1 {
t.renderLine(out, rowNum, row, colors, format, hint)
} else {
// convert one row into N # of rows based on colMaxLines
rowLines := make([]rowStr, len(row))
for colIdx, colStr := range rowWrapped {
rowLines[colIdx] = t.getVAlign(colIdx, hint).ApplyStr(colStr, colMaxLines)
}
for colLineIdx := 0; colLineIdx < colMaxLines; colLineIdx++ {
rowLine := make(rowStr, len(rowLines))
for colIdx, colLines := range rowLines {
rowLine[colIdx] = colLines[colLineIdx]
}
t.renderLine(out, rowNum, rowLine, colors, format, hint)
}
}
}
func (t *Table) renderRows(out *strings.Builder, rows []rowStr, colors []text.Colors, format text.Format, hint renderHint) {
for idx, row := range rows {
t.renderRow(out, idx+1, row, colors, format, hint)
if t.style.Options.SeparateRows && idx < len(rows)-1 {
t.renderRowSeparator(out, hint)
}
}
}
func (t *Table) renderRowSeparator(out *strings.Builder, hint renderHint) {
if (hint.isFirstRow || hint.isLastRow) && !t.style.Options.DrawBorder {
return
} else if hint.isHeaderRow && !t.style.Options.SeparateHeader {
return
} else if hint.isFooterRow && !t.style.Options.SeparateFooter {
return
}
hint.isSeparatorRow = true
t.renderLine(out, -1, t.rowSeparator, nil, text.FormatDefault, hint)
}