Merge pull request #18 from dweymouth/develop
Add Genre page with album grid
This commit is contained in:
+26
-10
@@ -51,17 +51,17 @@ var (
|
|||||||
func (l *LibraryManager) AlbumsIter(sort AlbumSortOrder) AlbumIterator {
|
func (l *LibraryManager) AlbumsIter(sort AlbumSortOrder) AlbumIterator {
|
||||||
switch sort {
|
switch sort {
|
||||||
case AlbumSortRecentlyAdded:
|
case AlbumSortRecentlyAdded:
|
||||||
return l.newBaseIter("newest")
|
return l.newBaseIter("newest", make(map[string]string))
|
||||||
case AlbumSortRecentlyPlayed:
|
case AlbumSortRecentlyPlayed:
|
||||||
return l.newBaseIter("recent")
|
return l.newBaseIter("recent", make(map[string]string))
|
||||||
case AlbumSortFrequentlyPlayed:
|
case AlbumSortFrequentlyPlayed:
|
||||||
return l.newBaseIter("frequent")
|
return l.newBaseIter("frequent", make(map[string]string))
|
||||||
case AlbumSortRandom:
|
case AlbumSortRandom:
|
||||||
return l.newRandomIter()
|
return l.newRandomIter()
|
||||||
case AlbumSortTitleAZ:
|
case AlbumSortTitleAZ:
|
||||||
return l.newBaseIter("alphabeticalByName")
|
return l.newBaseIter("alphabeticalByName", make(map[string]string))
|
||||||
case AlbumSortArtistAZ:
|
case AlbumSortArtistAZ:
|
||||||
return l.newBaseIter("alphabeticalByArtist")
|
return l.newBaseIter("alphabeticalByArtist", make(map[string]string))
|
||||||
default:
|
default:
|
||||||
log.Printf("Undefined album sort order: %s", sort)
|
log.Printf("Undefined album sort order: %s", sort)
|
||||||
return nil
|
return nil
|
||||||
@@ -69,11 +69,19 @@ func (l *LibraryManager) AlbumsIter(sort AlbumSortOrder) AlbumIterator {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (l *LibraryManager) StarredIter() AlbumIterator {
|
func (l *LibraryManager) StarredIter() AlbumIterator {
|
||||||
return l.newBaseIter("starred")
|
return l.newBaseIter("starred", make(map[string]string))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (l *LibraryManager) GenreIter(genre string) AlbumIterator {
|
||||||
|
return l.newBaseIter("byGenre", map[string]string{"genre": genre})
|
||||||
}
|
}
|
||||||
|
|
||||||
func (l *LibraryManager) SearchIter(query string) AlbumIterator {
|
func (l *LibraryManager) SearchIter(query string) AlbumIterator {
|
||||||
return l.newSearchIter(query)
|
return l.newSearchIter(query, func(*subsonic.AlbumID3) bool { return true })
|
||||||
|
}
|
||||||
|
|
||||||
|
func (l *LibraryManager) SearchIterWithFilter(query string, filter func(*subsonic.AlbumID3) bool) AlbumIterator {
|
||||||
|
return l.newSearchIter(query, filter)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (l *LibraryManager) CacheAlbum(a *subsonic.AlbumID3) {
|
func (l *LibraryManager) CacheAlbum(a *subsonic.AlbumID3) {
|
||||||
@@ -99,16 +107,18 @@ type baseIter struct {
|
|||||||
pos int
|
pos int
|
||||||
l *LibraryManager
|
l *LibraryManager
|
||||||
s *subsonic.Client
|
s *subsonic.Client
|
||||||
|
opts map[string]string
|
||||||
prefetched []*subsonic.AlbumID3
|
prefetched []*subsonic.AlbumID3
|
||||||
prefetchedPos int
|
prefetchedPos int
|
||||||
done bool
|
done bool
|
||||||
}
|
}
|
||||||
|
|
||||||
func (l *LibraryManager) newBaseIter(listType string) *baseIter {
|
func (l *LibraryManager) newBaseIter(listType string, opts map[string]string) *baseIter {
|
||||||
return &baseIter{
|
return &baseIter{
|
||||||
listType: listType,
|
listType: listType,
|
||||||
l: l,
|
l: l,
|
||||||
s: l.s.Server,
|
s: l.s.Server,
|
||||||
|
opts: opts,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -128,7 +138,8 @@ func (r *baseIter) Next() *subsonic.AlbumID3 {
|
|||||||
|
|
||||||
return a
|
return a
|
||||||
}
|
}
|
||||||
albums, err := r.s.GetAlbumList2(r.listType, map[string]string{"size": "20", "offset": strconv.Itoa(r.pos)})
|
r.opts["offset"] = strconv.Itoa(r.pos)
|
||||||
|
albums, err := r.s.GetAlbumList2(r.listType, r.opts)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Println(err)
|
log.Println(err)
|
||||||
albums = nil
|
albums = nil
|
||||||
@@ -165,17 +176,19 @@ type searchIter struct {
|
|||||||
songOffset int
|
songOffset int
|
||||||
l *LibraryManager
|
l *LibraryManager
|
||||||
s *subsonic.Client
|
s *subsonic.Client
|
||||||
|
filter func(*subsonic.AlbumID3) bool
|
||||||
prefetched []*subsonic.AlbumID3
|
prefetched []*subsonic.AlbumID3
|
||||||
prefetchedPos int
|
prefetchedPos int
|
||||||
albumIDset map[string]bool
|
albumIDset map[string]bool
|
||||||
done bool
|
done bool
|
||||||
}
|
}
|
||||||
|
|
||||||
func (l *LibraryManager) newSearchIter(query string) *searchIter {
|
func (l *LibraryManager) newSearchIter(query string, filter func(*subsonic.AlbumID3) bool) *searchIter {
|
||||||
return &searchIter{
|
return &searchIter{
|
||||||
query: query,
|
query: query,
|
||||||
l: l,
|
l: l,
|
||||||
s: l.s.Server,
|
s: l.s.Server,
|
||||||
|
filter: filter,
|
||||||
albumIDset: make(map[string]bool),
|
albumIDset: make(map[string]bool),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -260,6 +273,9 @@ func (s *searchIter) addNewAlbums(al []*subsonic.AlbumID3) {
|
|||||||
if _, have := s.albumIDset[album.ID]; have {
|
if _, have := s.albumIDset[album.ID]; have {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
if !s.filter(album) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
s.prefetched = append(s.prefetched, album)
|
s.prefetched = append(s.prefetched, album)
|
||||||
s.albumIDset[album.ID] = true
|
s.albumIDset[album.ID] = true
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -93,11 +93,12 @@ type AlbumPageHeader struct {
|
|||||||
|
|
||||||
albumID string
|
albumID string
|
||||||
artistID string
|
artistID string
|
||||||
|
genre string
|
||||||
|
|
||||||
cover *canvas.Image
|
cover *canvas.Image
|
||||||
titleLabel *widget.RichText
|
titleLabel *widget.RichText
|
||||||
artistLabel *widgets.CustomHyperlink
|
artistLabel *widgets.CustomHyperlink
|
||||||
genreLabel *widget.Label // later custom hyperlink
|
genreLabel *widgets.CustomHyperlink
|
||||||
miscLabel *widget.Label
|
miscLabel *widget.Label
|
||||||
|
|
||||||
playButton *widget.Button
|
playButton *widget.Button
|
||||||
@@ -119,7 +120,10 @@ func NewAlbumPageHeader(page *AlbumPage) *AlbumPageHeader {
|
|||||||
a.artistLabel.OnTapped = func() {
|
a.artistLabel.OnTapped = func() {
|
||||||
page.nav(ArtistRoute(a.artistID))
|
page.nav(ArtistRoute(a.artistID))
|
||||||
}
|
}
|
||||||
a.genreLabel = widget.NewLabel("")
|
a.genreLabel = widgets.NewCustomHyperlink()
|
||||||
|
a.genreLabel.OnTapped = func() {
|
||||||
|
page.nav(GenreRoute(a.genre))
|
||||||
|
}
|
||||||
a.miscLabel = widget.NewLabel("")
|
a.miscLabel = widget.NewLabel("")
|
||||||
a.playButton = widget.NewButtonWithIcon("Play", theme.MediaPlayIcon(), func() {
|
a.playButton = widget.NewButtonWithIcon("Play", theme.MediaPlayIcon(), func() {
|
||||||
page.onPlayTrackAt(0)
|
page.onPlayTrackAt(0)
|
||||||
@@ -144,6 +148,7 @@ func (a *AlbumPageHeader) Update(album *subsonic.AlbumID3, im *backend.ImageMana
|
|||||||
a.artistID = album.ArtistID
|
a.artistID = album.ArtistID
|
||||||
a.titleLabel.Segments[0].(*widget.TextSegment).Text = album.Name
|
a.titleLabel.Segments[0].(*widget.TextSegment).Text = album.Name
|
||||||
a.artistLabel.SetText(album.Artist)
|
a.artistLabel.SetText(album.Artist)
|
||||||
|
a.genre = album.Genre
|
||||||
a.genreLabel.SetText(album.Genre)
|
a.genreLabel.SetText(album.Genre)
|
||||||
a.miscLabel.SetText(formatMiscLabelStr(album))
|
a.miscLabel.SetText(formatMiscLabelStr(album))
|
||||||
a.Refresh()
|
a.Refresh()
|
||||||
|
|||||||
@@ -0,0 +1,127 @@
|
|||||||
|
package browsing
|
||||||
|
|
||||||
|
import (
|
||||||
|
"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"
|
||||||
|
"github.com/dweymouth/go-subsonic"
|
||||||
|
)
|
||||||
|
|
||||||
|
// TODO: there is a lot of code duplication between this and albumspage. Refactor?
|
||||||
|
type GenrePage struct {
|
||||||
|
widget.BaseWidget
|
||||||
|
|
||||||
|
genre string
|
||||||
|
im *backend.ImageManager
|
||||||
|
lm *backend.LibraryManager
|
||||||
|
nav func(Route)
|
||||||
|
grid *widgets.AlbumGrid
|
||||||
|
searchGrid *widgets.AlbumGrid
|
||||||
|
searcher *widgets.Searcher
|
||||||
|
searchText string
|
||||||
|
titleDisp *widget.RichText
|
||||||
|
|
||||||
|
OnPlayAlbum func(string, int)
|
||||||
|
|
||||||
|
container *fyne.Container
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewGenrePage(genre string, lm *backend.LibraryManager, im *backend.ImageManager, nav func(Route)) *GenrePage {
|
||||||
|
g := &GenrePage{
|
||||||
|
genre: genre,
|
||||||
|
lm: lm,
|
||||||
|
im: im,
|
||||||
|
nav: nav,
|
||||||
|
}
|
||||||
|
g.ExtendBaseWidget(g)
|
||||||
|
|
||||||
|
g.titleDisp = widget.NewRichTextWithText(genre)
|
||||||
|
g.titleDisp.Segments[0].(*widget.TextSegment).Style = widget.RichTextStyle{
|
||||||
|
SizeName: theme.SizeNameHeadingText,
|
||||||
|
}
|
||||||
|
iter := g.lm.GenreIter(g.genre)
|
||||||
|
g.grid = widgets.NewAlbumGrid(iter, g.im.GetAlbumThumbnail, false)
|
||||||
|
g.grid.OnPlayAlbum = g.onPlayAlbum
|
||||||
|
g.grid.OnShowArtistPage = g.onShowArtistPage
|
||||||
|
g.grid.OnShowAlbumPage = g.onShowAlbumPage
|
||||||
|
g.searcher = widgets.NewSearcher()
|
||||||
|
g.searcher.OnSearched = g.OnSearched
|
||||||
|
searchVbox := container.NewVBox(layout.NewSpacer(), g.searcher.Entry, layout.NewSpacer())
|
||||||
|
g.container = container.NewBorder(
|
||||||
|
container.NewHBox(widgets.NewHSpace(9), g.titleDisp, layout.NewSpacer(), searchVbox, widgets.NewHSpace(15)),
|
||||||
|
nil,
|
||||||
|
nil,
|
||||||
|
nil,
|
||||||
|
g.grid,
|
||||||
|
)
|
||||||
|
return g
|
||||||
|
}
|
||||||
|
|
||||||
|
func (g *GenrePage) CreateRenderer() fyne.WidgetRenderer {
|
||||||
|
return widget.NewSimpleRenderer(g.container)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (a *GenrePage) Route() Route {
|
||||||
|
return GenreRoute(a.genre)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (a *GenrePage) SetPlayAlbumCallback(cb func(string, int)) {
|
||||||
|
a.OnPlayAlbum = cb
|
||||||
|
}
|
||||||
|
|
||||||
|
func (g *GenrePage) Reload() {
|
||||||
|
if g.searchText != "" {
|
||||||
|
g.doSearch(g.searchText)
|
||||||
|
} else {
|
||||||
|
g.grid.Reset(g.lm.GenreIter(g.genre))
|
||||||
|
g.grid.Refresh()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (a *GenrePage) onPlayAlbum(albumID string) {
|
||||||
|
if a.OnPlayAlbum != nil {
|
||||||
|
a.OnPlayAlbum(albumID, 0)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (a *GenrePage) onShowArtistPage(artistID string) {
|
||||||
|
a.nav(ArtistRoute(artistID))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (a *GenrePage) onShowAlbumPage(albumID string) {
|
||||||
|
a.nav(AlbumRoute(albumID))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (g *GenrePage) OnSearched(query string) {
|
||||||
|
g.searchText = query
|
||||||
|
if query == "" {
|
||||||
|
g.container.Objects[0] = g.grid
|
||||||
|
if g.searchGrid != nil {
|
||||||
|
g.searchGrid.Clear()
|
||||||
|
}
|
||||||
|
g.Refresh()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
g.doSearch(query)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (g *GenrePage) doSearch(query string) {
|
||||||
|
iter := g.lm.SearchIterWithFilter(query, func(al *subsonic.AlbumID3) bool {
|
||||||
|
return al.Genre == g.genre
|
||||||
|
})
|
||||||
|
if g.searchGrid == nil {
|
||||||
|
g.searchGrid = widgets.NewAlbumGrid(iter, g.im.GetAlbumThumbnail, false /*showYear*/)
|
||||||
|
g.searchGrid.OnPlayAlbum = g.onPlayAlbum
|
||||||
|
g.searchGrid.OnShowAlbumPage = g.onShowAlbumPage
|
||||||
|
g.searchGrid.OnShowArtistPage = g.onShowArtistPage
|
||||||
|
} else {
|
||||||
|
g.searchGrid.Reset(iter)
|
||||||
|
}
|
||||||
|
g.container.Objects[0] = g.searchGrid
|
||||||
|
g.Refresh()
|
||||||
|
}
|
||||||
@@ -12,6 +12,8 @@ const (
|
|||||||
Albums
|
Albums
|
||||||
Artist
|
Artist
|
||||||
Artists
|
Artists
|
||||||
|
Genre
|
||||||
|
Genres
|
||||||
Playlist
|
Playlist
|
||||||
Playlists
|
Playlists
|
||||||
)
|
)
|
||||||
@@ -33,6 +35,10 @@ func AlbumRoute(albumID string) Route {
|
|||||||
return Route{Page: Album, Arg: albumID}
|
return Route{Page: Album, Arg: albumID}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func GenreRoute(genre string) Route {
|
||||||
|
return Route{Page: Genre, Arg: genre}
|
||||||
|
}
|
||||||
|
|
||||||
type NavigationHandler interface {
|
type NavigationHandler interface {
|
||||||
SetPage(Page)
|
SetPage(Page)
|
||||||
}
|
}
|
||||||
@@ -57,6 +63,8 @@ func (r Router) CreatePage(rte Route) Page {
|
|||||||
return NewAlbumsPage("Albums", rte.Arg, r.App.LibraryManager, r.App.ImageManager, r.OpenRoute)
|
return NewAlbumsPage("Albums", rte.Arg, r.App.LibraryManager, r.App.ImageManager, r.OpenRoute)
|
||||||
case Artist:
|
case Artist:
|
||||||
return NewArtistPage(rte.Arg, r.App.ServerManager, r.App.ImageManager, r.OpenRoute)
|
return NewArtistPage(rte.Arg, r.App.ServerManager, r.App.ImageManager, r.OpenRoute)
|
||||||
|
case Genre:
|
||||||
|
return NewGenrePage(rte.Arg, r.App.LibraryManager, r.App.ImageManager, r.OpenRoute)
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user