Created
December 24, 2022 22:25
-
-
Save feliperohdee/709073beb3644f2fff89553c2b365696 to your computer and use it in GitHub Desktop.
promise-all-4.js
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
const putData = async (data, ms) => { | |
return new Promise(resolve => { | |
setTimeout(() => { | |
resolve(data); | |
}, ms); | |
}); | |
}; | |
const clearAll = async () => { | |
// logic to clear all data | |
}; | |
const handleSettledPromiseValue = (results = []) => { | |
return results.map(result => { | |
if (typeof result !== 'object') { | |
return result; | |
} | |
if (result.status !== 'fulfilled') { | |
throw result.reason; | |
} | |
return result.value; | |
}); | |
}; | |
try { | |
const [ | |
result1, | |
result2, | |
result3 | |
] = handleSettledPromiseValue(await Promise.allSettled([ | |
putData({ | |
email: '[email protected]' | |
}, 1000), | |
putData({ | |
apiKey: 'api-token' | |
}, 2000), | |
putData({ | |
settings: { | |
accountName: 'John Doe', | |
accountType: 'Premium' | |
} | |
}, 3000) | |
])); | |
} catch(err) { | |
// an error happened and we need to clear all data | |
await clearAll(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment