-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
4 changed files
with
73 additions
and
0 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
import { expect, test } from 'vitest'; | ||
|
||
import { recursiveResolve } from '../recursiveResolve'; | ||
|
||
test('primitive', async () => { | ||
expect(await recursiveResolve(1)).toBe(1); | ||
expect(await recursiveResolve({})).toStrictEqual({}); | ||
expect(await recursiveResolve(true)).toBeTruthy(); | ||
}); | ||
|
||
test('simple object', async () => { | ||
const object = { | ||
a: { | ||
b: { | ||
c: Promise.resolve(1), | ||
}, | ||
}, | ||
}; | ||
|
||
expect(await recursiveResolve(object)).toStrictEqual({ | ||
a: { | ||
b: { | ||
c: 1, | ||
}, | ||
}, | ||
}); | ||
}); | ||
|
||
test('with array', async () => { | ||
const object = { | ||
a: { | ||
b: { | ||
c: [Promise.resolve(1), Promise.resolve(2)], | ||
}, | ||
}, | ||
}; | ||
|
||
expect(await recursiveResolve(object)).toStrictEqual({ | ||
a: { | ||
b: { | ||
c: [1, 2], | ||
}, | ||
}, | ||
}); | ||
}); |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/** | ||
* wait recursively so that all promises are resolved | ||
* need to go through all the nested objects and check if it is a promise | ||
* if it is a promise, then await it | ||
* @param object | ||
* @returns | ||
*/ | ||
export async function recursiveResolve(object: unknown) { | ||
if (typeof object !== 'object') return object; | ||
const promises: Array<Promise<unknown>> = []; | ||
await appendPromises(object, promises); | ||
await Promise.all(promises); | ||
return object; | ||
} | ||
|
||
function appendPromises(object: any, promises: Array<Promise<unknown>>) { | ||
if (typeof object !== 'object') return object; | ||
for (const key in object) { | ||
if (object[key] instanceof Promise) { | ||
promises.push(object[key].then((value) => (object[key] = value))); | ||
} else if (typeof object[key] === 'object') { | ||
appendPromises(object[key], promises); | ||
} | ||
} | ||
return object; | ||
} |