angular-cn/modules/@angular/router/src/config.ts

35 lines
1.0 KiB
TypeScript
Raw Normal View History

2016-06-08 14:13:41 -04:00
import {Type} from '@angular/core';
2016-05-23 19:14:23 -04:00
export type RouterConfig = Route[];
export interface Route {
path?: string;
2016-06-14 17:55:59 -04:00
terminal?: boolean;
2016-06-08 19:14:26 -04:00
component?: Type|string;
2016-05-23 19:14:23 -04:00
outlet?: string;
2016-06-07 12:50:35 -04:00
canActivate?: any[];
canDeactivate?: any[];
2016-06-08 19:14:26 -04:00
redirectTo?: string;
2016-05-23 19:14:23 -04:00
children?: Route[];
}
export function validateConfig(config: RouterConfig): void {
config.forEach(validateNode);
}
function validateNode(route: Route): void {
if (!!route.redirectTo && !!route.children) {
throw new Error(
`Invalid configuration of route '${route.path}': redirectTo and children cannot be used together`);
}
if (!!route.redirectTo && !!route.component) {
throw new Error(
`Invalid configuration of route '${route.path}': redirectTo and component cannot be used together`);
}
if (route.path === undefined) {
throw new Error(`Invalid route configuration: routes must have path specified`);
}
if (route.path.startsWith('/')) {
throw new Error(`Invalid route configuration of route '${route.path}': path cannot start with a slash`);
}
2016-05-23 19:14:23 -04:00
}