當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript router.RouterConfig類代碼示例

本文整理匯總了TypeScript中@angular/router.RouterConfig的典型用法代碼示例。如果您正苦於以下問題:TypeScript RouterConfig類的具體用法?TypeScript RouterConfig怎麽用?TypeScript RouterConfig使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了RouterConfig類的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: wrapSecured

function wrapSecured(config: RouterConfig, role: string) {
    config.forEach((route)=> {
       route.data = {role: role};
       route.canActivate = [AuthGuard];
    });
    return config;
}
開發者ID:AntonGrigoriev,項目名稱:3group,代碼行數:7,代碼來源:app.routes.ts

示例2: filter

import { provideRouter, RouterConfig, Route } from '@angular/router';
import { OverviewComponent } from './overview.component';
import { ToggleListComponent } from './toggle/list.component';
import { ToggleDetailComponent } from './toggle/detail.component';
import { ToggleEditComponent } from './toggle/edit.component';
import { PageNotFoundComponent } from './page-not-found.component';

const routes: RouterConfig = [
  { path: '', redirectTo: '/overview', pathMatch: 'full' },
  { path: 'overview', component: OverviewComponent },
  {
    path: 'toggles', children: [
    { path: '', component: ToggleListComponent },
    { path: ':id', component: ToggleDetailComponent },
    { path: ':id/edit', component: ToggleEditComponent },
  ]
  },
  { path: '**', component: PageNotFoundComponent }
];

export const components: any[] = routes.
    filter(route => route.children !== undefined).
    map(route => route.children).
    concat(routes).
    filter((route: Route) => route.component !== undefined).
    map((route: Route) => route.component);

export const appRouterProviders = [
  provideRouter(routes)
];
開發者ID:toggle-api,項目名稱:web-ui,代碼行數:30,代碼來源:app.routes.ts

示例3: provideRouter

import { provideRouter, RouterConfig } from '@angular/router';
import { HomeComponent } from "../layout/home/home.component";
import { IdeasComponent } from "../layout/ideas/ideas.component";
import { MarketplaceComponent } from "../layout/marketplace/marketplace.component";
import { ProfileComponent } from "../layout/profile/profile.component";
import { ProjectsComponent } from "../layout/projects/projects.component";
import { WinnersComponent } from "../layout/winners/winners.component";

export const routes: RouterConfig = [
    {path: '',            component: HomeComponent},
    {path: 'ideas',       component: IdeasComponent},
    {path: 'marketplace', component: MarketplaceComponent},
    {path: 'profile',     component: ProfileComponent},
    {path: 'projects',    component: ProjectsComponent},
    {path: 'winners',     component: WinnersComponent},
];

export const PRECOMPILE_ARRAY = routes.map(v => v.component);

export const APP_ROUTER_PROVIDERS = [
    provideRouter(routes)
];
開發者ID:PIWEEK,項目名稱:piweekr-front,代碼行數:22,代碼來源:app.routes.ts

示例4: getMainMenuLinks

 static getMainMenuLinks():RouteLink[] {
     var current = ActivatedRoute;
     
     return routes
         .filter(r => r.data && r.data['textLink'] && !r.path.includes(':')) 
         .map( r => this.mapRouteToLink(r));
 }
開發者ID:pacoramos77,項目名稱:ng-start,代碼行數:7,代碼來源:app.routes.ts

示例5: top_paths_markup

function top_paths_markup() {
  var top_routes = routes.filter((route) => is_top_path(route.path));
  var anchors    = top_routes.map( a_for_route ).join("\n");
  return `<nav>\n${anchors}\n</nav>`
};
開發者ID:emeyekayee,項目名稱:ng2-schedule-scroll-frontend,代碼行數:5,代碼來源:app.routes.ts


注:本文中的@angular/router.RouterConfig類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。