routing.ts 1.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// Copyright 2017 The Kubernetes Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

15 16
import {NgModule} from '@angular/core';
import {Route, RouterModule} from '@angular/router';
17
import {TRIGGER_DEFAULT_ACTIONBAR} from '../../../common/components/actionbars/routing';
18

19
import {WORKLOADS_ROUTE} from '../routing';
20

21 22
import {CronJobDetailComponent} from './detail/component';
import {CronJobListComponent} from './list/component';
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42

const CRONJOB_LIST_ROUTE: Route = {
  path: '',
  component: CronJobListComponent,
  data: {
    breadcrumb: 'Cron Jobs',
    parent: WORKLOADS_ROUTE,
  },
};

const CRONJOB_DETAIL_ROUTE: Route = {
  path: ':resourceNamespace/:resourceName',
  component: CronJobDetailComponent,
  data: {
    breadcrumb: '{{ resourceName }}',
    parent: CRONJOB_LIST_ROUTE,
  },
};

@NgModule({
M
Marcin Maciaszczyk 已提交
43
  imports: [RouterModule.forChild([CRONJOB_LIST_ROUTE, CRONJOB_DETAIL_ROUTE, TRIGGER_DEFAULT_ACTIONBAR])],
44 45
  exports: [RouterModule],
})
S
Shu Muto 已提交
46
export class CronJobRoutingModule {}