refactor: use a []CellWithX instead a chan of CellWithX to make it more sense

This commit is contained in:
Anson Chan 2019-02-24 11:29:35 +08:00
parent 179acca35e
commit b5e7ca951a
3 changed files with 13 additions and 14 deletions

View File

@ -219,13 +219,12 @@ type CellWithX struct {
Cell Cell Cell Cell
} }
func BuildCellChannel(cells []Cell) chan CellWithX { func BuildCellWithXArray(cells []Cell) []CellWithX {
c := make(chan CellWithX, len(cells)) cellWithXArray := make([]CellWithX, len(cells))
index := 0 index := 0
for _, cell := range cells { for i, cell := range cells {
c <- CellWithX{X: index, Cell: cell} cellWithXArray[i] = CellWithX{X: index, Cell: cell}
index += rw.RuneWidth(cell.Rune) index += rw.RuneWidth(cell.Rune)
} }
close(c) return cellWithXArray
return c
} }

View File

@ -40,8 +40,8 @@ func (self *Paragraph) Draw(buf *Buffer) {
break break
} }
row = TrimCells(row, self.Inner.Dx()) row = TrimCells(row, self.Inner.Dx())
for signal := range BuildCellChannel(row) { for _, cx := range BuildCellWithXArray(row) {
x, cell := signal.X, signal.Cell x, cell := cx.X, cx.Cell
buf.SetCell(cell, image.Pt(x, y).Add(self.Inner.Min)) buf.SetCell(cell, image.Pt(x, y).Add(self.Inner.Min))
} }
} }

View File

@ -74,8 +74,8 @@ func (self *Table) Draw(buf *Buffer) {
col := ParseText(row[j], rowStyle) col := ParseText(row[j], rowStyle)
// draw row cell // draw row cell
if len(col) > columnWidths[j] || self.TextAlign == AlignLeft { if len(col) > columnWidths[j] || self.TextAlign == AlignLeft {
for signal := range BuildCellChannel(col) { for _, cx := range BuildCellWithXArray(col) {
k, cell := signal.X, signal.Cell k, cell := cx.X, cx.Cell
if k == columnWidths[j] || colXCoordinate+k == self.Inner.Max.X { if k == columnWidths[j] || colXCoordinate+k == self.Inner.Max.X {
cell.Rune = ELLIPSES cell.Rune = ELLIPSES
buf.SetCell(cell, image.Pt(colXCoordinate+k-1, yCoordinate)) buf.SetCell(cell, image.Pt(colXCoordinate+k-1, yCoordinate))
@ -87,14 +87,14 @@ func (self *Table) Draw(buf *Buffer) {
} else if self.TextAlign == AlignCenter { } else if self.TextAlign == AlignCenter {
xCoordinateOffset := (columnWidths[j] - len(col)) / 2 xCoordinateOffset := (columnWidths[j] - len(col)) / 2
stringXCoordinate := xCoordinateOffset + colXCoordinate stringXCoordinate := xCoordinateOffset + colXCoordinate
for signal := range BuildCellChannel(col) { for _, cx := range BuildCellWithXArray(col) {
k, cell := signal.X, signal.Cell k, cell := cx.X, cx.Cell
buf.SetCell(cell, image.Pt(stringXCoordinate+k, yCoordinate)) buf.SetCell(cell, image.Pt(stringXCoordinate+k, yCoordinate))
} }
} else if self.TextAlign == AlignRight { } else if self.TextAlign == AlignRight {
stringXCoordinate := MinInt(colXCoordinate+columnWidths[j], self.Inner.Max.X) - len(col) stringXCoordinate := MinInt(colXCoordinate+columnWidths[j], self.Inner.Max.X) - len(col)
for signal := range BuildCellChannel(col) { for _, cx := range BuildCellWithXArray(col) {
k, cell := signal.X, signal.Cell k, cell := cx.X, cx.Cell
buf.SetCell(cell, image.Pt(stringXCoordinate+k, yCoordinate)) buf.SetCell(cell, image.Pt(stringXCoordinate+k, yCoordinate))
} }
} }