Cleanup resolvePromiseProperties

There were a couple issues with the original version of
`resolvePromiseProperties`:

- The wrapper promise was unnecessary, since we can just return the
  `Promise.all`. Fixing this allows us to remove a wrapping function,
  reduce indentation, remove the `resolve` and `reject` calls, and
  remove the now unnecessary `.catch` line.

- There was inadvertent mutation in the `Object.assign` call - the
  first parameter to `Object.assign` is mutated, so to call it without
  mutating existing objects the first parameter should be a literal
  `{}`. This is now fixed.
This commit is contained in:
Benaiah Mischenko 2017-04-06 16:51:01 -07:00 committed by David Calavera
parent b5e839468e
commit d58cd652d8

View File

@ -4,20 +4,17 @@ export const filterPromises = (arr, filter) =>
Promise.all(arr.map(entry => filter(entry)))
.then(bits => arr.filter(entry => bits.shift()));
export const resolvePromiseProperties = obj =>
(new Promise((resolve, reject) => {
// Get the keys which represent promises
const promiseKeys = Object.keys(obj).filter(
key => obj[key] instanceof Promise);
export const resolvePromiseProperties = (obj) => {
// Get the keys which represent promises
const promiseKeys = Object.keys(obj).filter(
key => typeof obj[key].then === "function");
const promises = promiseKeys.map(key => obj[key]);
const promises = promiseKeys.map(key => obj[key]);
// Resolve all promises
Promise.all(promises)
.then(resolvedPromises => resolve(
// Return a copy of obj with promises overwritten by their
// resolved values
Object.assign(obj, zipObject(promiseKeys, resolvedPromises))))
// Pass errors to outer promise chain
.catch(err => reject(err));
}));
// Resolve all promises
return Promise.all(promises)
.then(resolvedPromises =>
// Return a copy of obj with promises overwritten by their
// resolved values
Object.assign({}, obj, zipObject(promiseKeys, resolvedPromises)));
};