Files
supersonic/ui/widgets/tracklist.go
T

137 lines
3.5 KiB
Go

package widgets
import (
"strconv"
"supersonic/ui/layouts"
"supersonic/ui/util"
"fyne.io/fyne/v2"
"fyne.io/fyne/v2/container"
"fyne.io/fyne/v2/widget"
"github.com/dweymouth/go-subsonic"
)
type TrackRow struct {
widget.BaseWidget
trackID string
prevTrackID string
prevIsPlaying bool
num *widget.RichText
name *widget.RichText
artist *widget.RichText
dur *widget.RichText
OnDoubleTapped func()
container *fyne.Container
}
var _ fyne.DoubleTappable = (*TrackRow)(nil)
func NewTrackRow(layout *layouts.ColumnsLayout) *TrackRow {
t := &TrackRow{}
t.ExtendBaseWidget(t)
t.num = widget.NewRichTextWithText("")
t.name = widget.NewRichTextWithText("")
t.name.Wrapping = fyne.TextTruncate
t.artist = widget.NewRichTextWithText("")
t.artist.Wrapping = fyne.TextTruncate
t.dur = widget.NewRichTextWithText("")
t.container = container.New(layout,
t.num, t.name, t.artist, t.dur)
return t
}
func (t *TrackRow) Update(tr *subsonic.Child, isPlaying bool, rowNum int) {
if tr.ID == t.prevTrackID && isPlaying == t.prevIsPlaying {
return
}
t.prevTrackID = t.trackID
t.prevIsPlaying = isPlaying
t.trackID = tr.ID
if rowNum < 0 {
rowNum = tr.Track
}
t.num.Segments[0].(*widget.TextSegment).Text = strconv.Itoa(rowNum)
t.name.Segments[0].(*widget.TextSegment).Text = tr.Title
t.artist.Segments[0].(*widget.TextSegment).Text = tr.Artist
t.dur.Segments[0].(*widget.TextSegment).Text = util.SecondsToTimeString(float64(tr.Duration))
t.num.Segments[0].(*widget.TextSegment).Style.TextStyle = fyne.TextStyle{Bold: isPlaying}
t.name.Segments[0].(*widget.TextSegment).Style.TextStyle = fyne.TextStyle{Bold: isPlaying, Italic: isPlaying}
t.artist.Segments[0].(*widget.TextSegment).Style.TextStyle = fyne.TextStyle{Bold: isPlaying, Italic: isPlaying}
t.dur.Segments[0].(*widget.TextSegment).Style.TextStyle = fyne.TextStyle{Bold: isPlaying}
t.Refresh()
}
func (t *TrackRow) CreateRenderer() fyne.WidgetRenderer {
return widget.NewSimpleRenderer(t.container)
}
func (t *TrackRow) DoubleTapped(*fyne.PointEvent) {
if t.OnDoubleTapped != nil {
t.OnDoubleTapped()
}
}
type Tracklist struct {
widget.BaseWidget
Tracks []*subsonic.Child
AutoNumber bool
OnPlayTrackAt func(int)
nowPlayingIdx int
colLayout *layouts.ColumnsLayout
hdr *ListHeader
list *widget.List
container *fyne.Container
}
func NewTracklist(tracks []*subsonic.Child) *Tracklist {
t := &Tracklist{Tracks: tracks, nowPlayingIdx: -1}
t.ExtendBaseWidget(t)
t.colLayout = layouts.NewColumnsLayout([]float32{35, -1, -1, 55})
t.hdr = NewListHeader([]string{"#", "Title", "Artist", "Time"}, t.colLayout)
t.list = widget.NewList(
func() int { return len(t.Tracks) },
func() fyne.CanvasObject { return NewTrackRow(t.colLayout) },
func(itemID widget.ListItemID, item fyne.CanvasObject) {
tr := item.(*TrackRow)
tr.OnDoubleTapped = func() { t.onPlayTrackAt(itemID) }
i := itemID + 1
if !t.AutoNumber {
i = -1 // signal that we want to use the track num.
}
tr.Update(t.Tracks[itemID], itemID == t.nowPlayingIdx, i)
})
t.container = container.NewBorder(t.hdr, nil, nil, nil, t.list)
return t
}
func (t *Tracklist) SetNowPlaying(trackID string) {
t.nowPlayingIdx = -1
for i, tr := range t.Tracks {
if tr.ID == trackID {
t.nowPlayingIdx = i
break
}
}
t.list.Refresh()
}
func (t *Tracklist) CreateRenderer() fyne.WidgetRenderer {
return widget.NewSimpleRenderer(t.container)
}
func (t *Tracklist) onPlayTrackAt(idx int) {
if t.OnPlayTrackAt != nil {
t.OnPlayTrackAt(idx)
}
}