+
-
-
-
-
diff --git a/src-ui/src/app/components/document-comments/document-comments.component.scss b/src-ui/src/app/components/document-comments/document-comments.component.scss
index a5ff6f86e..d7e21e14e 100644
--- a/src-ui/src/app/components/document-comments/document-comments.component.scss
+++ b/src-ui/src/app/components/document-comments/document-comments.component.scss
@@ -1,22 +1,9 @@
-.comment-card-body {
- padding-top: .8rem !important;
- padding-bottom: .8rem !important;
- max-height: 10rem;
+.card-body {
+ max-height: 12rem;
overflow: scroll;
white-space: pre-wrap;
}
-.comment-card-header a {
- border: none;
- background: none;
- padding: 5px;
- border-radius: 50%;
-}
-
-.comment-card-header a:hover {
- background: #FFF;
-}
-
-.comment-card-header a:hover svg {
- fill: var(--primary);
+.card:hover .fade {
+ opacity: 1;
}
diff --git a/src-ui/src/app/components/document-comments/document-comments.component.ts b/src-ui/src/app/components/document-comments/document-comments.component.ts
index 421811d4f..5362e1661 100644
--- a/src-ui/src/app/components/document-comments/document-comments.component.ts
+++ b/src-ui/src/app/components/document-comments/document-comments.component.ts
@@ -12,11 +12,12 @@ import { ToastService } from 'src/app/services/toast.service'
})
export class DocumentCommentsComponent implements OnInit {
commentForm: FormGroup = new FormGroup({
- newcomment: new FormControl(''),
+ newComment: new FormControl(''),
})
networkActive = false
comments: PaperlessDocumentComment[] = []
+ newCommentError: boolean = false
@Input()
documentId: number
@@ -33,27 +34,30 @@ export class DocumentCommentsComponent implements OnInit {
.subscribe((comments) => (this.comments = comments))
}
- commentId(index, comment: PaperlessDocumentComment) {
- return comment.id
- }
-
addComment() {
+ const comment: string = this.commentForm
+ .get('newComment')
+ .value.toString()
+ .trim()
+ if (comment.length == 0) {
+ this.newCommentError = true
+ return
+ }
+ this.newCommentError = false
this.networkActive = true
- this.commentsService
- .addComment(this.documentId, this.commentForm.get('newcomment').value)
- .subscribe({
- next: (result) => {
- this.comments = result
- this.commentForm.get('newcomment').reset()
- this.networkActive = false
- },
- error: (e) => {
- this.networkActive = false
- this.toastService.showError(
- $localize`Error saving comment: ${e.toString()}`
- )
- },
- })
+ this.commentsService.addComment(this.documentId, comment).subscribe({
+ next: (result) => {
+ this.comments = result
+ this.commentForm.get('newComment').reset()
+ this.networkActive = false
+ },
+ error: (e) => {
+ this.networkActive = false
+ this.toastService.showError(
+ $localize`Error saving comment: ${e.toString()}`
+ )
+ },
+ })
}
deleteComment(commentId: number) {
@@ -70,4 +74,17 @@ export class DocumentCommentsComponent implements OnInit {
},
})
}
+
+ displayName(comment: PaperlessDocumentComment): string {
+ if (!comment.user) return ''
+ let nameComponents = []
+ if (comment.user.firstname) nameComponents.unshift(comment.user.firstname)
+ if (comment.user.lastname) nameComponents.unshift(comment.user.lastname)
+ if (comment.user.username) {
+ if (nameComponents.length > 0)
+ nameComponents.push(`(${comment.user.username})`)
+ else nameComponents.push(comment.user.username)
+ }
+ return nameComponents.join(' ')
+ }
}