Created
February 7, 2018 00:10
-
-
Save pbojinov/cda3aad0bd91741d110c701d054fd6d8 to your computer and use it in GitHub Desktop.
Async/Await Examples - https://medium.com/@bluepnume/even-with-async-await-you-probably-still-need-promises-9b259854c161
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
async function makePizza(sauceType = 'red') { | |
let dough = await makeDough(); | |
let sauce = await makeSauce(sauceType); | |
let cheese = await grateCheese(sauce.determineCheese()); | |
dough.add(sauce); | |
dough.add(cheese); | |
return dough; | |
} | |
// |-------- dough --------> |-------- sauce --------> |-- cheese --> | |
async function makePizza(sauceType = 'red') { | |
let [ dough, sauce ] = | |
await Promise.all([ makeDough(), makeSauce(sauceType) ]); | |
let cheese = await grateCheese(sauce.determineCheese()); | |
dough.add(sauce); | |
dough.add(cheese); | |
return dough; | |
} | |
// |-------- dough --------> | |
// |-------- sauce --------> |-- cheese --> | |
function makePizza(sauceType = 'red') { | |
let doughPromise = makeDough(); | |
let saucePromise = makeSauce(sauceType); | |
let cheesePromise = saucePromise.then(sauce => { | |
return grateCheese(sauce.determineCheese()); | |
}); | |
return Promise.all([ doughPromise, saucePromise, cheesePromise ]) | |
.then(([ dough, sauce, cheese ]) => { | |
dough.add(sauce); | |
dough.add(cheese); | |
return dough; | |
}); | |
} | |
// |--------- dough ---------> | |
// |---- sauce ----> |-- cheese --> | |
async function makePizza(sauceType = 'red') { | |
let doughPromise = makeDough(); | |
let saucePromise = makeSauce(sauceType); | |
let sauce = await saucePromise; | |
let cheese = await grateCheese(sauce.determineCheese()); | |
let dough = await doughPromise; | |
dough.add(sauce); | |
dough.add(cheese); | |
return dough; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment