Created
September 12, 2018 19:03
-
-
Save gate5th/945f6b1c8c6e155a61aba2ae5b4cddaa to your computer and use it in GitHub Desktop.
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