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
|
package ui
import (
"math"
"regexp"
"git.sr.ht/~rjarry/aerc/config"
"git.sr.ht/~rockorager/vaxis"
"github.com/mattn/go-runewidth"
)
type Table struct {
Columns []Column
Rows []Row
Height int
// Optional callback that allows customizing the default drawing routine
// of table rows. If true is returned, the default routine is skipped.
CustomDraw func(t *Table, row int, c *Context) bool
// Optional callback that allows returning a custom style for the row.
GetRowStyle func(t *Table, row int) vaxis.Style
// true if at least one column has WIDTH_FIT
autoFitWidths bool
// if false, widths need to be computed before drawing
widthsComputed bool
}
type Column struct {
Offset int
Width int
Def *config.ColumnDef
Separator string
}
type Row struct {
Cells []string
Priv any
}
func NewTable(
height int,
columnDefs []*config.ColumnDef, separator string,
customDraw func(*Table, int, *Context) bool,
getRowStyle func(*Table, int) vaxis.Style,
) Table {
if customDraw == nil {
customDraw = func(*Table, int, *Context) bool { return false }
}
if getRowStyle == nil {
getRowStyle = func(*Table, int) vaxis.Style {
return vaxis.Style{}
}
}
columns := make([]Column, len(columnDefs))
autoFitWidths := false
for c, col := range columnDefs {
if col.Flags.Has(config.WIDTH_FIT) {
autoFitWidths = true
}
columns[c] = Column{Def: col}
if c != len(columns)-1 {
// set separator for all columns except the last one
columns[c].Separator = separator
}
}
return Table{
Columns: columns,
Height: height,
CustomDraw: customDraw,
GetRowStyle: getRowStyle,
autoFitWidths: autoFitWidths,
}
}
// add a row to the table, returns true when the table is full
func (t *Table) AddRow(cells []string, priv any) bool {
if len(cells) != len(t.Columns) {
panic("invalid number of cells")
}
if len(t.Rows) >= t.Height {
return true
}
t.Rows = append(t.Rows, Row{Cells: cells, Priv: priv})
if t.autoFitWidths {
t.widthsComputed = false
}
return len(t.Rows) >= t.Height
}
func (t *Table) computeWidths(width int) {
contentMaxWidths := make([]int, len(t.Columns))
if t.autoFitWidths {
for _, row := range t.Rows {
for c := range t.Columns {
buf := StyledString(row.Cells[c])
if buf.Len() > contentMaxWidths[c] {
contentMaxWidths[c] = buf.Len()
}
}
}
}
nonFixed := width
autoWidthCount := 0
for c := range t.Columns {
col := &t.Columns[c]
switch {
case col.Def.Flags.Has(config.WIDTH_FIT):
col.Width = contentMaxWidths[c]
// compensate for exact width columns
col.Width += runewidth.StringWidth(col.Separator)
case col.Def.Flags.Has(config.WIDTH_EXACT):
col.Width = int(math.Round(col.Def.Width))
// compensate for exact width columns
col.Width += runewidth.StringWidth(col.Separator)
case col.Def.Flags.Has(config.WIDTH_AUTO):
col.Width = 0
autoWidthCount += 1
case col.Def.Flags.Has(config.WIDTH_FRACTION):
col.Width = int(math.Round(float64(width) * col.Def.Width))
}
nonFixed -= col.Width
}
autoWidth := 0
if autoWidthCount > 0 && nonFixed > 0 {
autoWidth = nonFixed / autoWidthCount
if autoWidth == 0 {
autoWidth = 1
}
}
offset := 0
remain := width
for c := range t.Columns {
col := &t.Columns[c]
if col.Def.Flags.Has(config.WIDTH_AUTO) && autoWidth > 0 {
col.Width = autoWidth
if nonFixed >= 2*autoWidth {
nonFixed -= autoWidth
}
}
if remain == 0 {
// column is outside of screen
col.Width = -1
} else if col.Width > remain {
// limit width to avoid overflow
col.Width = remain
}
remain -= col.Width
col.Offset = offset
offset += col.Width
// reserve room for separator
col.Width -= runewidth.StringWidth(col.Separator)
}
}
var metaCharsRegexp = regexp.MustCompile(`[\t\r\f\n\v]`)
func (col *Column) alignCell(cell string) string {
cell = metaCharsRegexp.ReplaceAllString(cell, " ")
buf := StyledString(cell)
width := buf.Len()
switch {
case col.Def.Flags.Has(config.ALIGN_LEFT):
if width < col.Width {
PadRight(buf, col.Width)
cell = buf.Encode()
} else if width > col.Width {
Truncate(buf, col.Width)
cell = buf.Encode()
}
case col.Def.Flags.Has(config.ALIGN_CENTER):
if width < col.Width {
pad := col.Width - width
PadLeft(buf, col.Width-(pad/2))
PadRight(buf, col.Width)
cell = buf.Encode()
} else if width > col.Width {
Truncate(buf, col.Width)
cell = buf.Encode()
}
case col.Def.Flags.Has(config.ALIGN_RIGHT):
if width < col.Width {
PadLeft(buf, col.Width)
cell = buf.Encode()
} else if width > col.Width {
TruncateHead(buf, col.Width)
cell = buf.Encode()
}
}
return cell
}
func (t *Table) Draw(ctx *Context) {
if !t.widthsComputed {
t.computeWidths(ctx.Width())
t.widthsComputed = true
}
for r, row := range t.Rows {
if t.CustomDraw(t, r, ctx) {
continue
}
for c, col := range t.Columns {
if col.Width == -1 {
// column overflows screen width
continue
}
cell := col.alignCell(row.Cells[c])
style := t.GetRowStyle(t, r)
buf := StyledString(cell)
ApplyAttrs(buf, style)
cell = buf.Encode()
ctx.Printf(col.Offset, r, style, "%s%s", cell, col.Separator)
}
}
}
|