##// END OF EJS Templates
working on IoC configuration
working on IoC configuration

File last commit:

r114:475b8ce3e850 ioc ts support
r114:475b8ce3e850 ioc ts support
Show More
AggregateDescriptor.ts
39 lines | 1.1 KiB | video/mp2t | TypeScriptLexer
/ src / main / ts / di / AggregateDescriptor.ts
cin
changed the project structure
r49 import { Descriptor, isDescriptor } from "./interfaces";
import { ActivationContext } from "./ActivationContext";
import { isPrimitive } from "../safe";
cin
working on IoC configuration
r114 type Parse<T> = T extends Descriptor<infer V> ? V :
T extends {} ? { [K in keyof T]: Parse<T[K]> } :
T;
export class AggregateDescriptor<T> implements Descriptor<Parse<T>> {
cin
working on IoC configuration
r113 _value: T;
cin
changed the project structure
r49
cin
working on IoC configuration
r113 constructor(value: T) {
cin
changed the project structure
r49 this._value = value;
}
cin
working on IoC configuration
r114 activate<S>(context: ActivationContext<S>) {
cin
changed the project structure
r49 return this._parse(this._value, context, "$value");
}
cin
working on IoC configuration
r114 _parse<S, V>(value: V, context: ActivationContext<S>, path: string): Parse<V> {
cin
changed the project structure
r49 if (isPrimitive(value))
cin
working on IoC configuration
r114 return value as any;
cin
changed the project structure
r49
if (isDescriptor(value))
return context.activate(value, path);
if (value instanceof Array)
cin
working on IoC configuration
r114 return value.map((x, i) => this._parse(x, context, `${path}[${i}]`)) as any;
cin
changed the project structure
r49
cin
working on IoC configuration
r114 const t: any = {};
for (const p in value)
cin
changed the project structure
r49 t[p] = this._parse(value[p], context, `${path}.${p}`);
return t;
}
toString() {
return "@walk";
}
}