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.SavedView && type !== DataType.Workflow && type !== DataType.CustomField && type !== DataType.Group && type !== DataType.User && type !== DataType.MailAccount && type !== DataType.MailRule) {
-
- @if (searchResults?.total === 0) { - - } @else { - @if (searchResults?.documents.length) { - - @for (document of searchResults.documents; track document.id) { - +
+
+ @if (searchResults?.total === 0) { + + } @else { + @if (searchResults?.documents.length) { + + @for (document of searchResults.documents; track document.id) { + + } } - } - @if (searchResults?.saved_views.length) { - - @for (saved_view of searchResults.saved_views; track saved_view.id) { - + @if (searchResults?.saved_views.length) { + + @for (saved_view of searchResults.saved_views; track saved_view.id) { + + } } - } - @if (searchResults?.tags.length) { - - @for (tag of searchResults.tags; track tag.id) { - + @if (searchResults?.tags.length) { + + @for (tag of searchResults.tags; track tag.id) { + + } + } + + @if (searchResults?.correspondents.length) { + + @for (correspondent of searchResults.correspondents; track correspondent.id) { + + } + } + + @if (searchResults?.document_types.length) { + + @for (documentType of searchResults.document_types; track documentType.id) { + + } + } + + @if (searchResults?.storage_paths.length) { + + @for (storagePath of searchResults.storage_paths; track storagePath.id) { + + } + } + + @if (searchResults?.users.length) { + + @for (user of searchResults.users; track user.id) { + + } + } + + @if (searchResults?.groups.length) { + + @for (group of searchResults.groups; track group.id) { + + } + } + + @if (searchResults?.custom_fields.length) { + + @for (customField of searchResults.custom_fields; track customField.id) { + + } + } + + @if (searchResults?.mail_accounts.length) { + + @for (mailAccount of searchResults.mail_accounts; track mailAccount.id) { + + } + } + + @if (searchResults?.mail_rules.length) { + + @for (mailRule of searchResults.mail_rules; track mailRule.id) { + + } + } + + @if (searchResults?.workflows.length) { + + @for (workflow of searchResults.workflows; track workflow.id) { + + } } } - - @if (searchResults?.correspondents.length) { - - @for (correspondent of searchResults.correspondents; track correspondent.id) { - - } - } - - @if (searchResults?.document_types.length) { - - @for (documentType of searchResults.document_types; track documentType.id) { - - } - } - - @if (searchResults?.storage_paths.length) { - - @for (storagePath of searchResults.storage_paths; track storagePath.id) { - - } - } - - @if (searchResults?.users.length) { - - @for (user of searchResults.users; track user.id) { - - } - } - - @if (searchResults?.groups.length) { - - @for (group of searchResults.groups; track group.id) { - - } - } - - @if (searchResults?.custom_fields.length) { - - @for (customField of searchResults.custom_fields; track customField.id) { - - } - } - - @if (searchResults?.mail_accounts.length) { - - @for (mailAccount of searchResults.mail_accounts; track mailAccount.id) { - - } - } - - @if (searchResults?.mail_rules.length) { - - @for (mailRule of searchResults.mail_rules; track mailRule.id) { - - } - } - - @if (searchResults?.workflows.length) { - - @for (workflow of searchResults.workflows; track workflow.id) { - - } - } - } - +
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()