From 7e36986a26110373f26559818e44d2282f260837 Mon Sep 17 00:00:00 2001
From: Michael Shamoon <4887959+nikonratm@users.noreply.github.com>
Date: Mon, 4 Jan 2021 00:20:10 -0800
Subject: [PATCH] Clearing filters on saved views should reset them to initial
rules
---
.../document-list.component.html | 4 +-
.../document-list/document-list.component.ts | 45 +++++++++++++++----
.../filter-editor.component.html | 6 +--
.../filter-editor/filter-editor.component.ts | 28 +++++-------
4 files changed, 52 insertions(+), 31 deletions(-)
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 e4d7256e1..90893baee 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
@@ -5,7 +5,7 @@
Select
-
+
@@ -78,7 +78,7 @@
diff --git a/src-ui/src/app/components/document-list/document-list.component.ts b/src-ui/src/app/components/document-list/document-list.component.ts
index 1f29cb901..685d40a44 100644
--- a/src-ui/src/app/components/document-list/document-list.component.ts
+++ b/src-ui/src/app/components/document-list/document-list.component.ts
@@ -30,10 +30,6 @@ export class DocumentListComponent implements OnInit {
displayMode = 'smallCards' // largeCards, smallCards, details
- get isFiltered() {
- return this.list.filterRules?.length > 0
- }
-
getTitle() {
return this.list.savedViewTitle || $localize`Documents`
}
@@ -62,18 +58,16 @@ export class DocumentListComponent implements OnInit {
this.router.navigate(["404"])
return
}
-
this.list.savedView = view
- this.list.reload()
})
} else {
this.list.savedView = null
- this.list.reload()
}
+
+ this.list.reload()
})
}
-
loadViewConfig(view: PaperlessSavedView) {
this.list.load(view)
this.list.reload()
@@ -99,6 +93,7 @@ export class DocumentListComponent implements OnInit {
sort_reverse: this.list.sortReverse,
sort_field: this.list.sortField
}
+
this.savedViewService.create(savedView).subscribe(() => {
modal.close()
this.toastService.showInfo($localize`View "${savedView.name}" created successfully.`)
@@ -109,6 +104,40 @@ export class DocumentListComponent implements OnInit {
})
}
+ resetFilters(): void {
+ if (this.list.savedViewId) {
+ this.savedViewService.getCached(this.list.savedViewId).subscribe(viewUntouched => {
+ this.list.filterRules = viewUntouched.filter_rules
+ })
+ } else {
+ this.list.filterRules = []
+ }
+ this.list.reload()
+ }
+
+ get filterRulesModified(): boolean {
+ if (this.list.savedView == null) {
+ return this.list.filterRules.length > 0 // documents list is modified if it has any filters
+ } else {
+ // compare savedView current filters vs original
+ let modified = false
+ this.savedViewService.getCached(this.list.savedViewId).subscribe(view => {
+ let filterRulesInitial = view.filter_rules
+
+ if (this.list.filterRules.length !== filterRulesInitial.length) modified = true
+ else {
+ this.list.filterRules.forEach(rule => {
+ if (filterRulesInitial.find(fri => fri.rule_type == rule.rule_type && fri.value == rule.value) == undefined) modified = true
+ })
+ filterRulesInitial.forEach(rule => {
+ if (this.list.filterRules.find(fr => fr.rule_type == rule.rule_type && fr.value == rule.value) == undefined) modified = true
+ })
+ }
+ })
+ return modified
+ }
+ }
+
clickTag(tagID: number) {
this.list.selectNone()
setTimeout(() => {
diff --git a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.html b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.html
index efbf6ce7e..02a51238d 100644
--- a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.html
+++ b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.html
@@ -41,11 +41,11 @@
-
diff --git a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.ts b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.ts
index e6565beac..febb9dd84 100644
--- a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.ts
+++ b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.ts
@@ -40,7 +40,7 @@ export class FilterEditorComponent implements OnInit, OnDestroy {
case FILTER_HAS_TAG:
return $localize`Tag: ${this.tags.find(t => t.id == +rule.value)?.name}`
-
+
case FILTER_HAS_ANY_TAG:
if (rule.value == "false") {
return $localize`Without any tag`
@@ -127,7 +127,7 @@ export class FilterEditorComponent implements OnInit, OnDestroy {
} else {
this.tagSelectionModel.getSelectedItems().filter(tag => tag.id).forEach(tag => {
filterRules.push({rule_type: FILTER_HAS_TAG, value: tag.id?.toString()})
- })
+ })
}
this.correspondentSelectionModel.getSelectedItems().forEach(correspondent => {
filterRules.push({rule_type: FILTER_CORRESPONDENT, value: correspondent.id?.toString()})
@@ -153,16 +153,16 @@ export class FilterEditorComponent implements OnInit, OnDestroy {
@Output()
filterRulesChange = new EventEmitter()
+ @Output()
+ reset = new EventEmitter()
+
+ @Input()
+ rulesModified: boolean = false
+
updateRules() {
this.filterRulesChange.next(this.filterRules)
}
- hasFilters() {
- return this._titleFilter ||
- this.dateAddedAfter || this.dateAddedBefore || this.dateCreatedAfter || this.dateCreatedBefore ||
- this.tagSelectionModel.selectionSize() || this.correspondentSelectionModel.selectionSize() || this.documentTypeSelectionModel.selectionSize()
- }
-
get titleFilter() {
return this._titleFilter
}
@@ -194,16 +194,8 @@ export class FilterEditorComponent implements OnInit, OnDestroy {
this.titleFilterDebounce.complete()
}
- clearSelected() {
- this._titleFilter = ""
- this.tagSelectionModel.clear(false)
- this.documentTypeSelectionModel.clear(false)
- this.correspondentSelectionModel.clear(false)
- this.dateAddedBefore = null
- this.dateAddedAfter = null
- this.dateCreatedBefore = null
- this.dateCreatedAfter = null
- this.updateRules()
+ resetSelected() {
+ this.reset.next()
}
toggleTag(tagId: number) {