Skip to content
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

uitable: add Table.Lines() to allow accessing the table content as []string #23

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 18 additions & 11 deletions table.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,19 +55,15 @@ func (t *Table) Bytes() []byte {
return []byte(t.String())
}

func (t *Table) RightAlign(col int) {
t.mtx.Lock()
t.rightAlign[col] = true
t.mtx.Unlock()
}

// String returns the string value of table
func (t *Table) String() string {
// Lines returns the table's rows as a slice of strings
func (t *Table) Lines() []string {
t.mtx.RLock()
defer t.mtx.RUnlock()

lines := []string{}

if len(t.Rows) == 0 {
return ""
return lines
}

// determine the width for each column (cell in a row)
Expand All @@ -89,7 +85,6 @@ func (t *Table) String() string {
}
}

var lines []string
for _, row := range t.Rows {
row.Separator = t.Separator
for i, cell := range row.Cells {
Expand All @@ -99,7 +94,19 @@ func (t *Table) String() string {
}
lines = append(lines, row.String())
}
return strutil.Join(lines, "\n")

return lines
}

func (t *Table) RightAlign(col int) {
t.mtx.Lock()
t.rightAlign[col] = true
t.mtx.Unlock()
}

// String returns the string value of table
func (t *Table) String() string {
return strutil.Join(t.Lines(), "\n")
}

// Row represents a row in a table
Expand Down