mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
74 lines
2.8 KiB
TypeScript
74 lines
2.8 KiB
TypeScript
import { NgModule } from '@angular/core';
|
|
import { RouterModule } from '@angular/router';
|
|
|
|
import { AuthenticatedGuard } from '../core/auth/authenticated.guard';
|
|
import { WorkflowItemPageResolver } from './workflow-item-page.resolver';
|
|
import {
|
|
WORKFLOW_ITEM_DELETE_PATH,
|
|
WORKFLOW_ITEM_EDIT_PATH,
|
|
WORKFLOW_ITEM_SEND_BACK_PATH,
|
|
WORKFLOW_ITEM_VIEW_PATH
|
|
} from './workflowitems-edit-page-routing-paths';
|
|
import { ThemedSubmissionEditComponent } from '../submission/edit/themed-submission-edit.component';
|
|
import { ThemedWorkflowItemDeleteComponent } from './workflow-item-delete/themed-workflow-item-delete.component';
|
|
import { ThemedWorkflowItemSendBackComponent } from './workflow-item-send-back/themed-workflow-item-send-back.component';
|
|
import { I18nBreadcrumbResolver } from '../core/breadcrumbs/i18n-breadcrumb.resolver';
|
|
import { ItemFromWorkflowResolver } from './item-from-workflow.resolver';
|
|
import { ThemedFullItemPageComponent } from '../+item-page/full/themed-full-item-page.component';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
RouterModule.forChild([
|
|
{
|
|
path: ':id',
|
|
resolve: { wfi: WorkflowItemPageResolver },
|
|
children: [
|
|
{
|
|
canActivate: [AuthenticatedGuard],
|
|
path: WORKFLOW_ITEM_EDIT_PATH,
|
|
component: ThemedSubmissionEditComponent,
|
|
resolve: {
|
|
breadcrumb: I18nBreadcrumbResolver
|
|
},
|
|
data: { title: 'workflow-item.edit.title', breadcrumbKey: 'workflow-item.edit' }
|
|
},
|
|
{
|
|
canActivate: [AuthenticatedGuard],
|
|
path: WORKFLOW_ITEM_VIEW_PATH,
|
|
component: ThemedFullItemPageComponent,
|
|
resolve: {
|
|
dso: ItemFromWorkflowResolver,
|
|
breadcrumb: I18nBreadcrumbResolver
|
|
},
|
|
data: { title: 'workflow-item.view.title', breadcrumbKey: 'workflow-item.view' }
|
|
},
|
|
{
|
|
canActivate: [AuthenticatedGuard],
|
|
path: WORKFLOW_ITEM_DELETE_PATH,
|
|
component: ThemedWorkflowItemDeleteComponent,
|
|
resolve: {
|
|
breadcrumb: I18nBreadcrumbResolver
|
|
},
|
|
data: { title: 'workflow-item.delete.title', breadcrumbKey: 'workflow-item.edit' }
|
|
},
|
|
{
|
|
canActivate: [AuthenticatedGuard],
|
|
path: WORKFLOW_ITEM_SEND_BACK_PATH,
|
|
component: ThemedWorkflowItemSendBackComponent,
|
|
resolve: {
|
|
breadcrumb: I18nBreadcrumbResolver
|
|
},
|
|
data: { title: 'workflow-item.send-back.title', breadcrumbKey: 'workflow-item.edit' }
|
|
}
|
|
]
|
|
}]
|
|
)
|
|
],
|
|
providers: [WorkflowItemPageResolver, ItemFromWorkflowResolver]
|
|
})
|
|
/**
|
|
* This module defines the default component to load when navigating to the workflowitems edit page path.
|
|
*/
|
|
export class WorkflowItemsEditPageRoutingModule {
|
|
}
|