Created
September 12, 2018 19:03
oldschoolshuffle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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