Documentation ¶
Index ¶
- Constants
- Variables
- type Row
- type RowStr
- type Style
- type Table
- func (t *Table) AppendFooter(row Row)
- func (t *Table) AppendHeader(row Row)
- func (t *Table) AppendRow(row Row)
- func (t *Table) AppendRows(rows []Row)
- func (t *Table) Length() int
- func (t *Table) Render() string
- func (t *Table) RenderCSV() string
- func (t *Table) RenderHTML() string
- func (t *Table) RenderMarkdown() string
- func (t *Table) SetAlign(align []text.Align)
- func (t *Table) SetAllowedColumnLengths(lengths []int)
- func (t *Table) SetAllowedRowLength(length int)
- func (t *Table) SetAutoIndex(autoIndex bool)
- func (t *Table) SetCaption(format string, a ...interface{})
- func (t *Table) SetColors(textColors []text.Colors)
- func (t *Table) SetColorsFooter(textColors []text.Colors)
- func (t *Table) SetColorsHeader(textColors []text.Colors)
- func (t *Table) SetHTMLCSSClass(cssClass string)
- func (t *Table) SetOutputMirror(mirror io.Writer)
- func (t *Table) SetStyle(style Style)
- func (t *Table) SetVAlign(vAlign []text.VAlign)
- func (t *Table) ShowBorder(show bool)
- func (t *Table) ShowSeparators(show bool)
- func (t *Table) Style() *Style
- type Writer
Constants ¶
const ( // DefaultHTMLCSSClass stores the css-class to use when none-provided via // SetHTMLCSSClass(cssClass string). DefaultHTMLCSSClass = "go-pretty-table" )
Variables ¶
var ( // StyleDefault renders a Table like below: // +-----+------------+-----------+--------+-----------------------------+ // | # | FIRST NAME | LAST NAME | SALARY | | // +-----+------------+-----------+--------+-----------------------------+ // | 1 | Arya | Stark | 3000 | | // | 20 | Jon | Snow | 2000 | You know nothing, Jon Snow! | // | 300 | Tyrion | Lannister | 5000 | | // +-----+------------+-----------+--------+-----------------------------+ // | | | TOTAL | 10000 | | // +-----+------------+-----------+--------+-----------------------------+ StyleDefault = Style{ BoxBottomLeft: "+", BoxBottomRight: "+", BoxBottomSeparator: "+", BoxLeft: "|", BoxLeftSeparator: "+", BoxMiddleHorizontal: "-", BoxMiddleSeparator: "+", BoxMiddleVertical: "|", BoxPaddingLeft: " ", BoxPaddingRight: " ", BoxRight: "|", BoxRightSeparator: "+", BoxTopLeft: "+", BoxTopRight: "+", BoxTopSeparator: "+", BoxUnfinishedRow: " ~", FormatFooter: text.FormatUpper, FormatHeader: text.FormatUpper, FormatRows: text.FormatDefault, Name: "StyleDefault", } // StyleBold renders a Table like below: // ┏━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ // ┃ # ┃ FIRST NAME ┃ LAST NAME ┃ SALARY ┃ ┃ // ┣━━━━━╋━━━━━━━━━━━━╋━━━━━━━━━━━╋━━━━━━━━╋━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┫ // ┃ 1 ┃ Arya ┃ Stark ┃ 3000 ┃ ┃ // ┃ 20 ┃ Jon ┃ Snow ┃ 2000 ┃ You know nothing, Jon Snow! ┃ // ┃ 300 ┃ Tyrion ┃ Lannister ┃ 5000 ┃ ┃ // ┣━━━━━╋━━━━━━━━━━━━╋━━━━━━━━━━━╋━━━━━━━━╋━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┫ // ┃ ┃ ┃ TOTAL ┃ 10000 ┃ ┃ // ┗━━━━━┻━━━━━━━━━━━━┻━━━━━━━━━━━┻━━━━━━━━┻━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛ StyleBold = Style{ BoxBottomLeft: text.BoxBottomLeftBold, BoxBottomRight: text.BoxBottomRightBold, BoxBottomSeparator: text.BoxBottomSeparatorBold, BoxLeft: text.BoxLeftBold, BoxLeftSeparator: text.BoxLeftSeparatorBold, BoxMiddleHorizontal: text.BoxHorizontalBold, BoxMiddleSeparator: text.BoxSeparatorBold, BoxMiddleVertical: text.BoxVerticalBold, BoxPaddingLeft: " ", BoxPaddingRight: " ", BoxRight: text.BoxRightBold, BoxRightSeparator: text.BoxRightSeparatorBold, BoxTopLeft: text.BoxTopLeftBold, BoxTopRight: text.BoxTopRightBold, BoxTopSeparator: text.BoxTopSeparatorBold, BoxUnfinishedRow: " " + text.BoxUnfinishedLine, FormatFooter: text.FormatUpper, FormatHeader: text.FormatUpper, FormatRows: text.FormatDefault, Name: "StyleBold", } // StyleDouble renders a Table like below: // ╔═════╦════════════╦═══════════╦════════╦═════════════════════════════╗ // ║ # ║ FIRST NAME ║ LAST NAME ║ SALARY ║ ║ // ╠═════╬════════════╬═══════════╬════════╬═════════════════════════════╣ // ║ 1 ║ Arya ║ Stark ║ 3000 ║ ║ // ║ 20 ║ Jon ║ Snow ║ 2000 ║ You know nothing, Jon Snow! ║ // ║ 300 ║ Tyrion ║ Lannister ║ 5000 ║ ║ // ╠═════╬════════════╬═══════════╬════════╬═════════════════════════════╣ // ║ ║ ║ TOTAL ║ 10000 ║ ║ // ╚═════╩════════════╩═══════════╩════════╩═════════════════════════════╝ StyleDouble = Style{ BoxBottomLeft: text.BoxBottomLeftDouble, BoxBottomRight: text.BoxBottomRightDouble, BoxBottomSeparator: text.BoxBottomSeparatorDouble, BoxLeft: text.BoxLeftDouble, BoxLeftSeparator: text.BoxLeftSeparatorDouble, BoxMiddleHorizontal: text.BoxHorizontalDouble, BoxMiddleSeparator: text.BoxSeparatorDouble, BoxMiddleVertical: text.BoxVerticalDouble, BoxPaddingLeft: " ", BoxPaddingRight: " ", BoxRight: text.BoxRightDouble, BoxRightSeparator: text.BoxRightSeparatorDouble, BoxTopLeft: text.BoxTopLeftDouble, BoxTopRight: text.BoxTopRightDouble, BoxTopSeparator: text.BoxTopSeparatorDouble, BoxUnfinishedRow: " " + text.BoxUnfinishedLine, FormatFooter: text.FormatUpper, FormatHeader: text.FormatUpper, FormatRows: text.FormatDefault, Name: "StyleDouble", } // StyleLight renders a Table like below: // ┌─────┬────────────┬───────────┬────────┬─────────────────────────────┐ // │ # │ FIRST NAME │ LAST NAME │ SALARY │ │ // ├─────┼────────────┼───────────┼────────┼─────────────────────────────┤ // │ 1 │ Arya │ Stark │ 3000 │ │ // │ 20 │ Jon │ Snow │ 2000 │ You know nothing, Jon Snow! │ // │ 300 │ Tyrion │ Lannister │ 5000 │ │ // ├─────┼────────────┼───────────┼────────┼─────────────────────────────┤ // │ │ │ TOTAL │ 10000 │ │ // └─────┴────────────┴───────────┴────────┴─────────────────────────────┘ StyleLight = Style{ BoxBottomLeft: text.BoxBottomLeft, BoxBottomRight: text.BoxBottomRight, BoxBottomSeparator: text.BoxBottomSeparator, BoxLeft: text.BoxLeft, BoxLeftSeparator: text.BoxLeftSeparator, BoxMiddleHorizontal: text.BoxHorizontal, BoxMiddleSeparator: text.BoxSeparator, BoxMiddleVertical: text.BoxVertical, BoxPaddingLeft: " ", BoxPaddingRight: " ", BoxRight: text.BoxRight, BoxRightSeparator: text.BoxRightSeparator, BoxTopLeft: text.BoxTopLeft, BoxTopRight: text.BoxTopRight, BoxTopSeparator: text.BoxTopSeparator, BoxUnfinishedRow: " " + text.BoxUnfinishedLine, FormatFooter: text.FormatUpper, FormatHeader: text.FormatUpper, FormatRows: text.FormatDefault, Name: "StyleLight", } // StyleRounded renders a Table like below: // ╭─────┬────────────┬───────────┬────────┬─────────────────────────────╮ // │ # │ FIRST NAME │ LAST NAME │ SALARY │ │ // ├─────┼────────────┼───────────┼────────┼─────────────────────────────┤ // │ 1 │ Arya │ Stark │ 3000 │ │ // │ 20 │ Jon │ Snow │ 2000 │ You know nothing, Jon Snow! │ // │ 300 │ Tyrion │ Lannister │ 5000 │ │ // ├─────┼────────────┼───────────┼────────┼─────────────────────────────┤ // │ │ │ TOTAL │ 10000 │ │ // ╰─────┴────────────┴───────────┴────────┴─────────────────────────────╯ StyleRounded = Style{ BoxBottomLeft: text.BoxBottomLeftRounded, BoxBottomRight: text.BoxBottomRightRounded, BoxBottomSeparator: text.BoxBottomSeparator, BoxLeft: text.BoxLeft, BoxLeftSeparator: text.BoxLeftSeparator, BoxMiddleHorizontal: text.BoxHorizontal, BoxMiddleSeparator: text.BoxSeparator, BoxMiddleVertical: text.BoxVertical, BoxPaddingLeft: " ", BoxPaddingRight: " ", BoxRight: text.BoxRight, BoxRightSeparator: text.BoxRightSeparator, BoxTopLeft: text.BoxTopLeftRounded, BoxTopRight: text.BoxTopRightRounded, BoxTopSeparator: text.BoxTopSeparator, BoxUnfinishedRow: " " + text.BoxUnfinishedLine, FormatFooter: text.FormatUpper, FormatHeader: text.FormatUpper, FormatRows: text.FormatDefault, Name: "StyleRounded", } )
Functions ¶
This section is empty.
Types ¶
type RowStr ¶
type RowStr []string
RowStr defines a single row in the Table comprised of just string objects.
type Style ¶
type Style struct { BoxBottomLeft string BoxBottomRight string BoxBottomSeparator string BoxLeft string BoxLeftSeparator string BoxMiddleHorizontal string BoxMiddleSeparator string BoxMiddleVertical string BoxPaddingLeft string BoxPaddingRight string BoxRight string BoxRightSeparator string BoxTopLeft string BoxTopRight string BoxTopSeparator string BoxUnfinishedRow string FormatHeader text.Format FormatRows text.Format Name string }
Style declares how to render the Table.
type Table ¶
type Table struct {
// contains filtered or unexported fields
}
Table helps print a 2-dimensional array in a human readable pretty-table.
func (*Table) AppendFooter ¶
AppendFooter appends the row to the List of footers to render.
func (*Table) AppendHeader ¶
AppendHeader appends the row to the List of headers to render.
func (*Table) AppendRows ¶
AppendRows appends the rows to the List of rows to render.
func (*Table) Render ¶
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 (*Table) RenderCSV ¶
RenderCSV renders the Table in CSV 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 (*Table) RenderHTML ¶
RenderHTML renders the Table in HTML format. Example:
<table class="go-pretty-table"> <thead> <tr> <th align="right">#</th> <th>First Name</th> <th>Last Name</th> <th align="right">Salary</th> <th> </th> </tr> </thead> <tbody> <tr> <td align="right">1</td> <td>Arya</td> <td>Stark</td> <td align="right">3000</td> <td> </td> </tr> <tr> <td align="right">20</td> <td>Jon</td> <td>Snow</td> <td align="right">2000</td> <td>You know nothing, Jon Snow!</td> </tr> <tr> <td align="right">300</td> <td>Tyrion</td> <td>Lannister</td> <td align="right">5000</td> <td> </td> </tr> </tbody> <tfoot> <tr> <td align="right"> </td> <td> </td> <td>Total</td> <td align="right">10000</td> <td> </td> </tr> </tfoot> </table>
func (*Table) RenderMarkdown ¶
RenderMarkdown renders the Table in Markdown 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 (*Table) SetAllowedColumnLengths ¶
SetAllowedColumnLengths sets the maximum allowed length for each column in all the rows. Columns with content longer than the allowed limit will be wrapped to fit the length. Length has to be a positive value to take effect.
func (*Table) SetAllowedRowLength ¶
SetAllowedRowLength sets the maximum allowed length or a row (or line of output) when rendered as a table. Rows that are longer than this limit will be "snipped" to the length. Length has to be a positive value to take effect.
func (*Table) SetAutoIndex ¶
SetAutoIndex adds a generated header with columns such as "A", "B", "C", etc. and a leading column with the row number similar to what you'd see on any spreadsheet application. NOTE: Appending a Header will void this functionality.
func (*Table) SetCaption ¶
SetCaption sets the text to be rendered just below the table. This will not show up when the Table is rendered as a CSV.
func (*Table) SetColorsFooter ¶
SetColorsFooter sets the colors for the rows in the Footer.
func (*Table) SetColorsHeader ¶
SetColorsHeader sets the colors for the rows in the Header.
func (*Table) SetHTMLCSSClass ¶
SetHTMLCSSClass sets the the HTML CSS Class to use on the <table> node when rendering the Table in HTML format.
func (*Table) SetOutputMirror ¶
SetOutputMirror sets an io.Writer for all the Render functions to "Write" to in addition to returning a string.
func (*Table) ShowBorder ¶
ShowBorder enables or disables drawing the border around the Table. Example of a table where it is disabled (enabled by default):
# │ 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 (*Table) ShowSeparators ¶
ShowSeparators enables or disable drawing separators between each row. Example of a table where it is enabled (disabled by default):
┌─────┬────────────┬───────────┬────────┬─────────────────────────────┐ │ # │ FIRST NAME │ LAST NAME │ SALARY │ │ ├─────┼────────────┼───────────┼────────┼─────────────────────────────┤ │ 1 │ Arya │ Stark │ 3000 │ │ ├─────┼────────────┼───────────┼────────┼─────────────────────────────┤ │ 20 │ Jon │ Snow │ 2000 │ You know nothing, Jon Snow! │ ├─────┼────────────┼───────────┼────────┼─────────────────────────────┤ │ 300 │ Tyrion │ Lannister │ 5000 │ │ ├─────┼────────────┼───────────┼────────┼─────────────────────────────┤ │ │ │ TOTAL │ 10000 │ │ └─────┴────────────┴───────────┴────────┴─────────────────────────────┘
type Writer ¶
type Writer interface { AppendHeader(row Row) AppendRow(row Row) AppendRows(rows []Row) Length() int Render() string RenderCSV() string RenderHTML() string RenderMarkdown() string SetAlign(align []text.Align) SetAllowedColumnLengths(lengths []int) SetAllowedRowLength(length int) SetAutoIndex(autoIndex bool) SetCaption(format string, a ...interface{}) SetColors(colors []text.Colors) SetColorsHeader(colors []text.Colors) SetHTMLCSSClass(cssClass string) SetOutputMirror(mirror io.Writer) SetStyle(style Style) SetVAlign(vAlign []text.VAlign) ShowBorder(show bool) ShowSeparators(show bool) Style() *Style }
Writer declares the interfaces that can be used to setup and render a table.