From 86da578774b62d638dd55e32e8b88dc954d83346 Mon Sep 17 00:00:00 2001
From: Michael Shamoon <4887959+nikonratm@users.noreply.github.com>
Date: Sat, 19 Dec 2020 23:42:08 -0800
Subject: [PATCH] Hide toggled state & counts when selection spans documents
not in view
---
.../filterable-dropdown.component.ts | 9 ++++-
.../bulk-editor/bulk-editor.component.html | 6 ++--
.../bulk-editor/bulk-editor.component.ts | 36 +++++++++++--------
.../document-list.component.html | 2 +-
4 files changed, 34 insertions(+), 19 deletions(-)
diff --git a/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts b/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
index a5dadc603..9a2c3cfc0 100644
--- a/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
+++ b/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts
@@ -78,8 +78,15 @@ export class FilterableDropdownComponent {
@Output()
editingComplete = new EventEmitter()
+ _showCounts: boolean = true
+
+ @Input
+ set showCounts(show: boolean) {
+ this._showCounts = show
+ }
+
get showCounts(): boolean {
- return this.type == FilterableDropdownType.Editing || (this.type == FilterableDropdownType.Filtering && this.itemsSelected == 0)
+ return this._showCounts && (this.type == FilterableDropdownType.Editing || (this.type == FilterableDropdownType.Filtering && this.itemsSelected == 0))
}
constructor(private filterPipe: FilterPipe) { }
diff --git a/src-ui/src/app/components/document-list/bulk-editor/bulk-editor.component.html b/src-ui/src/app/components/document-list/bulk-editor/bulk-editor.component.html
index 746dd9569..77d171656 100644
--- a/src-ui/src/app/components/document-list/bulk-editor/bulk-editor.component.html
+++ b/src-ui/src/app/components/document-list/bulk-editor/bulk-editor.component.html
@@ -28,9 +28,9 @@
diff --git a/src-ui/src/app/components/document-list/bulk-editor/bulk-editor.component.ts b/src-ui/src/app/components/document-list/bulk-editor/bulk-editor.component.ts
index af6934e32..c8c05a327 100644
--- a/src-ui/src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+++ b/src-ui/src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -22,7 +22,7 @@ export class BulkEditorComponent {
selectedDocuments: Set
@Input()
- allDocuments: PaperlessDocument[]
+ viewDocuments: PaperlessDocument[]
@Output()
selectPage = new EventEmitter()
@@ -45,53 +45,61 @@ export class BulkEditorComponent {
@Output()
delete = new EventEmitter()
- tags: PaperlessTag[]
- correspondents: PaperlessCorrespondent[]
- documentTypes: PaperlessDocumentType[]
+ private tags: PaperlessTag[]
+ private correspondents: PaperlessCorrespondent[]
+ private documentTypes: PaperlessDocumentType[]
private initiallySelectedTagsToggleableItems: ToggleableItem[]
private initiallySelectedCorrespondentsToggleableItems: ToggleableItem[]
private initiallySelectedDocumentTypesToggleableItems: ToggleableItem[]
- dropdownTypes = FilterableDropdownType
+ private dropdownTypes = FilterableDropdownType
+
+ get selectionSpansPages(): boolean {
+ return this.selectedDocuments.length > this.viewDocuments.length || !Array.from(this.selectedDocuments).every(sd => this.viewDocuments.find(d => d.id == sd))
+ }
get tagsToggleableItems(): ToggleableItem[] {
let tagsToggleableItems = []
- let selectedDocuments: PaperlessDocument[] = this.allDocuments.filter(d => this.selectedDocuments.has(d.id))
+ let selectedDocuments: PaperlessDocument[] = this.viewDocuments.filter(d => this.selectedDocuments.has(d.id))
+ if (this.selectionSpansPages) selectedDocuments = []
+
this.tags?.forEach(t => {
let selectedDocumentsWithTag: PaperlessDocument[] = selectedDocuments.filter(d => d.tags.includes(t.id))
let state = ToggleableItemState.NotSelected
- if (selectedDocumentsWithTag.length == selectedDocuments.length) state = ToggleableItemState.Selected
+ if (selectedDocuments.length > 0 && selectedDocumentsWithTag.length == selectedDocuments.length) state = ToggleableItemState.Selected
else if (selectedDocumentsWithTag.length > 0 && selectedDocumentsWithTag.length < selectedDocuments.length) state = ToggleableItemState.PartiallySelected
- tagsToggleableItems.push( { item: t, state: state, count: selectedDocumentsWithTag.length } )
+ tagsToggleableItems.push({item: t, state: state, count: selectedDocumentsWithTag.length})
})
return tagsToggleableItems
}
get correspondentsToggleableItems(): ToggleableItem[] {
let correspondentsToggleableItems = []
- let selectedDocuments: PaperlessDocument[] = this.allDocuments.filter(d => this.selectedDocuments.has(d.id))
+ let selectedDocuments: PaperlessDocument[] = this.viewDocuments.filter(d => this.selectedDocuments.has(d.id))
+ if (this.selectionSpansPages) selectedDocuments = []
this.correspondents?.forEach(c => {
let selectedDocumentsWithCorrespondent: PaperlessDocument[] = selectedDocuments.filter(d => d.correspondent == c.id)
let state = ToggleableItemState.NotSelected
- if (selectedDocumentsWithCorrespondent.length == selectedDocuments.length) state = ToggleableItemState.Selected
+ if (selectedDocuments.length > 0 && selectedDocumentsWithCorrespondent.length == selectedDocuments.length) state = ToggleableItemState.Selected
else if (selectedDocumentsWithCorrespondent.length > 0 && selectedDocumentsWithCorrespondent.length < selectedDocuments.length) state = ToggleableItemState.PartiallySelected
- correspondentsToggleableItems.push( { item: c, state: state, count: selectedDocumentsWithCorrespondent.length } )
+ correspondentsToggleableItems.push({item: c, state: state, count: selectedDocumentsWithCorrespondent.length})
})
return correspondentsToggleableItems
}
get documentTypesToggleableItems(): ToggleableItem[] {
let documentTypesToggleableItems = []
- let selectedDocuments: PaperlessDocument[] = this.allDocuments.filter(d => this.selectedDocuments.has(d.id))
+ let selectedDocuments: PaperlessDocument[] = this.viewDocuments.filter(d => this.selectedDocuments.has(d.id))
+ if (this.selectionSpansPages) selectedDocuments = []
this.documentTypes?.forEach(dt => {
let selectedDocumentsWithDocumentType: PaperlessDocument[] = selectedDocuments.filter(d => d.document_type == dt.id)
let state = ToggleableItemState.NotSelected
- if (selectedDocumentsWithDocumentType.length == selectedDocuments.length) state = ToggleableItemState.Selected
+ if (selectedDocuments.length > 0 && selectedDocumentsWithDocumentType.length == selectedDocuments.length) state = ToggleableItemState.Selected
else if (selectedDocumentsWithDocumentType.length > 0 && selectedDocumentsWithDocumentType.length < selectedDocuments.length) state = ToggleableItemState.PartiallySelected
- documentTypesToggleableItems.push( { item: dt, state: state, count: selectedDocumentsWithDocumentType.length } )
+ documentTypesToggleableItems.push({item: dt, state: state, count: selectedDocumentsWithDocumentType.length})
})
return documentTypesToggleableItems
}
diff --git a/src-ui/src/app/components/document-list/document-list.component.html b/src-ui/src/app/components/document-list/document-list.component.html
index 7032325e4..dc1902a24 100644
--- a/src-ui/src/app/components/document-list/document-list.component.html
+++ b/src-ui/src/app/components/document-list/document-list.component.html
@@ -81,7 +81,7 @@