mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
20 lines
653 B
TypeScript
20 lines
653 B
TypeScript
import {Type, isPresent} from 'angular2/src/facade/lang';
|
|
import {RouteLifecycleHook, CanActivate} from './lifecycle_annotations_impl';
|
|
import {reflector} from 'angular2/src/reflection/reflection';
|
|
|
|
export function hasLifecycleHook(e: RouteLifecycleHook, type): boolean {
|
|
if (!(type instanceof Type)) return false;
|
|
return e.name in(<any>type).prototype;
|
|
}
|
|
|
|
export function getCanActivateHook(type): Function {
|
|
var annotations = reflector.annotations(type);
|
|
for (let i = 0; i < annotations.length; i += 1) {
|
|
let annotation = annotations[i];
|
|
if (annotation instanceof CanActivate) {
|
|
return annotation.fn;
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|