mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
More efficient rule equivalency checking
This commit is contained in:
parent
ac459b84c6
commit
858bca0f7d
@ -121,7 +121,7 @@ export class DocumentListComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
|
|
||||||
resetFilters(): void {
|
resetFilters(): void {
|
||||||
this.filterRulesModified = false;
|
this.filterRulesModified = false
|
||||||
if (this.list.savedViewId) {
|
if (this.list.savedViewId) {
|
||||||
this.savedViewService.getCached(this.list.savedViewId).subscribe(viewUntouched => {
|
this.savedViewService.getCached(this.list.savedViewId).subscribe(viewUntouched => {
|
||||||
this.list.filterRules = viewUntouched.filter_rules
|
this.list.filterRules = viewUntouched.filter_rules
|
||||||
@ -144,12 +144,16 @@ export class DocumentListComponent implements OnInit {
|
|||||||
|
|
||||||
if (this.list.filterRules.length !== filterRulesInitial.length) modified = true
|
if (this.list.filterRules.length !== filterRulesInitial.length) modified = true
|
||||||
else {
|
else {
|
||||||
this.list.filterRules.forEach(rule => {
|
modified = this.list.filterRules.some(rule => {
|
||||||
if (filterRulesInitial.find(fri => fri.rule_type == rule.rule_type && fri.value == rule.value) == undefined) modified = true
|
return (filterRulesInitial.find(fri => fri.rule_type == rule.rule_type && fri.value == rule.value) == undefined)
|
||||||
})
|
|
||||||
filterRulesInitial.forEach(rule => {
|
|
||||||
if (this.list.filterRules.find(fr => fr.rule_type == rule.rule_type && fr.value == rule.value) == undefined) modified = true
|
|
||||||
})
|
})
|
||||||
|
|
||||||
|
if (!modified) {
|
||||||
|
// only check other direction if we havent already determined is modified
|
||||||
|
modified = filterRulesInitial.some(rule => {
|
||||||
|
this.list.filterRules.find(fr => fr.rule_type == rule.rule_type && fr.value == rule.value) == undefined
|
||||||
|
})
|
||||||
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user