-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathAsyncAwait.js
75 lines (57 loc) · 2.13 KB
/
AsyncAwait.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
// In ES6 to consume promises syntax can still be quite confusing and difficult to manage.And, so in ES8, or ES2017, something alled Async/Await was introduced to the JavaScript language.
const getIDs = new Promise((resolve, reject) => {
setTimeout(() => {
resolve([523, 883, 432, 974]);
}, 1500);
});
const getRecipe = recID => {
return new Promise((resolve, reject) => {
setTimeout(ID => {
const recipe = {
title: 'Fresh tomato Pasta',
Publisher: 'Lakshman'
};
resolve(`${ID}: ${recipe.title}`);
}, 1500, recID);
});
};
const getRelated = Publisher => {
return new Promise((resolve, reject) => {
setTimeout(pub => {
const recipe = {
title: 'American Pizza',
Publisher: pub
};
resolve(`${pub}: ${recipe.title}`);
}, 1500, Publisher);
});
};
/*
// this then method allows us to add an event handler for the case that the promise is fulfilled. So which means that there is a result.
getIDs
.then(IDs => { // so this argument here will be the result of the successful promise.
console.log(IDs); // [ 523, 883, 432, 974 ]
return getRecipe(IDs[2]);
})
.then(recipe => {
console.log(recipe); // 432: Fresh tomato Pasta
return getRelated('Lakshman Gope');
})
.then(recipe => {
console.log(recipe); // Lakshman Gope: American Pizza
})
// if the promise rejected then catch method will catch the error.
.catch(error => {
console.log('Error: ' + error);
}); */
// it's good to remember that async function always returns a promise.
async function getRecipeAW() {
const IDs = await getIDs;
console.log(IDs); // [ 523, 883, 432, 974 ]
const recipe = await getRecipe(IDs[2]);
console.log(recipe); // 432: Fresh tomato Pasta
const related = await getRelated('Lakshman Gope');
console.log(related); // Lakshman Gope: American Pizza
return recipe;
}
getRecipeAW().then(result => console.log(`${result} is the best ever!`)); // 432: Fresh tomato Pasta is the best ever!