From bd64684fa465077313222204e8ead1370b1f5e33 Mon Sep 17 00:00:00 2001
From: Michael Shamoon <4887959+shamoon@users.noreply.github.com>
Date: Sat, 29 Oct 2022 09:44:26 -0700
Subject: [PATCH] support esc and x button for main search bar
---
.../components/app-frame/app-frame.component.html | 7 ++++++-
.../components/app-frame/app-frame.component.scss | 15 ++++++++-------
.../components/app-frame/app-frame.component.ts | 14 ++++++++++++++
3 files changed, 28 insertions(+), 8 deletions(-)
diff --git a/src-ui/src/app/components/app-frame/app-frame.component.html b/src-ui/src/app/components/app-frame/app-frame.component.html
index 3700105f3..41bd50970 100644
--- a/src-ui/src/app/components/app-frame/app-frame.component.html
+++ b/src-ui/src/app/components/app-frame/app-frame.component.html
@@ -16,7 +16,12 @@
+ [formControl]="searchField" [ngbTypeahead]="searchAutoComplete" (keyup)="searchFieldKeyup($event)" (selectItem)="itemSelected($event)" i18n-placeholder>
+
diff --git a/src-ui/src/app/components/app-frame/app-frame.component.scss b/src-ui/src/app/components/app-frame/app-frame.component.scss
index 755f20696..0bd96f33e 100644
--- a/src-ui/src/app/components/app-frame/app-frame.component.scss
+++ b/src-ui/src/app/components/app-frame/app-frame.component.scss
@@ -243,17 +243,18 @@ main {
form {
position: relative;
+
+ > svg {
+ position: absolute;
+ left: 0.6rem;
+ top: 0.5rem;
+ color: rgba(255, 255, 255, 0.6);
+ }
}
- svg {
- position: absolute;
- left: 0.6rem;
- top: 0.5rem;
- color: rgba(255, 255, 255, 0.6);
- }
&:focus-within {
- svg {
+ form > svg {
display: none;
}
diff --git a/src-ui/src/app/components/app-frame/app-frame.component.ts b/src-ui/src/app/components/app-frame/app-frame.component.ts
index b189409a8..d637a32b6 100644
--- a/src-ui/src/app/components/app-frame/app-frame.component.ts
+++ b/src-ui/src/app/components/app-frame/app-frame.component.ts
@@ -93,6 +93,20 @@ export class AppFrameComponent implements OnInit, ComponentCanDeactivate {
searchField = new FormControl('')
+ get searchFieldEmpty(): boolean {
+ return this.searchField.value.trim().length == 0
+ }
+
+ resetSearchField() {
+ this.searchField.reset('')
+ }
+
+ searchFieldKeyup(event: KeyboardEvent) {
+ if (event.key == 'Escape') {
+ this.resetSearchField()
+ }
+ }
+
get openDocuments(): PaperlessDocument[] {
return this.openDocumentsService.getOpenDocuments()
}