From e19dd2d527d981c75932708e65dfcb11dbfa096f Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Thu, 16 Mar 2023 23:18:16 -0700 Subject: [PATCH] Support navigating directly to comments --- src-ui/src/app/app-routing.module.ts | 33 +++++++++++------ .../document-detail.component.html | 14 +++---- .../document-detail.component.ts | 37 ++++++++++++++++++- .../document-card-large.component.html | 2 +- .../document-card-large.component.scss | 6 --- .../document-card-small.component.html | 6 +-- .../document-card-small.component.scss | 8 +--- .../document-list.component.html | 15 ++++++++ src-ui/src/styles.scss | 6 +++ 9 files changed, 91 insertions(+), 36 deletions(-) diff --git a/src-ui/src/app/app-routing.module.ts b/src-ui/src/app/app-routing.module.ts index 6f26a81fd..4d12ee4f3 100644 --- a/src-ui/src/app/app-routing.module.ts +++ b/src-ui/src/app/app-routing.module.ts @@ -65,6 +65,17 @@ const routes: Routes = [ }, }, }, + { + path: 'documents/:id/:section', + component: DocumentDetailComponent, + canActivate: [PermissionsGuard], + data: { + requiredPermission: { + action: PermissionAction.View, + type: PermissionType.Document, + }, + }, + }, { path: 'asn/:id', component: DocumentAsnComponent, @@ -143,17 +154,6 @@ const routes: Routes = [ }, }, }, - { - path: 'tasks', - component: TasksComponent, - canActivate: [PermissionsGuard], - data: { - requiredPermission: { - action: PermissionAction.View, - type: PermissionType.PaperlessTask, - }, - }, - }, { path: 'settings/:section', component: SettingsComponent, @@ -171,6 +171,17 @@ const routes: Routes = [ component: SettingsComponent, canDeactivate: [DirtyFormGuard], }, + { + path: 'tasks', + component: TasksComponent, + canActivate: [PermissionsGuard], + data: { + requiredPermission: { + action: PermissionAction.View, + type: PermissionType.PaperlessTask, + }, + }, + }, { path: 'tasks', component: TasksComponent }, ], }, diff --git a/src-ui/src/app/components/document-detail/document-detail.component.html b/src-ui/src/app/components/document-detail/document-detail.component.html index 43eeed0ef..c5d727459 100644 --- a/src-ui/src/app/components/document-detail/document-detail.component.html +++ b/src-ui/src/app/components/document-detail/document-detail.component.html @@ -67,8 +67,8 @@
-