2016-06-23 12:47:54 -04:00
|
|
|
/**
|
|
|
|
* @license
|
2020-05-19 15:08:49 -04:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2016-06-23 12:47:54 -04:00
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
2017-05-18 16:46:51 -04:00
|
|
|
import {CompileReflector} from './compile_reflector';
|
2020-04-08 13:14:18 -04:00
|
|
|
import {createPipe, Pipe, Type} from './core';
|
2017-03-01 17:10:59 -05:00
|
|
|
import {findLast} from './directive_resolver';
|
2017-08-16 12:00:03 -04:00
|
|
|
import {resolveForwardRef, stringify} from './util';
|
2015-10-23 02:35:53 -04:00
|
|
|
|
2015-08-07 14:41:38 -04:00
|
|
|
/**
|
2016-09-12 22:14:17 -04:00
|
|
|
* Resolve a `Type` for {@link Pipe}.
|
2015-08-07 14:41:38 -04:00
|
|
|
*
|
|
|
|
* This interface can be overridden by the application developer to create custom behavior.
|
|
|
|
*
|
|
|
|
* See {@link Compiler}
|
|
|
|
*/
|
|
|
|
export class PipeResolver {
|
2017-05-18 16:46:51 -04:00
|
|
|
constructor(private _reflector: CompileReflector) {}
|
2016-03-24 16:32:47 -04:00
|
|
|
|
2017-08-16 12:00:03 -04:00
|
|
|
isPipe(type: Type) {
|
2016-11-10 17:07:30 -05:00
|
|
|
const typeMetadata = this._reflector.annotations(resolveForwardRef(type));
|
2017-08-16 12:00:03 -04:00
|
|
|
return typeMetadata && typeMetadata.some(createPipe.isTypeOf);
|
2016-11-10 17:07:30 -05:00
|
|
|
}
|
|
|
|
|
2015-08-07 14:41:38 -04:00
|
|
|
/**
|
2016-09-12 22:14:17 -04:00
|
|
|
* Return {@link Pipe} for a given `Type`.
|
2015-08-07 14:41:38 -04:00
|
|
|
*/
|
2017-08-16 12:00:03 -04:00
|
|
|
resolve(type: Type, throwIfNotFound = true): Pipe|null {
|
2016-11-12 08:08:58 -05:00
|
|
|
const metas = this._reflector.annotations(resolveForwardRef(type));
|
2017-01-04 16:59:43 -05:00
|
|
|
if (metas) {
|
2017-08-16 12:00:03 -04:00
|
|
|
const annotation = findLast(metas, createPipe.isTypeOf);
|
2017-01-04 16:59:43 -05:00
|
|
|
if (annotation) {
|
2015-10-23 02:35:53 -04:00
|
|
|
return annotation;
|
2015-08-07 14:41:38 -04:00
|
|
|
}
|
|
|
|
}
|
2016-07-18 06:50:31 -04:00
|
|
|
if (throwIfNotFound) {
|
2016-08-25 03:50:16 -04:00
|
|
|
throw new Error(`No Pipe decorator found on ${stringify(type)}`);
|
2016-07-18 06:50:31 -04:00
|
|
|
}
|
|
|
|
return null;
|
2015-08-07 14:41:38 -04:00
|
|
|
}
|
2016-07-18 06:50:31 -04:00
|
|
|
}
|