mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* Allow navigation to folders from search results - Uses router to pass ID of the folder - Modified document list component to accept folder ID without path - Current limitations - Breadcrumb cannot currently be shown when navigating via folder id - Clicking between folders does not update the current route * Allow root folder ID to be changed and have documentlist reload - e.g switching from Company home to My Files * New tests for navigating to folders based on ID Refs #666
125 lines
3.2 KiB
TypeScript
125 lines
3.2 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 { Routes, RouterModule } from '@angular/router';
|
|
import { AuthGuard, AuthGuardEcm, AuthGuardBpm } from 'ng2-alfresco-core';
|
|
|
|
import {
|
|
HomeComponent,
|
|
FilesComponent,
|
|
DataTableDemoComponent,
|
|
SearchComponent,
|
|
LoginDemoComponent,
|
|
ActivitiDemoComponent,
|
|
ActivitiAppsView,
|
|
WebscriptComponent,
|
|
TagComponent,
|
|
AboutComponent,
|
|
FormViewer,
|
|
FormNodeViewer,
|
|
SettingComponent
|
|
} from './components/index';
|
|
|
|
import { UploadButtonComponent } from 'ng2-alfresco-upload';
|
|
|
|
export const appRoutes: Routes = [
|
|
{ path: 'login', component: LoginDemoComponent },
|
|
{
|
|
path: '',
|
|
component: HomeComponent,
|
|
canActivate: [AuthGuard]
|
|
},
|
|
{
|
|
path: 'home',
|
|
component: HomeComponent,
|
|
canActivate: [AuthGuard]
|
|
},
|
|
{
|
|
path: 'files',
|
|
component: FilesComponent,
|
|
canActivate: [AuthGuardEcm]
|
|
},
|
|
{
|
|
path: 'files/:id',
|
|
component: FilesComponent,
|
|
canActivate: [AuthGuardEcm]
|
|
},
|
|
{
|
|
path: 'datatable',
|
|
component: DataTableDemoComponent,
|
|
canActivate: [AuthGuard]
|
|
},
|
|
{
|
|
path: 'uploader',
|
|
component: UploadButtonComponent,
|
|
canActivate: [AuthGuardEcm]
|
|
},
|
|
{
|
|
path: 'search',
|
|
component: SearchComponent,
|
|
canActivate: [AuthGuardEcm]
|
|
},
|
|
{
|
|
path: 'activiti',
|
|
component: ActivitiAppsView,
|
|
canActivate: [AuthGuardBpm]
|
|
},
|
|
{
|
|
path: 'activiti/apps',
|
|
component: ActivitiAppsView,
|
|
canActivate: [AuthGuardBpm]
|
|
},
|
|
{
|
|
path: 'activiti/apps/:appId/tasks',
|
|
component: ActivitiDemoComponent,
|
|
canActivate: [AuthGuardBpm]
|
|
},
|
|
// TODO: check if neeeded
|
|
{
|
|
path: 'activiti/appId/:appId',
|
|
component: ActivitiDemoComponent,
|
|
canActivate: [AuthGuardBpm]
|
|
},
|
|
// TODO: check if needed
|
|
{
|
|
path: 'activiti/tasks/:id',
|
|
component: FormViewer,
|
|
canActivate: [AuthGuardBpm]
|
|
},
|
|
// TODO: check if needed
|
|
{
|
|
path: 'activiti/tasksnode/:id',
|
|
component: FormNodeViewer,
|
|
canActivate: [AuthGuardBpm]
|
|
},
|
|
{
|
|
path: 'webscript',
|
|
component: WebscriptComponent,
|
|
canActivate: [AuthGuardEcm]
|
|
},
|
|
{
|
|
path: 'tag',
|
|
component: TagComponent,
|
|
canActivate: [AuthGuardEcm]
|
|
},
|
|
{ path: 'about', component: AboutComponent },
|
|
{ path: 'settings', component: SettingComponent }
|
|
];
|
|
|
|
export const routing: ModuleWithProviders = RouterModule.forRoot(appRoutes);
|