Refactor API (#4770)

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* Update description.ts

* wip
This commit is contained in:
syuilo
2019-04-23 22:35:26 +09:00
committed by GitHub
parent f31f986d66
commit 0463c6bb0f
105 changed files with 1622 additions and 808 deletions

22
src/prelude/await-all.ts Normal file
View File

@@ -0,0 +1,22 @@
type Await<T> = T extends Promise<infer U> ? U : T;
type AwaitAll<T> = {
[P in keyof T]: Await<T[P]>;
};
export async function awaitAll<T>(obj: T): Promise<AwaitAll<T>> {
const target = {} as any;
const keys = Object.keys(obj);
const rawValues = Object.values(obj);
const retValues = ((values: any[]): any[] =>
values.map(value => {
if (!value || !value.constructor || value.constructor.name !== 'Object') return value;
return awaitAll(value);
})
)(rawValues);
const values = await Promise.all(retValues);
for (let i = 0; i < values.length; i++) {
target[keys[i]] = values[i];
}
return target;
}