-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add recursiveResolve #274
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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; | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have no problem to use copilot to generate code, but please update the documentation for a human now :)