Skip to content

Instantly share code, notes, and snippets.

@jpina
Created November 25, 2015 11:01
Show Gist options
  • Save jpina/782e804bf705111683fd to your computer and use it in GitHub Desktop.
Save jpina/782e804bf705111683fd to your computer and use it in GitHub Desktop.
07 Parallelism
Promise.all(arrayOfPromises).then(function(arrayOfResults) {
//...
});
/*****************************************************************/
getJSON('story.json').then(function(story) {
addHtmlToPage(story.heading);
// Take an array of promises and wait on them all
return Promise.all(
// Map our array of chapter urls to
// an array of chapter json promises
story.chapterUrls.map(getJSON)
);
}).then(function(chapters) {
// Now we have the chapters jsons in order! Loop through…
chapters.forEach(function(chapter) {
// …and add to the page
addHtmlToPage(chapter.html);
});
addTextToPage("All done");
}).catch(function(err) {
// catch any error that happened so far
addTextToPage("Argh, broken: " + err.message);
}).then(function() {
document.querySelector('.spinner').style.display = 'none';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment