-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: used go-pretty to improve table formatting on screen width #414
base: dev
Are you sure you want to change the base?
Conversation
@@ -38,7 +38,7 @@ func TestEmptyHeaderTable(t *testing.T) { | |||
testTable.Add("row1", "row2") | |||
testTable.Print() | |||
assert.Contains(t, buf.String(), "row1") | |||
assert.Equal(t, " \nrow1 row2\n", buf.String()) | |||
assert.Equal(t, "\nrow1 row2\n", buf.String()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -79,7 +79,7 @@ func TestNotEnoughRowEntires(t *testing.T) { | |||
testTable.Add("", "row2") | |||
testTable.Print() | |||
assert.Contains(t, buf.String(), "row1") | |||
assert.Equal(t, "col1 col2\nrow1 \n row2\n", buf.String()) | |||
assert.Equal(t, "col1 col2\nrow1\n row2\n", buf.String()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
0fa5825
to
b1ff345
Compare
Ready for review @steveclay |
columnConfig[i].WidthMax = t.maxSizes[i] | ||
remainingSpace -= t.maxSizes[i] | ||
} else { | ||
remainingSpace -= maxColWidth |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wondering if there can be a scenario that remainingSpace becomes 0 or less.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good question. I don't think there is a valid scenario since that would mean the user would need to have a lot of columns. For instance, for terminal width of 80, the user would need to create more than 27 columns (27 * 3 > 80) for there to be negative remainingSpace
.
tbl.Render() | ||
} | ||
|
||
func (t *PrintableTable) createColumnConfigs() []table.ColumnConfig { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added more unit tests for various scenarios.
Context
The purpose of this PR is to improve the table formatting on the columns to wrap when the text when it reaches an estimated max column width. The max col width is calculated by excluding the padding and applying the remaining space evenly among the columns. Any columns that are expected to be wider than the others (eg. ID and Description) will given more space than the others
The PR uses the go-pretty library to manage the column text wrapping, and max column width and coloring.