search done
This commit is contained in:
parent
3a982468de
commit
cf68fd1555
@ -208,7 +208,7 @@ func PlayLikedSongs(ctx *gctx.Context, client *spotify.Client, position int) err
|
|||||||
|
|
||||||
func RadioGivenArtist(ctx *gctx.Context, client *spotify.Client, artist_id spotify.ID) error {
|
func RadioGivenArtist(ctx *gctx.Context, client *spotify.Client, artist_id spotify.ID) error {
|
||||||
seed := spotify.Seeds{
|
seed := spotify.Seeds{
|
||||||
Tracks: []spotify.ID{artist_id},
|
Artists: []spotify.ID{artist_id},
|
||||||
}
|
}
|
||||||
recomendations, err := client.GetRecommendations(ctx, seed, &spotify.TrackAttributes{}, spotify.Limit(100))
|
recomendations, err := client.GetRecommendations(ctx, seed, &spotify.TrackAttributes{}, spotify.Limit(100))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -9,7 +9,7 @@ import (
|
|||||||
"github.com/zmb3/spotify/v2"
|
"github.com/zmb3/spotify/v2"
|
||||||
)
|
)
|
||||||
|
|
||||||
func HandlePlay(ctx *gctx.Context, client *spotify.Client, uri *spotify.URI, pos int) {
|
func HandlePlayWithContext(ctx *gctx.Context, client *spotify.Client, uri *spotify.URI, pos int) {
|
||||||
var err error
|
var err error
|
||||||
err = commands.PlaySongInPlaylist(ctx, client, uri, pos)
|
err = commands.PlaySongInPlaylist(ctx, client, uri, pos)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -31,6 +31,13 @@ func HandleAlbumRadio(ctx *gctx.Context, client *spotify.Client, id spotify.ID)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func HandleArtistRadio(ctx *gctx.Context, client *spotify.Client, id spotify.ID) {
|
||||||
|
err := commands.RadioGivenArtist(ctx, client, id)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func HandleAlbumArtist(ctx *gctx.Context, client *spotify.Client, id spotify.ID) {
|
func HandleAlbumArtist(ctx *gctx.Context, client *spotify.Client, id spotify.ID) {
|
||||||
err := commands.RadioGivenArtist(ctx, client, id)
|
err := commands.RadioGivenArtist(ctx, client, id)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -41,7 +48,6 @@ func HandleAlbumArtist(ctx *gctx.Context, client *spotify.Client, id spotify.ID)
|
|||||||
func HandlePlaylistRadio(ctx *gctx.Context, client *spotify.Client, playlist spotify.SimplePlaylist) {
|
func HandlePlaylistRadio(ctx *gctx.Context, client *spotify.Client, playlist spotify.SimplePlaylist) {
|
||||||
err := commands.RadioFromPlaylist(ctx, client, playlist)
|
err := commands.RadioFromPlaylist(ctx, client, playlist)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Println("AHHHHHHHHHHHHHHHHHH", err.Error())
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -62,8 +68,20 @@ func HandlePlayLikedSong(ctx *gctx.Context, client *spotify.Client, position int
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func HandlePlayTrack(ctx *gctx.Context, client *spotify.Client, track spotify.ID) {
|
||||||
|
err := commands.QueueSong(ctx, client, track)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Println(err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
err = commands.Next(ctx, client)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Println(err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func HandleSetDevice(ctx *gctx.Context, client *spotify.Client, player spotify.PlayerDevice) {
|
func HandleSetDevice(ctx *gctx.Context, client *spotify.Client, player spotify.PlayerDevice) {
|
||||||
fmt.Println("WHOA")
|
|
||||||
var err error
|
var err error
|
||||||
err = commands.SetDevice(ctx, client, player)
|
err = commands.SetDevice(ctx, client, player)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
559
src/tui/main.go
559
src/tui/main.go
@ -25,24 +25,25 @@ var (
|
|||||||
type Mode string
|
type Mode string
|
||||||
|
|
||||||
const (
|
const (
|
||||||
Album Mode = "album"
|
Album Mode = "album"
|
||||||
ArtistAlbum = "artistalbum"
|
ArtistAlbum = "artistalbum"
|
||||||
Artist = "artist"
|
Artist = "artist"
|
||||||
Artists = "artists"
|
Artists = "artists"
|
||||||
Tracks = "tracks"
|
Tracks = "tracks"
|
||||||
Albums = "albums"
|
Albums = "albums"
|
||||||
Main = "main"
|
Main = "main"
|
||||||
Playlists = "playlists"
|
Playlists = "playlists"
|
||||||
Playlist = "playlist"
|
Playlist = "playlist"
|
||||||
Devices = "devices"
|
Devices = "devices"
|
||||||
Search = "search"
|
Search = "search"
|
||||||
SearchAlbums = "searchalbums"
|
SearchAlbums = "searchalbums"
|
||||||
SearchArtists = "searchartists"
|
SearchAlbum = "searchalbum"
|
||||||
SearchTracks = "searchtracks"
|
SearchArtists = "searchartists"
|
||||||
SearchPlaylists = "searchplaylsits"
|
SearchArtist = "searchartist"
|
||||||
SearchArtist = "searchartist"
|
SearchArtistAlbum = "searchartistalbum"
|
||||||
SearchPlaylist = "searchplaylist"
|
SearchTracks = "searchtracks"
|
||||||
SearchAlbum = "searchalbum"
|
SearchPlaylists = "searchplaylsits"
|
||||||
|
SearchPlaylist = "searchplaylist"
|
||||||
)
|
)
|
||||||
|
|
||||||
type mainItem struct {
|
type mainItem struct {
|
||||||
@ -54,21 +55,57 @@ type mainItem struct {
|
|||||||
SpotifyItem any
|
SpotifyItem any
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type SearchResults struct {
|
||||||
|
Tracks *spotify.FullTrackPage
|
||||||
|
Artists *spotify.FullArtistPage
|
||||||
|
Playlists *spotify.SimplePlaylistPage
|
||||||
|
Albums *spotify.SimpleAlbumPage
|
||||||
|
}
|
||||||
|
|
||||||
func (i mainItem) Title() string { return i.Name }
|
func (i mainItem) Title() string { return i.Name }
|
||||||
func (i mainItem) Description() string { return i.Desc }
|
func (i mainItem) Description() string { return i.Desc }
|
||||||
func (i mainItem) FilterValue() string { return i.Title() + i.Desc }
|
func (i mainItem) FilterValue() string { return i.Title() + i.Desc }
|
||||||
|
|
||||||
type mainModel struct {
|
type mainModel struct {
|
||||||
list list.Model
|
list list.Model
|
||||||
input textinput.Model
|
input textinput.Model
|
||||||
ctx *gctx.Context
|
ctx *gctx.Context
|
||||||
client *spotify.Client
|
client *spotify.Client
|
||||||
mode Mode
|
mode Mode
|
||||||
playlist spotify.SimplePlaylist
|
playlist spotify.SimplePlaylist
|
||||||
artist spotify.SimpleArtist
|
artist spotify.SimpleArtist
|
||||||
album spotify.SimpleAlbum
|
album spotify.SimpleAlbum
|
||||||
search string
|
searchResults *SearchResults
|
||||||
fromArtist bool
|
search string
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *mainModel) PlayRadio() {
|
||||||
|
currentlyPlaying = m.list.SelectedItem().FilterValue()
|
||||||
|
m.list.NewStatusMessage("Playing " + currentlyPlaying)
|
||||||
|
selectedItem := m.list.SelectedItem().(mainItem).SpotifyItem
|
||||||
|
switch selectedItem.(type) {
|
||||||
|
case spotify.SimplePlaylist:
|
||||||
|
go HandlePlaylistRadio(m.ctx, m.client, selectedItem.(spotify.SimplePlaylist))
|
||||||
|
return
|
||||||
|
case spotify.SavedTrackPage:
|
||||||
|
go HandleLibraryRadio(m.ctx, m.client)
|
||||||
|
return
|
||||||
|
case spotify.SimpleAlbum:
|
||||||
|
go HandleAlbumRadio(m.ctx, m.client, selectedItem.(spotify.SimpleAlbum).ID)
|
||||||
|
return
|
||||||
|
case spotify.FullAlbum:
|
||||||
|
go HandleAlbumRadio(m.ctx, m.client, selectedItem.(spotify.FullAlbum).ID)
|
||||||
|
return
|
||||||
|
case spotify.SimpleArtist:
|
||||||
|
go HandleArtistRadio(m.ctx, m.client, selectedItem.(spotify.SimpleArtist).ID)
|
||||||
|
return
|
||||||
|
case spotify.FullArtist:
|
||||||
|
go HandleArtistRadio(m.ctx, m.client, selectedItem.(spotify.FullArtist).ID)
|
||||||
|
return
|
||||||
|
default:
|
||||||
|
go HandleRadio(m.ctx, m.client, m.list.SelectedItem().(mainItem).ID)
|
||||||
|
return
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *mainModel) GoBack() (tea.Cmd, error) {
|
func (m *mainModel) GoBack() (tea.Cmd, error) {
|
||||||
@ -97,7 +134,6 @@ func (m *mainModel) GoBack() (tea.Cmd, error) {
|
|||||||
|
|
||||||
case Artist:
|
case Artist:
|
||||||
m.mode = Artists
|
m.mode = Artists
|
||||||
m.fromArtist = false
|
|
||||||
m.list.NewStatusMessage("Setting view to artists")
|
m.list.NewStatusMessage("Setting view to artists")
|
||||||
new_items, err := ArtistsView(m.ctx, m.client)
|
new_items, err := ArtistsView(m.ctx, m.client)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -108,7 +144,6 @@ func (m *mainModel) GoBack() (tea.Cmd, error) {
|
|||||||
|
|
||||||
case ArtistAlbum:
|
case ArtistAlbum:
|
||||||
m.mode = Artist
|
m.mode = Artist
|
||||||
m.fromArtist = true
|
|
||||||
m.list.NewStatusMessage("Opening " + m.artist.Name)
|
m.list.NewStatusMessage("Opening " + m.artist.Name)
|
||||||
new_items, err := ArtistAlbumsView(m.ctx, m.artist.ID, m.client)
|
new_items, err := ArtistAlbumsView(m.ctx, m.artist.ID, m.client)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -120,20 +155,45 @@ func (m *mainModel) GoBack() (tea.Cmd, error) {
|
|||||||
case SearchArtists, SearchTracks, SearchAlbums, SearchPlaylists:
|
case SearchArtists, SearchTracks, SearchAlbums, SearchPlaylists:
|
||||||
m.mode = Search
|
m.mode = Search
|
||||||
m.list.NewStatusMessage("Setting view to search for " + m.input.Value())
|
m.list.NewStatusMessage("Setting view to search for " + m.input.Value())
|
||||||
items, err := SearchView(m.ctx, m.client, m.search)
|
items, result, err := SearchView(m.ctx, m.client, m.search)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
m.searchResults = result
|
||||||
m.list.SetItems(items)
|
m.list.SetItems(items)
|
||||||
case SearchArtist:
|
case SearchArtist:
|
||||||
m.mode = SearchArtists
|
m.mode = SearchArtists
|
||||||
|
m.list.NewStatusMessage("Setting view to artists")
|
||||||
|
new_items, err := SearchArtistsView(m.ctx, m.client, m.searchResults.Artists)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
m.list.SetItems(new_items)
|
||||||
|
case SearchArtistAlbum:
|
||||||
|
m.mode = SearchArtist
|
||||||
|
m.list.NewStatusMessage("Opening " + m.artist.Name)
|
||||||
|
new_items, err := ArtistAlbumsView(m.ctx, m.artist.ID, m.client)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
m.list.SetItems(new_items)
|
||||||
|
m.list.ResetSelected()
|
||||||
case SearchAlbum:
|
case SearchAlbum:
|
||||||
m.mode = SearchAlbums
|
m.mode = SearchAlbums
|
||||||
|
m.list.NewStatusMessage("Setting view to albums")
|
||||||
|
new_items, err := SearchAlbumsView(m.ctx, m.client, m.searchResults.Albums)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
m.list.SetItems(new_items)
|
||||||
case SearchPlaylist:
|
case SearchPlaylist:
|
||||||
m.mode = SearchPlaylists
|
m.mode = SearchPlaylists
|
||||||
|
m.list.NewStatusMessage("Setting view to playlists")
|
||||||
|
new_items, err := SearchPlaylistsView(m.ctx, m.client, m.searchResults.Playlists)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
m.list.SetItems(new_items)
|
||||||
default:
|
default:
|
||||||
m.list.ResetSelected()
|
m.list.ResetSelected()
|
||||||
page = 0
|
page = 0
|
||||||
@ -141,6 +201,192 @@ func (m *mainModel) GoBack() (tea.Cmd, error) {
|
|||||||
return nil, nil
|
return nil, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (m *mainModel) SelectItem() error {
|
||||||
|
switch m.mode {
|
||||||
|
case Search:
|
||||||
|
switch m.list.SelectedItem().(mainItem).SpotifyItem.(type) {
|
||||||
|
case *spotify.FullArtistPage:
|
||||||
|
m.mode = SearchArtists
|
||||||
|
m.list.NewStatusMessage("Setting view to artists")
|
||||||
|
new_items, err := SearchArtistsView(m.ctx, m.client, m.list.SelectedItem().(mainItem).SpotifyItem.(*spotify.FullArtistPage))
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
m.list.SetItems(new_items)
|
||||||
|
m.list.ResetSelected()
|
||||||
|
case *spotify.SimpleAlbumPage:
|
||||||
|
m.mode = SearchAlbums
|
||||||
|
m.list.NewStatusMessage("Setting view to albums")
|
||||||
|
new_items, err := SearchAlbumsView(m.ctx, m.client, m.list.SelectedItem().(mainItem).SpotifyItem.(*spotify.SimpleAlbumPage))
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
m.list.SetItems(new_items)
|
||||||
|
m.list.ResetSelected()
|
||||||
|
case *spotify.SimplePlaylistPage:
|
||||||
|
m.mode = SearchPlaylists
|
||||||
|
playlists := m.list.SelectedItem().(mainItem).SpotifyItem.(*spotify.SimplePlaylistPage)
|
||||||
|
m.list.NewStatusMessage("Setting view to playlist")
|
||||||
|
new_items, err := SearchPlaylistsView(m.ctx, m.client, playlists)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
m.list.SetItems(new_items)
|
||||||
|
m.list.ResetSelected()
|
||||||
|
case *spotify.FullTrackPage:
|
||||||
|
m.mode = SearchTracks
|
||||||
|
m.list.NewStatusMessage("Setting view to tracks")
|
||||||
|
new_items, err := SearchTracksView(m.ctx, m.client, m.list.SelectedItem().(mainItem).SpotifyItem.(*spotify.FullTrackPage))
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
m.list.SetItems(new_items)
|
||||||
|
m.list.ResetSelected()
|
||||||
|
m.list.NewStatusMessage("Setting view to tracks")
|
||||||
|
}
|
||||||
|
case SearchArtists:
|
||||||
|
m.mode = SearchArtist
|
||||||
|
m.artist = m.list.SelectedItem().(mainItem).SpotifyItem.(spotify.SimpleArtist)
|
||||||
|
m.list.NewStatusMessage("Opening " + m.artist.Name)
|
||||||
|
new_items, err := ArtistAlbumsView(m.ctx, m.artist.ID, m.client)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
m.list.SetItems(new_items)
|
||||||
|
m.list.ResetSelected()
|
||||||
|
case SearchArtist:
|
||||||
|
m.mode = SearchArtistAlbum
|
||||||
|
m.album = m.list.SelectedItem().(mainItem).SpotifyItem.(spotify.SimpleAlbum)
|
||||||
|
m.list.NewStatusMessage("Opening " + m.album.Name)
|
||||||
|
new_items, err := AlbumTracksView(m.ctx, m.album.ID, m.client)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
m.list.SetItems(new_items)
|
||||||
|
m.list.ResetSelected()
|
||||||
|
case SearchAlbums:
|
||||||
|
m.mode = SearchAlbum
|
||||||
|
m.album = m.list.SelectedItem().(mainItem).SpotifyItem.(spotify.SimpleAlbum)
|
||||||
|
m.list.NewStatusMessage("Opening " + m.album.Name)
|
||||||
|
new_items, err := AlbumTracksView(m.ctx, m.album.ID, m.client)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
m.list.SetItems(new_items)
|
||||||
|
m.list.ResetSelected()
|
||||||
|
case SearchPlaylists:
|
||||||
|
m.mode = SearchPlaylist
|
||||||
|
playlist := m.list.SelectedItem().(mainItem).SpotifyItem.(spotify.SimplePlaylist)
|
||||||
|
m.playlist = playlist
|
||||||
|
m.list.NewStatusMessage("Setting view to playlist " + playlist.Name)
|
||||||
|
new_items, err := PlaylistView(m.ctx, m.client, playlist)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
m.list.SetItems(new_items)
|
||||||
|
m.list.ResetSelected()
|
||||||
|
case Main:
|
||||||
|
switch m.list.SelectedItem().(mainItem).SpotifyItem.(type) {
|
||||||
|
case *spotify.FullArtistCursorPage:
|
||||||
|
m.mode = Artists
|
||||||
|
m.list.NewStatusMessage("Setting view to artists")
|
||||||
|
new_items, err := ArtistsView(m.ctx, m.client)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
m.list.SetItems(new_items)
|
||||||
|
m.list.ResetSelected()
|
||||||
|
case *spotify.SavedAlbumPage:
|
||||||
|
m.mode = Albums
|
||||||
|
m.list.NewStatusMessage("Setting view to albums")
|
||||||
|
new_items, err := AlbumsView(m.ctx, m.client)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
m.list.SetItems(new_items)
|
||||||
|
m.list.ResetSelected()
|
||||||
|
case spotify.SimplePlaylist:
|
||||||
|
m.mode = Playlist
|
||||||
|
playlist := m.list.SelectedItem().(mainItem).SpotifyItem.(spotify.SimplePlaylist)
|
||||||
|
m.playlist = playlist
|
||||||
|
m.list.NewStatusMessage("Setting view to playlist " + playlist.Name)
|
||||||
|
new_items, err := PlaylistView(m.ctx, m.client, playlist)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
m.list.SetItems(new_items)
|
||||||
|
m.list.ResetSelected()
|
||||||
|
case *spotify.SavedTrackPage:
|
||||||
|
m.mode = Tracks
|
||||||
|
m.list.NewStatusMessage("Setting view to saved tracks")
|
||||||
|
new_items, err := SavedTracksView(m.ctx, m.client)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
m.list.SetItems(new_items)
|
||||||
|
m.list.ResetSelected()
|
||||||
|
m.list.NewStatusMessage("Setting view to tracks")
|
||||||
|
}
|
||||||
|
case Albums:
|
||||||
|
m.mode = Album
|
||||||
|
m.album = m.list.SelectedItem().(mainItem).SpotifyItem.(spotify.SimpleAlbum)
|
||||||
|
m.list.NewStatusMessage("Opening " + m.album.Name)
|
||||||
|
new_items, err := AlbumTracksView(m.ctx, m.album.ID, m.client)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
m.list.SetItems(new_items)
|
||||||
|
m.list.ResetSelected()
|
||||||
|
case Artist:
|
||||||
|
m.mode = ArtistAlbum
|
||||||
|
m.album = m.list.SelectedItem().(mainItem).SpotifyItem.(spotify.SimpleAlbum)
|
||||||
|
m.list.NewStatusMessage("Opening " + m.album.Name)
|
||||||
|
new_items, err := AlbumTracksView(m.ctx, m.album.ID, m.client)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
m.list.SetItems(new_items)
|
||||||
|
m.list.ResetSelected()
|
||||||
|
case Artists:
|
||||||
|
m.mode = Artist
|
||||||
|
m.artist = m.list.SelectedItem().(mainItem).SpotifyItem.(spotify.SimpleArtist)
|
||||||
|
m.list.NewStatusMessage("Opening " + m.artist.Name)
|
||||||
|
new_items, err := ArtistAlbumsView(m.ctx, m.artist.ID, m.client)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
m.list.SetItems(new_items)
|
||||||
|
m.list.ResetSelected()
|
||||||
|
case Album, ArtistAlbum, SearchArtistAlbum, SearchAlbum:
|
||||||
|
currentlyPlaying = m.list.SelectedItem().FilterValue()
|
||||||
|
m.list.NewStatusMessage("Playing " + currentlyPlaying)
|
||||||
|
go HandlePlayWithContext(m.ctx, m.client, &m.album.URI, m.list.Cursor()+(m.list.Paginator.Page*m.list.Paginator.TotalPages))
|
||||||
|
case Playlist, SearchPlaylist:
|
||||||
|
currentlyPlaying = m.list.SelectedItem().FilterValue()
|
||||||
|
m.list.NewStatusMessage("Playing " + currentlyPlaying)
|
||||||
|
go HandlePlayWithContext(m.ctx, m.client, &m.playlist.URI, m.list.Cursor()+(m.list.Paginator.Page*m.list.Paginator.PerPage))
|
||||||
|
case Tracks:
|
||||||
|
currentlyPlaying = m.list.SelectedItem().FilterValue()
|
||||||
|
m.list.NewStatusMessage("Playing " + currentlyPlaying)
|
||||||
|
go HandlePlayLikedSong(m.ctx, m.client, m.list.Cursor()+(m.list.Paginator.Page*m.list.Paginator.PerPage))
|
||||||
|
case SearchTracks:
|
||||||
|
currentlyPlaying = m.list.SelectedItem().FilterValue()
|
||||||
|
m.list.NewStatusMessage("Playing " + currentlyPlaying)
|
||||||
|
go HandlePlayTrack(m.ctx, m.client, m.list.SelectedItem().(mainItem).SpotifyItem.(spotify.FullTrack).ID)
|
||||||
|
case Devices:
|
||||||
|
go HandleSetDevice(m.ctx, m.client, m.list.SelectedItem().(mainItem).SpotifyItem.(spotify.PlayerDevice))
|
||||||
|
m.list.NewStatusMessage("Setting device to " + m.list.SelectedItem().FilterValue())
|
||||||
|
m.mode = "main"
|
||||||
|
m.list.NewStatusMessage("Setting view to main")
|
||||||
|
new_items, err := MainView(m.ctx, m.client)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Println(err.Error())
|
||||||
|
}
|
||||||
|
m.list.SetItems(new_items)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
func (m mainModel) Init() tea.Cmd {
|
func (m mainModel) Init() tea.Cmd {
|
||||||
main_updates = make(chan *mainModel)
|
main_updates = make(chan *mainModel)
|
||||||
return nil
|
return nil
|
||||||
@ -175,11 +421,12 @@ func (m mainModel) View() string {
|
|||||||
func (m *mainModel) Typing(msg tea.KeyMsg) (bool, tea.Cmd) {
|
func (m *mainModel) Typing(msg tea.KeyMsg) (bool, tea.Cmd) {
|
||||||
if msg.String() == "enter" {
|
if msg.String() == "enter" {
|
||||||
m.list.NewStatusMessage("Setting view to search for " + m.input.Value())
|
m.list.NewStatusMessage("Setting view to search for " + m.input.Value())
|
||||||
items, err := SearchView(m.ctx, m.client, m.input.Value())
|
items, result, err := SearchView(m.ctx, m.client, m.input.Value())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Println(err.Error())
|
fmt.Println(err.Error())
|
||||||
return false, tea.Quit
|
return false, tea.Quit
|
||||||
}
|
}
|
||||||
|
m.searchResults = result
|
||||||
m.search = m.input.Value()
|
m.search = m.input.Value()
|
||||||
m.list.SetItems(items)
|
m.list.SetItems(items)
|
||||||
m.list.ResetSelected()
|
m.list.ResetSelected()
|
||||||
@ -197,23 +444,29 @@ func (m *mainModel) Typing(msg tea.KeyMsg) (bool, tea.Cmd) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (m mainModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
|
func (m mainModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
|
||||||
|
// Update Now Playing
|
||||||
m.list.NewStatusMessage(currentlyPlaying)
|
m.list.NewStatusMessage(currentlyPlaying)
|
||||||
|
// Update list items from LoadMore
|
||||||
select {
|
select {
|
||||||
case update := <-main_updates:
|
case update := <-main_updates:
|
||||||
m.list.SetItems(update.list.Items())
|
m.list.SetItems(update.list.Items())
|
||||||
default:
|
default:
|
||||||
}
|
}
|
||||||
|
// Call for more items if needed
|
||||||
if m.list.Paginator.Page == m.list.Paginator.TotalPages-2 && m.list.Cursor() == 0 {
|
if m.list.Paginator.Page == m.list.Paginator.TotalPages-2 && m.list.Cursor() == 0 {
|
||||||
// if last request was still full request more
|
// if last request was still full request more
|
||||||
if len(m.list.Items())%50 == 0 {
|
if len(m.list.Items())%50 == 0 {
|
||||||
go m.LoadMoreItems()
|
go m.LoadMoreItems()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// Handle user input
|
||||||
switch msg := msg.(type) {
|
switch msg := msg.(type) {
|
||||||
case tea.KeyMsg:
|
case tea.KeyMsg:
|
||||||
|
// quit
|
||||||
if msg.String() == "ctrl+c" {
|
if msg.String() == "ctrl+c" {
|
||||||
return m, tea.Quit
|
return m, tea.Quit
|
||||||
}
|
}
|
||||||
|
// search input
|
||||||
if m.input.Focused() {
|
if m.input.Focused() {
|
||||||
search, cmd := m.Typing(msg)
|
search, cmd := m.Typing(msg)
|
||||||
if search {
|
if search {
|
||||||
@ -221,22 +474,23 @@ func (m mainModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
|
|||||||
}
|
}
|
||||||
return m, cmd
|
return m, cmd
|
||||||
}
|
}
|
||||||
if msg.String() == "s" {
|
// start search
|
||||||
|
if msg.String() == "s" || msg.String() == "/" {
|
||||||
m.input.Focus()
|
m.input.Focus()
|
||||||
}
|
}
|
||||||
|
// enter device selection
|
||||||
if msg.String() == "d" {
|
if msg.String() == "d" {
|
||||||
if !m.input.Focused() {
|
m.mode = Devices
|
||||||
m.mode = Devices
|
new_items, err := DeviceView(m.ctx, m.client)
|
||||||
new_items, err := DeviceView(m.ctx, m.client)
|
if err != nil {
|
||||||
if err != nil {
|
fmt.Println(err.Error())
|
||||||
fmt.Println(err.Error())
|
return m, tea.Quit
|
||||||
return m, tea.Quit
|
|
||||||
}
|
|
||||||
m.list.SetItems(new_items)
|
|
||||||
m.list.ResetSelected()
|
|
||||||
m.list.NewStatusMessage("Setting view to devices")
|
|
||||||
}
|
}
|
||||||
|
m.list.SetItems(new_items)
|
||||||
|
m.list.ResetSelected()
|
||||||
|
m.list.NewStatusMessage("Setting view to devices")
|
||||||
}
|
}
|
||||||
|
// go back
|
||||||
if msg.String() == "backspace" || msg.String() == "esc" || msg.String() == "q" {
|
if msg.String() == "backspace" || msg.String() == "esc" || msg.String() == "q" {
|
||||||
msg, err := m.GoBack()
|
msg, err := m.GoBack()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -245,212 +499,19 @@ func (m mainModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
|
|||||||
return m, msg
|
return m, msg
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// select item
|
||||||
if msg.String() == "enter" || msg.String() == "spacebar" {
|
if msg.String() == "enter" || msg.String() == "spacebar" {
|
||||||
switch m.mode {
|
err := m.SelectItem()
|
||||||
case SearchArtists:
|
if err != nil {
|
||||||
m.mode = SearchArtist
|
return m, tea.Quit
|
||||||
m.fromArtist = true
|
|
||||||
m.artist = m.list.SelectedItem().(mainItem).SpotifyItem.(spotify.SimpleArtist)
|
|
||||||
m.list.NewStatusMessage("Opening " + m.artist.Name)
|
|
||||||
new_items, err := ArtistAlbumsView(m.ctx, m.artist.ID, m.client)
|
|
||||||
if err != nil {
|
|
||||||
fmt.Println(err.Error())
|
|
||||||
return m, tea.Quit
|
|
||||||
}
|
|
||||||
m.list.SetItems(new_items)
|
|
||||||
m.list.ResetSelected()
|
|
||||||
case SearchAlbums:
|
|
||||||
m.mode = SearchAlbum
|
|
||||||
m.album = m.list.SelectedItem().(mainItem).SpotifyItem.(spotify.SimpleAlbum)
|
|
||||||
m.list.NewStatusMessage("Opening " + m.album.Name)
|
|
||||||
new_items, err := AlbumTracksView(m.ctx, m.album.ID, m.client)
|
|
||||||
if err != nil {
|
|
||||||
fmt.Println(err.Error())
|
|
||||||
return m, tea.Quit
|
|
||||||
}
|
|
||||||
m.list.SetItems(new_items)
|
|
||||||
m.list.ResetSelected()
|
|
||||||
case SearchPlaylists:
|
|
||||||
m.mode = SearchPlaylist
|
|
||||||
playlist := m.list.SelectedItem().(mainItem).SpotifyItem.(spotify.SimplePlaylist)
|
|
||||||
m.playlist = playlist
|
|
||||||
m.list.NewStatusMessage("Setting view to playlist " + playlist.Name)
|
|
||||||
new_items, err := PlaylistView(m.ctx, m.client, playlist)
|
|
||||||
if err != nil {
|
|
||||||
fmt.Println(err.Error())
|
|
||||||
return m, tea.Quit
|
|
||||||
}
|
|
||||||
m.list.SetItems(new_items)
|
|
||||||
m.list.ResetSelected()
|
|
||||||
case Search:
|
|
||||||
switch m.list.SelectedItem().(mainItem).SpotifyItem.(type) {
|
|
||||||
case *spotify.FullArtistPage:
|
|
||||||
m.mode = SearchArtists
|
|
||||||
m.list.NewStatusMessage("Setting view to artists")
|
|
||||||
new_items, err := SearchArtistsView(m.ctx, m.client, m.list.SelectedItem().(mainItem).SpotifyItem.(*spotify.FullArtistPage))
|
|
||||||
if err != nil {
|
|
||||||
fmt.Println(err.Error())
|
|
||||||
return m, tea.Quit
|
|
||||||
}
|
|
||||||
m.list.SetItems(new_items)
|
|
||||||
m.list.ResetSelected()
|
|
||||||
case *spotify.SimpleAlbumPage:
|
|
||||||
m.mode = SearchAlbums
|
|
||||||
m.list.NewStatusMessage("Setting view to albums")
|
|
||||||
new_items, err := SearchAlbumsView(m.ctx, m.client, m.list.SelectedItem().(mainItem).SpotifyItem.(*spotify.SimpleAlbumPage))
|
|
||||||
if err != nil {
|
|
||||||
fmt.Println(err.Error())
|
|
||||||
return m, tea.Quit
|
|
||||||
}
|
|
||||||
m.list.SetItems(new_items)
|
|
||||||
m.list.ResetSelected()
|
|
||||||
case *spotify.SimplePlaylistPage:
|
|
||||||
m.mode = SearchPlaylists
|
|
||||||
playlists := m.list.SelectedItem().(mainItem).SpotifyItem.(*spotify.SimplePlaylistPage)
|
|
||||||
m.list.NewStatusMessage("Setting view to playlist")
|
|
||||||
new_items, err := SearchPlaylistsView(m.ctx, m.client, playlists)
|
|
||||||
if err != nil {
|
|
||||||
fmt.Println(err.Error())
|
|
||||||
return m, tea.Quit
|
|
||||||
}
|
|
||||||
m.list.SetItems(new_items)
|
|
||||||
m.list.ResetSelected()
|
|
||||||
case *spotify.FullTrackPage:
|
|
||||||
m.mode = SearchTracks
|
|
||||||
m.list.NewStatusMessage("Setting view to tracks")
|
|
||||||
new_items, err := SearchTracksView(m.ctx, m.client, m.list.SelectedItem().(mainItem).SpotifyItem.(*spotify.FullTrackPage))
|
|
||||||
if err != nil {
|
|
||||||
fmt.Println(err.Error())
|
|
||||||
return m, tea.Quit
|
|
||||||
}
|
|
||||||
m.list.SetItems(new_items)
|
|
||||||
m.list.ResetSelected()
|
|
||||||
m.list.NewStatusMessage("Setting view to tracks")
|
|
||||||
}
|
|
||||||
case "main":
|
|
||||||
switch m.list.SelectedItem().(mainItem).SpotifyItem.(type) {
|
|
||||||
case *spotify.FullArtistCursorPage:
|
|
||||||
m.mode = Artists
|
|
||||||
m.list.NewStatusMessage("Setting view to artists")
|
|
||||||
new_items, err := ArtistsView(m.ctx, m.client)
|
|
||||||
if err != nil {
|
|
||||||
fmt.Println(err.Error())
|
|
||||||
return m, tea.Quit
|
|
||||||
}
|
|
||||||
m.list.SetItems(new_items)
|
|
||||||
m.list.ResetSelected()
|
|
||||||
case *spotify.SavedAlbumPage:
|
|
||||||
m.mode = Albums
|
|
||||||
m.list.NewStatusMessage("Setting view to albums")
|
|
||||||
new_items, err := AlbumsView(m.ctx, m.client)
|
|
||||||
if err != nil {
|
|
||||||
fmt.Println(err.Error())
|
|
||||||
return m, tea.Quit
|
|
||||||
}
|
|
||||||
m.list.SetItems(new_items)
|
|
||||||
m.list.ResetSelected()
|
|
||||||
case spotify.SimplePlaylist:
|
|
||||||
m.mode = Playlist
|
|
||||||
playlist := m.list.SelectedItem().(mainItem).SpotifyItem.(spotify.SimplePlaylist)
|
|
||||||
m.playlist = playlist
|
|
||||||
m.list.NewStatusMessage("Setting view to playlist " + playlist.Name)
|
|
||||||
new_items, err := PlaylistView(m.ctx, m.client, playlist)
|
|
||||||
if err != nil {
|
|
||||||
fmt.Println(err.Error())
|
|
||||||
return m, tea.Quit
|
|
||||||
}
|
|
||||||
m.list.SetItems(new_items)
|
|
||||||
m.list.ResetSelected()
|
|
||||||
case *spotify.SavedTrackPage:
|
|
||||||
m.mode = Tracks
|
|
||||||
m.list.NewStatusMessage("Setting view to saved tracks")
|
|
||||||
new_items, err := SavedTracksView(m.ctx, m.client)
|
|
||||||
if err != nil {
|
|
||||||
fmt.Println(err.Error())
|
|
||||||
return m, tea.Quit
|
|
||||||
}
|
|
||||||
m.list.SetItems(new_items)
|
|
||||||
m.list.ResetSelected()
|
|
||||||
m.list.NewStatusMessage("Setting view to tracks")
|
|
||||||
}
|
|
||||||
case Albums:
|
|
||||||
m.mode = Album
|
|
||||||
m.album = m.list.SelectedItem().(mainItem).SpotifyItem.(spotify.SimpleAlbum)
|
|
||||||
m.list.NewStatusMessage("Opening " + m.album.Name)
|
|
||||||
new_items, err := AlbumTracksView(m.ctx, m.album.ID, m.client)
|
|
||||||
if err != nil {
|
|
||||||
fmt.Println(err.Error())
|
|
||||||
return m, tea.Quit
|
|
||||||
}
|
|
||||||
m.list.SetItems(new_items)
|
|
||||||
m.list.ResetSelected()
|
|
||||||
case Artist:
|
|
||||||
m.mode = ArtistAlbum
|
|
||||||
m.album = m.list.SelectedItem().(mainItem).SpotifyItem.(spotify.SimpleAlbum)
|
|
||||||
m.list.NewStatusMessage("Opening " + m.album.Name)
|
|
||||||
new_items, err := AlbumTracksView(m.ctx, m.album.ID, m.client)
|
|
||||||
if err != nil {
|
|
||||||
fmt.Println(err.Error())
|
|
||||||
return m, tea.Quit
|
|
||||||
}
|
|
||||||
m.list.SetItems(new_items)
|
|
||||||
m.list.ResetSelected()
|
|
||||||
case Artists:
|
|
||||||
m.mode = Artist
|
|
||||||
m.fromArtist = true
|
|
||||||
m.artist = m.list.SelectedItem().(mainItem).SpotifyItem.(spotify.SimpleArtist)
|
|
||||||
m.list.NewStatusMessage("Opening " + m.artist.Name)
|
|
||||||
new_items, err := ArtistAlbumsView(m.ctx, m.artist.ID, m.client)
|
|
||||||
if err != nil {
|
|
||||||
fmt.Println(err.Error())
|
|
||||||
return m, tea.Quit
|
|
||||||
}
|
|
||||||
m.list.SetItems(new_items)
|
|
||||||
m.list.ResetSelected()
|
|
||||||
case Album, ArtistAlbum:
|
|
||||||
currentlyPlaying = m.list.SelectedItem().FilterValue()
|
|
||||||
m.list.NewStatusMessage("Playing " + currentlyPlaying)
|
|
||||||
go HandlePlay(m.ctx, m.client, &m.album.URI, m.list.Cursor()+(m.list.Paginator.Page*m.list.Paginator.TotalPages))
|
|
||||||
case Playlist, SearchPlaylist:
|
|
||||||
currentlyPlaying = m.list.SelectedItem().FilterValue()
|
|
||||||
m.list.NewStatusMessage("Playing " + currentlyPlaying)
|
|
||||||
go HandlePlay(m.ctx, m.client, &m.playlist.URI, m.list.Cursor()+(m.list.Paginator.Page*m.list.Paginator.PerPage))
|
|
||||||
case Tracks, SearchTracks:
|
|
||||||
currentlyPlaying = m.list.SelectedItem().FilterValue()
|
|
||||||
m.list.NewStatusMessage("Playing " + currentlyPlaying)
|
|
||||||
go HandlePlayLikedSong(m.ctx, m.client, m.list.Cursor()+(m.list.Paginator.Page*m.list.Paginator.PerPage))
|
|
||||||
case Devices:
|
|
||||||
go HandleSetDevice(m.ctx, m.client, m.list.SelectedItem().(mainItem).SpotifyItem.(spotify.PlayerDevice))
|
|
||||||
m.list.NewStatusMessage("Setting device to " + m.list.SelectedItem().FilterValue())
|
|
||||||
m.mode = "main"
|
|
||||||
m.list.NewStatusMessage("Setting view to main")
|
|
||||||
new_items, err := MainView(m.ctx, m.client)
|
|
||||||
if err != nil {
|
|
||||||
fmt.Println(err.Error())
|
|
||||||
}
|
|
||||||
m.list.SetItems(new_items)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// start radio
|
||||||
if msg.String() == "ctrl+r" {
|
if msg.String() == "ctrl+r" {
|
||||||
switch m.list.SelectedItem().(mainItem).SpotifyItem.(type) {
|
m.PlayRadio()
|
||||||
case spotify.SimplePlaylist:
|
|
||||||
currentlyPlaying = m.list.SelectedItem().FilterValue()
|
|
||||||
m.list.NewStatusMessage("Starting radio for " + currentlyPlaying)
|
|
||||||
go HandlePlaylistRadio(m.ctx, m.client, m.list.SelectedItem().(mainItem).SpotifyItem.(spotify.SimplePlaylist))
|
|
||||||
case *spotify.SavedTrackPage:
|
|
||||||
currentlyPlaying = m.list.SelectedItem().FilterValue()
|
|
||||||
m.list.NewStatusMessage("Starting radio for " + currentlyPlaying)
|
|
||||||
go HandleLibraryRadio(m.ctx, m.client)
|
|
||||||
case *spotify.SimpleAlbum, *spotify.FullAlbum:
|
|
||||||
currentlyPlaying = m.list.SelectedItem().FilterValue()
|
|
||||||
m.list.NewStatusMessage("Stating radio for" + currentlyPlaying)
|
|
||||||
go HandleAlbumRadio(m.ctx, m.client, m.list.SelectedItem().(mainItem).SpotifyItem.(spotify.SimpleAlbum).ID)
|
|
||||||
default:
|
|
||||||
currentlyPlaying = m.list.SelectedItem().FilterValue()
|
|
||||||
m.list.NewStatusMessage("Playing " + currentlyPlaying)
|
|
||||||
go HandleRadio(m.ctx, m.client, m.list.SelectedItem().(mainItem).ID)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// handle mouse
|
||||||
case tea.MouseMsg:
|
case tea.MouseMsg:
|
||||||
if msg.Type == 5 {
|
if msg.Type == 5 {
|
||||||
m.list.CursorUp()
|
m.list.CursorUp()
|
||||||
@ -458,10 +519,14 @@ func (m mainModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
|
|||||||
if msg.Type == 6 {
|
if msg.Type == 6 {
|
||||||
m.list.CursorDown()
|
m.list.CursorDown()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// window size -1 to handle search bar
|
||||||
case tea.WindowSizeMsg:
|
case tea.WindowSizeMsg:
|
||||||
h, v := DocStyle.GetFrameSize()
|
h, v := DocStyle.GetFrameSize()
|
||||||
m.list.SetSize(msg.Width-h, msg.Height-v-1)
|
m.list.SetSize(msg.Width-h, msg.Height-v-1)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// return
|
||||||
var cmd tea.Cmd
|
var cmd tea.Cmd
|
||||||
m.list, cmd = m.list.Update(msg)
|
m.list, cmd = m.list.Update(msg)
|
||||||
return m, cmd
|
return m, cmd
|
||||||
|
@ -76,12 +76,12 @@ func SearchArtistsView(ctx *gctx.Context, client *spotify.Client, artists *spoti
|
|||||||
return items, nil
|
return items, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func SearchView(ctx *gctx.Context, client *spotify.Client, search string) ([]list.Item, error) {
|
func SearchView(ctx *gctx.Context, client *spotify.Client, search string) ([]list.Item, *SearchResults, error) {
|
||||||
items := []list.Item{}
|
items := []list.Item{}
|
||||||
|
|
||||||
result, err := commands.Search(ctx, client, search, 1)
|
result, err := commands.Search(ctx, client, search, 1)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, nil, err
|
||||||
}
|
}
|
||||||
items = append(items, mainItem{
|
items = append(items, mainItem{
|
||||||
Name: "Tracks",
|
Name: "Tracks",
|
||||||
@ -103,7 +103,13 @@ func SearchView(ctx *gctx.Context, client *spotify.Client, search string) ([]lis
|
|||||||
Desc: "Search results",
|
Desc: "Search results",
|
||||||
SpotifyItem: result.Playlists,
|
SpotifyItem: result.Playlists,
|
||||||
})
|
})
|
||||||
return items, nil
|
results := &SearchResults{
|
||||||
|
Tracks: result.Tracks,
|
||||||
|
Playlists: result.Playlists,
|
||||||
|
Albums: result.Albums,
|
||||||
|
Artists: result.Artists,
|
||||||
|
}
|
||||||
|
return items, results, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func AlbumsView(ctx *gctx.Context, client *spotify.Client) ([]list.Item, error) {
|
func AlbumsView(ctx *gctx.Context, client *spotify.Client) ([]list.Item, error) {
|
||||||
@ -173,11 +179,12 @@ func AlbumTracksView(ctx *gctx.Context, album spotify.ID, client *spotify.Client
|
|||||||
}
|
}
|
||||||
for _, track := range tracks.Tracks {
|
for _, track := range tracks.Tracks {
|
||||||
items = append(items, mainItem{
|
items = append(items, mainItem{
|
||||||
Name: track.Name,
|
Name: track.Name,
|
||||||
Artist: track.Artists[0],
|
Artist: track.Artists[0],
|
||||||
Duration: track.TimeDuration().Round(time.Second).String(),
|
Duration: track.TimeDuration().Round(time.Second).String(),
|
||||||
ID: track.ID,
|
ID: track.ID,
|
||||||
Desc: track.Artists[0].Name + " - " + track.TimeDuration().Round(time.Second).String(),
|
SpotifyItem: track,
|
||||||
|
Desc: track.Artists[0].Name + " - " + track.TimeDuration().Round(time.Second).String(),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
return items, err
|
return items, err
|
||||||
@ -187,11 +194,12 @@ func SearchTracksView(ctx *gctx.Context, client *spotify.Client, tracks *spotify
|
|||||||
items := []list.Item{}
|
items := []list.Item{}
|
||||||
for _, track := range tracks.Tracks {
|
for _, track := range tracks.Tracks {
|
||||||
items = append(items, mainItem{
|
items = append(items, mainItem{
|
||||||
Name: track.Name,
|
Name: track.Name,
|
||||||
Artist: track.Artists[0],
|
Artist: track.Artists[0],
|
||||||
Duration: track.TimeDuration().Round(time.Second).String(),
|
Duration: track.TimeDuration().Round(time.Second).String(),
|
||||||
ID: track.ID,
|
ID: track.ID,
|
||||||
Desc: track.Artists[0].Name + " - " + track.TimeDuration().Round(time.Second).String(),
|
SpotifyItem: track,
|
||||||
|
Desc: track.Artists[0].Name + " - " + track.TimeDuration().Round(time.Second).String(),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
return items, nil
|
return items, nil
|
||||||
@ -205,11 +213,12 @@ func SavedTracksView(ctx *gctx.Context, client *spotify.Client) ([]list.Item, er
|
|||||||
}
|
}
|
||||||
for _, track := range tracks.Tracks {
|
for _, track := range tracks.Tracks {
|
||||||
items = append(items, mainItem{
|
items = append(items, mainItem{
|
||||||
Name: track.Name,
|
Name: track.Name,
|
||||||
Artist: track.Artists[0],
|
Artist: track.Artists[0],
|
||||||
Duration: track.TimeDuration().Round(time.Second).String(),
|
Duration: track.TimeDuration().Round(time.Second).String(),
|
||||||
ID: track.ID,
|
ID: track.ID,
|
||||||
Desc: track.Artists[0].Name + " - " + track.TimeDuration().Round(time.Second).String(),
|
SpotifyItem: track,
|
||||||
|
Desc: track.Artists[0].Name + " - " + track.TimeDuration().Round(time.Second).String(),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
return items, err
|
return items, err
|
||||||
|
Loading…
Reference in New Issue
Block a user