Support control/command-enter submit comment form

This commit is contained in:
shamoon 2023-03-16 22:56:33 -07:00
parent 3911740360
commit 9aa41b3524
2 changed files with 7 additions and 1 deletions

View File

@ -1,7 +1,7 @@
<div *ngIf="comments">
<form [formGroup]="commentForm" class="needs-validation mt-3" *appIfPermissions="{ action: PermissionAction.Add, type: PermissionType.Comment }" novalidate>
<div class="form-group">
<textarea class="form-control form-control-sm" [class.is-invalid]="newCommentError" rows="3" formControlName="newComment" placeholder="Enter comment" i18n-placeholder required></textarea>
<textarea class="form-control form-control-sm" [class.is-invalid]="newCommentError" rows="3" formControlName="newComment" placeholder="Enter comment" i18n-placeholder (keydown)="commentFormKeydown($event)" required></textarea>
<div class="invalid-feedback" i18n>
Please enter a comment.
</div>

View File

@ -106,4 +106,10 @@ export class DocumentCommentsComponent extends ComponentWithPermissions {
}
return nameComponents.join(' ')
}
commentFormKeydown(event: KeyboardEvent) {
if ((event.metaKey || event.ctrlKey) && event.key === 'Enter') {
this.addComment()
}
}
}