111 lines
2.4 KiB
Go
111 lines
2.4 KiB
Go
package browsing
|
|
|
|
import (
|
|
"log"
|
|
"supersonic/backend"
|
|
"supersonic/ui/widgets"
|
|
|
|
"fyne.io/fyne/v2"
|
|
"fyne.io/fyne/v2/container"
|
|
"fyne.io/fyne/v2/layout"
|
|
"fyne.io/fyne/v2/theme"
|
|
"fyne.io/fyne/v2/widget"
|
|
)
|
|
|
|
var _ fyne.Widget = (*ArtistPage)(nil)
|
|
|
|
type ArtistPage struct {
|
|
widget.BaseWidget
|
|
|
|
artistID string
|
|
im *backend.ImageManager
|
|
sm *backend.ServerManager
|
|
nav func(Route)
|
|
grid *widgets.AlbumGrid
|
|
titleDisp *widget.RichText
|
|
container *fyne.Container
|
|
|
|
OnPlayAlbum func(string, int)
|
|
}
|
|
|
|
func NewArtistPage(artistID string, sm *backend.ServerManager, im *backend.ImageManager, nav func(Route)) *ArtistPage {
|
|
a := &ArtistPage{
|
|
artistID: artistID,
|
|
sm: sm,
|
|
im: im,
|
|
nav: nav,
|
|
}
|
|
a.ExtendBaseWidget(a)
|
|
a.titleDisp = widget.NewRichTextWithText("Artist")
|
|
a.titleDisp.Segments[0].(*widget.TextSegment).Style = widget.RichTextStyle{
|
|
SizeName: theme.SizeNameHeadingText,
|
|
}
|
|
a.container = container.NewBorder(a.titleDisp, nil, nil, nil, layout.NewSpacer())
|
|
a.loadAsync()
|
|
return a
|
|
}
|
|
|
|
func (a *ArtistPage) Route() Route {
|
|
return ArtistRoute(a.artistID)
|
|
}
|
|
|
|
func (a *ArtistPage) SetPlayAlbumCallback(cb func(string, int)) {
|
|
a.OnPlayAlbum = cb
|
|
}
|
|
|
|
func (a *ArtistPage) Reload() {
|
|
a.loadAsync()
|
|
}
|
|
|
|
func (a *ArtistPage) Save() SavedPage {
|
|
return &savedArtistPage{
|
|
artistID: a.artistID,
|
|
sm: a.sm,
|
|
im: a.im,
|
|
nav: a.nav,
|
|
}
|
|
}
|
|
|
|
func (a *ArtistPage) onPlayAlbum(albumID string) {
|
|
if a.OnPlayAlbum != nil {
|
|
a.OnPlayAlbum(albumID, 0)
|
|
}
|
|
}
|
|
|
|
func (a *ArtistPage) onShowAlbumPage(albumID string) {
|
|
a.nav(AlbumRoute(albumID))
|
|
}
|
|
|
|
func (a *ArtistPage) loadAsync() {
|
|
go func() {
|
|
artist, err := a.sm.Server.GetArtist(a.artistID)
|
|
if err != nil {
|
|
log.Printf("Failed to get artist: %s", err.Error())
|
|
return
|
|
}
|
|
a.titleDisp.Segments[0].(*widget.TextSegment).Text = artist.Name
|
|
a.titleDisp.Refresh()
|
|
ag := widgets.NewFixedAlbumGrid(artist.Album, a.im, true /*showYear*/)
|
|
ag.OnPlayAlbum = a.onPlayAlbum
|
|
ag.OnShowAlbumPage = a.onShowAlbumPage
|
|
a.container.Objects[0] = ag
|
|
a.container.Refresh()
|
|
}()
|
|
}
|
|
|
|
func (a *ArtistPage) CreateRenderer() fyne.WidgetRenderer {
|
|
a.ExtendBaseWidget(a)
|
|
return widget.NewSimpleRenderer(a.container)
|
|
}
|
|
|
|
type savedArtistPage struct {
|
|
artistID string
|
|
sm *backend.ServerManager
|
|
im *backend.ImageManager
|
|
nav func(Route)
|
|
}
|
|
|
|
func (s *savedArtistPage) Restore() Page {
|
|
return NewArtistPage(s.artistID, s.sm, s.im, s.nav)
|
|
}
|