From b403b9d9d55ab94369108079b6f000a71e65f488 Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Sat, 4 May 2024 09:47:27 -0700
Subject: [PATCH] Fix ngbDropdown stealing keyboard events
---
.../global-search.component.html | 173 +++++++++---------
.../global-search.component.spec.ts | 7 +
.../global-search/global-search.component.ts | 13 ++
3 files changed, 108 insertions(+), 85 deletions(-)
diff --git a/src-ui/src/app/components/app-frame/global-search/global-search.component.html b/src-ui/src/app/components/app-frame/global-search/global-search.component.html
index 8df6cabff..317303de7 100644
--- a/src-ui/src/app/components/app-frame/global-search/global-search.component.html
+++ b/src-ui/src/app/components/app-frame/global-search/global-search.component.html
@@ -36,7 +36,8 @@
@if (type === DataType.Document) {
@@ -55,7 +56,8 @@
@if (type !== DataType.SavedView && type !== DataType.Workflow && type !== DataType.CustomField && type !== DataType.Group && type !== DataType.User && type !== DataType.MailAccount && type !== DataType.MailRule) {
@if (type === DataType.Document) {
@@ -71,93 +73,94 @@
-
diff --git a/src-ui/src/app/components/app-frame/global-search/global-search.component.spec.ts b/src-ui/src/app/components/app-frame/global-search/global-search.component.spec.ts
index a58db61dc..96f61bca1 100644
--- a/src-ui/src/app/components/app-frame/global-search/global-search.component.spec.ts
+++ b/src-ui/src/app/components/app-frame/global-search/global-search.component.spec.ts
@@ -442,6 +442,13 @@ describe('GlobalSearchComponent', () => {
expect(focusSpy).toHaveBeenCalled()
})
+ it('should prevent event propagation for keyboard events on buttons that are not arrows', () => {
+ const event = { stopImmediatePropagation: jest.fn(), key: 'Enter' }
+ const stopPropagationSpy = jest.spyOn(event, 'stopImmediatePropagation')
+ component.onButtonKeyDown(event as any)
+ expect(stopPropagationSpy).toHaveBeenCalled()
+ })
+
it('should support explicit advanced search', () => {
const qfSpy = jest.spyOn(documentListViewService, 'quickFilter')
component.query = 'test'
diff --git a/src-ui/src/app/components/app-frame/global-search/global-search.component.ts b/src-ui/src/app/components/app-frame/global-search/global-search.component.ts
index f2f191513..6d342566d 100644
--- a/src-ui/src/app/components/app-frame/global-search/global-search.component.ts
+++ b/src-ui/src/app/components/app-frame/global-search/global-search.component.ts
@@ -292,6 +292,7 @@ export class GlobalSearchComponent implements OnInit {
) {
if (event.key === 'ArrowDown') {
event.preventDefault()
+ event.stopImmediatePropagation()
if (this.currentItemIndex < this.searchResults.total - 1) {
this.currentItemIndex++
this.setCurrentItem()
@@ -301,6 +302,7 @@ export class GlobalSearchComponent implements OnInit {
}
} else if (event.key === 'ArrowUp') {
event.preventDefault()
+ event.stopImmediatePropagation()
if (this.currentItemIndex > 0) {
this.currentItemIndex--
this.setCurrentItem()
@@ -310,14 +312,25 @@ export class GlobalSearchComponent implements OnInit {
}
} else if (event.key === 'ArrowRight') {
event.preventDefault()
+ event.stopImmediatePropagation()
this.secondaryButtons.get(this.domIndex)?.nativeElement.focus()
} else if (event.key === 'ArrowLeft') {
event.preventDefault()
+ event.stopImmediatePropagation()
this.primaryButtons.get(this.domIndex).nativeElement.focus()
}
}
}
+ onButtonKeyDown(event: KeyboardEvent) {
+ // prevents ngBootstrap issue with keydown events
+ if (
+ !['ArrowDown', 'ArrowUp', 'ArrowRight', 'ArrowLeft'].includes(event.key)
+ ) {
+ event.stopImmediatePropagation()
+ }
+ }
+
public onDropdownOpenChange(open: boolean) {
if (!open) {
this.reset()