xmtop/src/termui/table.go

204 lines
4.6 KiB
Go
Raw Normal View History

2019-01-01 07:01:13 +08:00
package termui
import (
2019-01-01 08:55:50 +08:00
"image"
"log"
2019-01-01 07:01:13 +08:00
"strings"
2019-01-01 08:55:50 +08:00
. "github.com/gizak/termui"
2019-01-01 07:01:13 +08:00
)
type Table struct {
*Block
Header []string
Rows [][]string
ColWidths []int
CellXPos []int // column position
ColResizer func() // for widgets that inherit a Table and want to overload the ColResize method
Gap int // gap between columns
PadLeft int
Cursor bool
CursorColor Color
2019-01-01 07:01:13 +08:00
UniqueCol int // the column used to identify the selected item
SelectedItem string // used to keep the cursor on the correct item if the data changes
SelectedRow int
TopRow int // used to indicate where in the table we are scrolled at
}
// NewTable returns a new Table instance
func NewTable() *Table {
self := &Table{
2019-01-01 08:55:50 +08:00
Block: NewBlock(),
// CursorColor: Theme.TableCursor,
2019-01-01 07:01:13 +08:00
SelectedRow: 0,
TopRow: 0,
UniqueCol: 0,
}
self.ColResizer = self.ColResize
return self
}
// ColResize is the default column resizer, but can be overriden.
// ColResize calculates the width of each column.
func (self *Table) ColResize() {
}
2019-01-01 08:55:50 +08:00
func (self *Table) Draw(buf *Buffer) {
self.Block.Draw(buf)
2019-01-01 07:01:13 +08:00
self.ColResizer()
// finds exact column starting position
self.CellXPos = []int{}
cur := 1 + self.PadLeft
for _, w := range self.ColWidths {
self.CellXPos = append(self.CellXPos, cur)
cur += w
cur += self.Gap
}
// prints header
for i, h := range self.Header {
width := self.ColWidths[i]
if width == 0 {
continue
}
// don't render column if it doesn't fit in widget
2019-01-01 08:55:50 +08:00
if width > (self.Inner.Dx()-self.CellXPos[i])+1 {
2019-01-01 07:01:13 +08:00
continue
}
2019-01-01 08:55:50 +08:00
buf.SetString(
h,
NewStyle(Theme.Default.Fg, ColorClear, ModifierBold),
2019-01-15 11:47:44 +08:00
image.Pt(self.Inner.Min.X+self.CellXPos[i]-1, self.Inner.Min.Y),
2019-01-01 08:55:50 +08:00
)
2019-01-01 07:01:13 +08:00
}
if self.TopRow < 0 {
log.Printf("table widget TopRow value less than 0. TopRow: %v", self.TopRow)
return
}
2019-01-01 07:01:13 +08:00
// prints each row
2019-01-01 08:55:50 +08:00
for rowNum := self.TopRow; rowNum < self.TopRow+self.Inner.Dy()-1 && rowNum < len(self.Rows); rowNum++ {
2019-01-01 07:01:13 +08:00
row := self.Rows[rowNum]
y := (rowNum + 2) - self.TopRow
// prints cursor
style := NewStyle(Theme.Default.Fg)
2019-01-01 07:01:13 +08:00
if self.Cursor {
if (self.SelectedItem == "" && rowNum == self.SelectedRow) || (self.SelectedItem != "" && self.SelectedItem == row[self.UniqueCol]) {
style.Fg = self.CursorColor
style.Modifier = ModifierReverse
2019-01-01 07:01:13 +08:00
for _, width := range self.ColWidths {
if width == 0 {
continue
}
2019-01-01 08:55:50 +08:00
buf.SetString(
strings.Repeat(" ", self.Inner.Dx()),
style,
2019-01-15 11:47:44 +08:00
image.Pt(self.Inner.Min.X, self.Inner.Min.Y+y-1),
2019-01-01 08:55:50 +08:00
)
2019-01-01 07:01:13 +08:00
}
self.SelectedItem = row[self.UniqueCol]
self.SelectedRow = rowNum
}
}
// prints each col of the row
for i, width := range self.ColWidths {
if width == 0 {
continue
}
// don't render column if width is greater than distance to end of widget
2019-01-01 08:55:50 +08:00
if width > (self.Inner.Dx()-self.CellXPos[i])+1 {
2019-01-01 07:01:13 +08:00
continue
}
2019-01-01 08:55:50 +08:00
r := TrimString(row[i], width)
buf.SetString(
r,
style,
2019-01-15 11:47:44 +08:00
image.Pt(self.Inner.Min.X+self.CellXPos[i]-1, self.Inner.Min.Y+y-1),
2019-01-01 08:55:50 +08:00
)
2019-01-01 07:01:13 +08:00
}
}
}
/////////////////////////////////////////////////////////////////////////////////
// Cursor Movement //
/////////////////////////////////////////////////////////////////////////////////
// calcPos is used to calculate the cursor position and the current view.
func (self *Table) calcPos() {
self.SelectedItem = ""
if self.SelectedRow < 0 {
self.SelectedRow = 0
}
if self.SelectedRow < self.TopRow {
self.TopRow = self.SelectedRow
}
if self.SelectedRow > len(self.Rows)-1 {
self.SelectedRow = len(self.Rows) - 1
}
2019-01-01 08:55:50 +08:00
if self.SelectedRow > self.TopRow+(self.Inner.Dy()-2) {
self.TopRow = self.SelectedRow - (self.Inner.Dy() - 2)
2019-01-01 07:01:13 +08:00
}
}
func (self *Table) Up() {
self.SelectedRow--
2019-01-01 07:01:13 +08:00
self.calcPos()
}
func (self *Table) Down() {
self.SelectedRow++
2019-01-01 07:01:13 +08:00
self.calcPos()
}
func (self *Table) Top() {
self.SelectedRow = 0
self.calcPos()
}
func (self *Table) Bottom() {
self.SelectedRow = len(self.Rows) - 1
self.calcPos()
}
// The number of lines in a page is equal to the height of the widgeself.
func (self *Table) HalfPageUp() {
2019-01-01 08:55:50 +08:00
self.SelectedRow = self.SelectedRow - (self.Inner.Dy()-2)/2
2019-01-01 07:01:13 +08:00
self.calcPos()
}
func (self *Table) HalfPageDown() {
2019-01-01 08:55:50 +08:00
self.SelectedRow = self.SelectedRow + (self.Inner.Dy()-2)/2
2019-01-01 07:01:13 +08:00
self.calcPos()
}
func (self *Table) PageUp() {
2019-01-01 08:55:50 +08:00
self.SelectedRow -= (self.Inner.Dy() - 2)
2019-01-01 07:01:13 +08:00
self.calcPos()
}
func (self *Table) PageDown() {
2019-01-01 08:55:50 +08:00
self.SelectedRow += (self.Inner.Dy() - 2)
2019-01-01 07:01:13 +08:00
self.calcPos()
}
func (self *Table) Click(x, y int) {
2019-01-01 08:55:50 +08:00
x = x - self.Min.X
y = y - self.Min.Y
if (x > 0 && x <= self.Inner.Dx()) && (y > 0 && y <= self.Inner.Dy()) {
2019-01-01 07:01:13 +08:00
self.SelectedRow = (self.TopRow + y) - 2
self.calcPos()
}
}