UNPKG

angular2

Version:

Angular 2 - a web framework for modern web apps

46 lines 1.51 kB
import { isBlank, isPresent } from 'angular2/src/facade/lang'; import { BaseException } from 'angular2/src/facade/exceptions'; import { StringMapWrapper } from 'angular2/src/facade/collection'; import * as cd from 'angular2/src/core/change_detection/pipes'; export class ProtoPipes { constructor( /** * Map of {@link PipeMetadata} names to {@link PipeMetadata} implementations. */ config) { this.config = config; this.config = config; } static fromProviders(providers) { var config = {}; providers.forEach(b => config[b.name] = b); return new ProtoPipes(config); } get(name) { var provider = this.config[name]; if (isBlank(provider)) throw new BaseException(`Cannot find pipe '${name}'.`); return provider; } } export class Pipes { constructor(proto, injector) { this.proto = proto; this.injector = injector; /** @internal */ this._config = {}; } get(name) { var cached = StringMapWrapper.get(this._config, name); if (isPresent(cached)) return cached; var p = this.proto.get(name); var transform = this.injector.instantiateResolved(p); var res = new cd.SelectedPipe(transform, p.pure); if (p.pure) { StringMapWrapper.set(this._config, name, res); } return res; } } //# sourceMappingURL=pipes.js.map