From 52bc1a62e1525204a6803e538ba7a850c7855a62 Mon Sep 17 00:00:00 2001
From: Michael Shamoon <4887959+shamoon@users.noreply.github.com>
Date: Wed, 24 Mar 2021 12:21:13 -0700
Subject: [PATCH] Support passing current term from input-select search to
create dialog e.g. for doc type / correspondent
---
.../common/input/select/select.component.html | 9 +++++----
.../common/input/select/select.component.ts | 17 ++++++++++++++++-
.../document-detail.component.html | 4 ++--
.../document-detail.component.ts | 6 ++++--
4 files changed, 27 insertions(+), 9 deletions(-)
diff --git a/src-ui/src/app/components/common/input/select/select.component.html b/src-ui/src/app/components/common/input/select/select.component.html
index 540429e89..59d0f9ca3 100644
--- a/src-ui/src/app/components/common/input/select/select.component.html
+++ b/src-ui/src/app/components/common/input/select/select.component.html
@@ -10,11 +10,12 @@
bindLabel="name"
bindValue="id"
(change)="onChange(value)"
- (blur)="onTouched()">
+ (search)="onSearch($event)"
+ (focus)="onFocus()">
diff --git a/src-ui/src/app/components/common/input/select/select.component.ts b/src-ui/src/app/components/common/input/select/select.component.ts
index e02aaab72..6eaf7795f 100644
--- a/src-ui/src/app/components/common/input/select/select.component.ts
+++ b/src-ui/src/app/components/common/input/select/select.component.ts
@@ -34,7 +34,9 @@ export class SelectComponent extends AbstractInputComponent {
suggestions: number[]
@Output()
- createNew = new EventEmitter()
+ createNew = new EventEmitter()
+
+ private _lastSearchTerm: string
showPlusButton(): boolean {
return this.createNew.observers.length > 0
@@ -48,4 +50,17 @@ export class SelectComponent extends AbstractInputComponent {
}
}
+ clickNew() {
+ this.createNew.next(this._lastSearchTerm)
+ this._lastSearchTerm = null
+ }
+
+ onFocus() {
+ this._lastSearchTerm = null
+ }
+
+ onSearch($event) {
+ this._lastSearchTerm = $event.term
+ }
+
}
diff --git a/src-ui/src/app/components/document-detail/document-detail.component.html b/src-ui/src/app/components/document-detail/document-detail.component.html
index f9b87aee3..1286225fb 100644
--- a/src-ui/src/app/components/document-detail/document-detail.component.html
+++ b/src-ui/src/app/components/document-detail/document-detail.component.html
@@ -60,9 +60,9 @@
+ (createNew)="createCorrespondent($event)" [suggestions]="suggestions?.correspondents">
+ (createNew)="createDocumentType($event)" [suggestions]="suggestions?.document_types">
diff --git a/src-ui/src/app/components/document-detail/document-detail.component.ts b/src-ui/src/app/components/document-detail/document-detail.component.ts
index af98a6f7f..7dd5dd80d 100644
--- a/src-ui/src/app/components/document-detail/document-detail.component.ts
+++ b/src-ui/src/app/components/document-detail/document-detail.component.ts
@@ -127,9 +127,10 @@ export class DocumentDetailComponent implements OnInit {
this.documentForm.patchValue(doc)
}
- createDocumentType() {
+ createDocumentType(newName: string) {
var modal = this.modalService.open(DocumentTypeEditDialogComponent, {backdrop: 'static'})
modal.componentInstance.dialogMode = 'create'
+ if (newName) modal.componentInstance.object = { name: newName }
modal.componentInstance.success.subscribe(newDocumentType => {
this.documentTypeService.listAll().subscribe(documentTypes => {
this.documentTypes = documentTypes.results
@@ -138,9 +139,10 @@ export class DocumentDetailComponent implements OnInit {
})
}
- createCorrespondent() {
+ createCorrespondent(newName: string) {
var modal = this.modalService.open(CorrespondentEditDialogComponent, {backdrop: 'static'})
modal.componentInstance.dialogMode = 'create'
+ if (newName) modal.componentInstance.object = { name: newName }
modal.componentInstance.success.subscribe(newCorrespondent => {
this.correspondentService.listAll().subscribe(correspondents => {
this.correspondents = correspondents.results