mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
This is now a multi-source scrollable widget, trying to leverage as much of existing functionality as possible for consistency
45 lines
867 B
Go
45 lines
867 B
Go
package todoist
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/rivo/tview"
|
|
"github.com/wtfutil/wtf/wtf"
|
|
)
|
|
|
|
const checkWidth = 4
|
|
|
|
func (widget *Widget) display() {
|
|
proj := widget.CurrentProject()
|
|
|
|
if proj == nil {
|
|
return
|
|
}
|
|
|
|
title := fmt.Sprintf("[green]%s[white]", proj.Project.Name)
|
|
|
|
_, _, width, _ := widget.View.GetRect()
|
|
str := widget.settings.common.SigilStr(len(widget.projects), widget.Idx, width) + "\n"
|
|
|
|
maxLen := proj.LongestLine()
|
|
|
|
for index, item := range proj.tasks {
|
|
row := fmt.Sprintf(
|
|
`["%d"][""][%s]| | %s[%s]`,
|
|
index,
|
|
widget.RowColor(index),
|
|
tview.Escape(item.Content),
|
|
widget.RowColor(index),
|
|
)
|
|
|
|
_, _, w, _ := widget.View.GetInnerRect()
|
|
if w > maxLen {
|
|
maxLen = w
|
|
}
|
|
|
|
str = str + row + wtf.PadRow((checkWidth+len(item.Content)), (checkWidth+maxLen+1)) + `[""]` + "\n"
|
|
}
|
|
|
|
widget.ScrollableWidget.Redraw(title, str, false)
|
|
}
|