66 lines
1.4 KiB
Go
66 lines
1.4 KiB
Go
package table
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/charmbracelet/lipgloss"
|
|
)
|
|
|
|
// View renders the table. It does not end in a newline, so that it can be
|
|
// composed with other elements more consistently.
|
|
//
|
|
//nolint:cyclop
|
|
func (m Model) View() string {
|
|
// Safety valve for empty tables
|
|
if len(m.columns) == 0 {
|
|
return ""
|
|
}
|
|
|
|
body := strings.Builder{}
|
|
|
|
rowStrs := make([]string, 0, 1)
|
|
|
|
headers := m.renderHeaders()
|
|
|
|
startRowIndex, endRowIndex := m.VisibleIndices()
|
|
numRows := endRowIndex - startRowIndex + 1
|
|
|
|
padding := m.calculatePadding(numRows)
|
|
|
|
if m.headerVisible {
|
|
rowStrs = append(rowStrs, headers)
|
|
} else if numRows > 0 || padding > 0 {
|
|
//nolint: mnd // This is just getting the first newlined substring
|
|
split := strings.SplitN(headers, "\n", 2)
|
|
rowStrs = append(rowStrs, split[0])
|
|
}
|
|
|
|
for i := startRowIndex; i <= endRowIndex; i++ {
|
|
rowStrs = append(rowStrs, m.renderRow(i, padding == 0 && i == endRowIndex))
|
|
}
|
|
|
|
for i := 1; i <= padding; i++ {
|
|
rowStrs = append(rowStrs, m.renderBlankRow(i == padding))
|
|
}
|
|
|
|
var footer string
|
|
|
|
if len(rowStrs) > 0 {
|
|
footer = m.renderFooter(lipgloss.Width(rowStrs[0]), false)
|
|
} else {
|
|
footer = m.renderFooter(lipgloss.Width(headers), true)
|
|
}
|
|
|
|
if footer != "" {
|
|
rowStrs = append(rowStrs, footer)
|
|
}
|
|
|
|
if len(rowStrs) == 0 {
|
|
return ""
|
|
}
|
|
|
|
body.WriteString(lipgloss.JoinVertical(lipgloss.Left, rowStrs...))
|
|
|
|
return body.String()
|
|
}
|