mirror of
https://github.com/Maks1mS/nestjs-telegraf.git
synced 2024-12-24 15:04:38 +03:00
Merge pull request #289 from toolstik/feature/modules-deep-scan
Allow updates and scenes to be included from nested imported modules
This commit is contained in:
commit
2195d6b9bd
@ -26,12 +26,28 @@ export class BaseExplorerService {
|
|||||||
modules: Module[],
|
modules: Module[],
|
||||||
callback: (instance: InstanceWrapper, moduleRef: Module) => T | T[],
|
callback: (instance: InstanceWrapper, moduleRef: Module) => T | T[],
|
||||||
): T[] {
|
): T[] {
|
||||||
const invokeMap = () => {
|
const visitedModules = new Set<Module>();
|
||||||
return modules.map((moduleRef) => {
|
|
||||||
const providers = [...moduleRef.providers.values()];
|
const unwrap = (moduleRef: Module) => {
|
||||||
return providers.map((wrapper) => callback(wrapper, moduleRef));
|
// protection from circular recursion
|
||||||
});
|
if (visitedModules.has(moduleRef)) {
|
||||||
|
return [];
|
||||||
|
} else {
|
||||||
|
visitedModules.add(moduleRef);
|
||||||
|
}
|
||||||
|
|
||||||
|
const providers = [...moduleRef.providers.values()];
|
||||||
|
const defined = providers.map((wrapper) => callback(wrapper, moduleRef));
|
||||||
|
|
||||||
|
const imported: (T | T[])[] = moduleRef.imports?.size
|
||||||
|
? [...moduleRef.imports.values()].reduce((prev, cur) => {
|
||||||
|
return [...prev, ...unwrap(cur)];
|
||||||
|
}, [])
|
||||||
|
: [];
|
||||||
|
|
||||||
|
return [...defined, ...imported];
|
||||||
};
|
};
|
||||||
return flattenDeep(invokeMap()).filter(identity);
|
|
||||||
|
return flattenDeep(modules.map(unwrap)).filter(identity);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user