Skip to content

Instantly share code, notes, and snippets.

@gate5th
Created September 12, 2018 19:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gate5th/945f6b1c8c6e155a61aba2ae5b4cddaa to your computer and use it in GitHub Desktop.
Save gate5th/945f6b1c8c6e155a61aba2ae5b4cddaa to your computer and use it in GitHub Desktop.
oldschoolshuffle
export async function playArtistDiscography(artistId, artistName){
//receives this.state from playlistChooser and extract what you need
try {
const albumIds = await identifyAlbumsByArtistId(artistId, false);
const shuffledAlbums = shuffleArray(albumIds);
const promiseArrayOfTracksFromAlbum = shuffledAlbums.map(async (albumObject) => {
const response = await getSimpleAlbumTracks(albumObject.albumId, albumObject.albumName, albumObject.albumUri)
return response
})
const tracksByAlbum = await Promise.all(promiseArrayOfTracksFromAlbum);
const sortedByAlbumAndTrack = flatten(tracksByAlbum);
await createPlaylist(sortedByAlbumAndTrack, `${artistName} Discography`, "false");
}
catch(err) {
console.error('Error: in playArtistDiscography in spotifyFunctions', err);
console.error(err);
console.error(err.stack);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment