mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
258 lines
9.8 KiB
TypeScript
258 lines
9.8 KiB
TypeScript
/*!
|
|
* @license
|
|
* Copyright 2016 Alfresco Software, Ltd.
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
import { ModuleWithProviders } from '@angular/core';
|
|
import { RouterModule, Routes } from '@angular/router';
|
|
import { AuthGuard, AuthGuardEcm, ErrorContentComponent, AuthGuardBpm } from '@alfresco/adf-core';
|
|
import { AppLayoutComponent } from './components/app-layout/app-layout.component';
|
|
import { LoginComponent } from './components/login/login.component';
|
|
import { SettingsComponent } from './components/settings/settings.component';
|
|
import { HomeComponent } from './components/home/home.component';
|
|
import { LogoutComponent } from './components/logout/logout.component';
|
|
import { AboutComponent } from './components/about/about.component';
|
|
import { ProcessServiceComponent } from './components/process-service/process-service.component';
|
|
import { ShowDiagramComponent } from './components/process-service/show-diagram.component';
|
|
import { FormViewerComponent } from './components/process-service/form-viewer.component';
|
|
import { FormNodeViewerComponent } from './components/process-service/form-node-viewer.component';
|
|
import { AppsViewComponent } from './components/process-service/apps-view.component';
|
|
import { SearchResultComponent } from './components/search/search-result.component';
|
|
import { SearchExtendedComponent } from './components/search/search-extended.component';
|
|
import { TrashcanComponent } from './components/trashcan/trashcan.component';
|
|
|
|
import { DataTableComponent } from './components/datatable/datatable.component';
|
|
import { WebscriptComponent } from './components/webscript/webscript.component';
|
|
import { TagComponent } from './components/tag/tag.component';
|
|
import { SocialComponent } from './components/social/social.component';
|
|
import { FilesComponent } from './components/files/files.component';
|
|
import { FormComponent } from './components/form/form.component';
|
|
|
|
import { FileViewComponent } from './components/file-view/file-view.component';
|
|
import { CustomSourcesComponent } from './components/files/custom-sources.component';
|
|
import { FormListComponent } from './components/form/form-list.component';
|
|
import { OverlayViewerComponent } from './components/overlay-viewer/overlay-viewer.component';
|
|
import { SharedLinkViewComponent } from './components/shared-link-view/shared-link-view.component';
|
|
import { FormLoadingComponent } from './components/form/form-loading.component';
|
|
import { DemoPermissionComponent } from './components/permissions/demo-permissions.component';
|
|
import { BlobPreviewComponent } from './components/blob-preview/blob-preview.component';
|
|
import { BreadcrumbDemoComponent } from './components/breadcrumb-demo/breadcrumb-demo.component';
|
|
import { NotificationsComponent } from './components/notifications/notifications.component';
|
|
import { CardViewComponent } from './components/card-view/card-view.component';
|
|
import { ContentNodeSelectorComponent } from './components/content-node-selector/content-node-selector.component';
|
|
import { ReportIssueComponent } from './components/report-issue/report-issue.component';
|
|
|
|
export const appRoutes: Routes = [
|
|
{ path: 'login', component: LoginComponent },
|
|
{ path: 'logout', component: LogoutComponent },
|
|
{ path: 'settings', component: SettingsComponent },
|
|
{ path: 'files/:nodeId/view', component: FileViewComponent, canActivate: [ AuthGuardEcm ], outlet: 'overlay' },
|
|
{ path: 'preview/blob', component: BlobPreviewComponent, outlet: 'overlay', pathMatch: 'full' },
|
|
{ path: 'preview/s/:id', component: SharedLinkViewComponent },
|
|
{
|
|
path: 'breadcrumb',
|
|
component: BreadcrumbDemoComponent,
|
|
canActivate: [AuthGuardEcm]
|
|
},
|
|
{
|
|
path: 'notifications',
|
|
component: AppLayoutComponent ,
|
|
children: [
|
|
{
|
|
path: '',
|
|
component: NotificationsComponent
|
|
}
|
|
]
|
|
},
|
|
{
|
|
path: 'card-view',
|
|
component: AppLayoutComponent ,
|
|
children: [
|
|
{
|
|
path: '',
|
|
component: CardViewComponent
|
|
}
|
|
]
|
|
},
|
|
{
|
|
path: '',
|
|
component: AppLayoutComponent,
|
|
canActivate: [AuthGuard],
|
|
children: [
|
|
{
|
|
path: '',
|
|
component: HomeComponent
|
|
},
|
|
{
|
|
path: 'home',
|
|
component: HomeComponent
|
|
},
|
|
{
|
|
path: 'node-selector',
|
|
component: ContentNodeSelectorComponent
|
|
},
|
|
{
|
|
path: 'settings-layout',
|
|
component: SettingsComponent
|
|
},
|
|
{
|
|
path: 'trashcan',
|
|
component: TrashcanComponent,
|
|
canActivate: [AuthGuardEcm]
|
|
},
|
|
{
|
|
path: 'files',
|
|
component: FilesComponent,
|
|
canActivate: [AuthGuardEcm]
|
|
},
|
|
{
|
|
path: 'files/:id',
|
|
component: FilesComponent,
|
|
canActivate: [AuthGuardEcm]
|
|
},
|
|
{
|
|
path: 'files/:id/display/:mode',
|
|
component: FilesComponent,
|
|
canActivate: [AuthGuardEcm]
|
|
},
|
|
{
|
|
path: 'dl-custom-sources',
|
|
component: CustomSourcesComponent,
|
|
canActivate: [AuthGuardEcm]
|
|
},
|
|
{
|
|
path: 'datatable',
|
|
component: DataTableComponent
|
|
},
|
|
{
|
|
path: 'search',
|
|
component: SearchResultComponent,
|
|
canActivate: [AuthGuardEcm]
|
|
},
|
|
{
|
|
path: 'extendedSearch',
|
|
component: SearchExtendedComponent,
|
|
canActivate: [AuthGuardEcm]
|
|
},
|
|
{
|
|
path: 'activiti',
|
|
component: AppsViewComponent,
|
|
canActivate: [AuthGuardBpm]
|
|
},
|
|
{
|
|
path: 'activiti/apps',
|
|
component: AppsViewComponent,
|
|
canActivate: [AuthGuardBpm]
|
|
},
|
|
{
|
|
path: 'activiti/apps/:appId/tasks',
|
|
component: ProcessServiceComponent,
|
|
canActivate: [AuthGuardBpm]
|
|
},
|
|
{
|
|
path: 'activiti/apps/:appId/tasks/:filterId',
|
|
component: ProcessServiceComponent,
|
|
canActivate: [AuthGuardBpm]
|
|
},
|
|
{
|
|
path: 'activiti/apps/:appId/processes',
|
|
component: ProcessServiceComponent,
|
|
canActivate: [AuthGuardBpm]
|
|
},
|
|
{
|
|
path: 'activiti/apps/:appId/processes/:filterId',
|
|
component: ProcessServiceComponent,
|
|
canActivate: [AuthGuardBpm]
|
|
},
|
|
{
|
|
path: 'activiti/apps/:appId/diagram/:processDefinitionId',
|
|
component: ShowDiagramComponent,
|
|
canActivate: [AuthGuardBpm]
|
|
},
|
|
{
|
|
path: 'activiti/apps/:appId/report',
|
|
component: ProcessServiceComponent,
|
|
canActivate: [AuthGuardBpm]
|
|
},
|
|
// TODO: check if needed
|
|
{
|
|
path: 'activiti/appId/:appId',
|
|
component: ProcessServiceComponent,
|
|
canActivate: [AuthGuardBpm]
|
|
},
|
|
// TODO: check if needed
|
|
{
|
|
path: 'activiti/tasks/:id',
|
|
component: FormViewerComponent,
|
|
canActivate: [AuthGuardBpm]
|
|
},
|
|
// TODO: check if needed
|
|
{
|
|
path: 'activiti/tasksnode/:id',
|
|
component: FormNodeViewerComponent,
|
|
canActivate: [AuthGuardBpm]
|
|
},
|
|
{
|
|
path: 'webscript',
|
|
component: WebscriptComponent,
|
|
canActivate: [AuthGuardEcm]
|
|
},
|
|
{
|
|
path: 'tag',
|
|
component: TagComponent,
|
|
canActivate: [AuthGuardEcm]
|
|
},
|
|
{
|
|
path: 'social',
|
|
component: SocialComponent,
|
|
canActivate: [AuthGuardEcm]
|
|
},
|
|
{
|
|
path: 'permissions/:id',
|
|
component: DemoPermissionComponent,
|
|
canActivate: [AuthGuardEcm]
|
|
},
|
|
{ path: 'about', component: AboutComponent },
|
|
{ path: 'form', component: FormComponent },
|
|
{ path: 'form-list', component: FormListComponent },
|
|
{ path: 'form-loading', component: FormLoadingComponent },
|
|
{
|
|
path: 'overlay-viewer',
|
|
component: OverlayViewerComponent,
|
|
canActivate: [AuthGuardEcm]
|
|
},
|
|
{
|
|
path: 'report-issue',
|
|
component: ReportIssueComponent
|
|
},
|
|
{
|
|
path: 'datatable-lazy',
|
|
loadChildren: 'app/components/lazy-loading/lazy-loading.module#LazyLoadingModule'
|
|
},
|
|
{
|
|
path: 'error/:id',
|
|
component: ErrorContentComponent
|
|
},
|
|
{
|
|
path: '**',
|
|
redirectTo: 'error/404'
|
|
}
|
|
|
|
]
|
|
}
|
|
];
|
|
|
|
export const routing: ModuleWithProviders = RouterModule.forRoot(appRoutes, { initialNavigation: true });
|