mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Fix sorting, add for others
This commit is contained in:
parent
a823bd1e92
commit
eb77a3af4a
@ -95,9 +95,17 @@ export class FilterableDropdownSelectionModel {
|
|||||||
|
|
||||||
private sortItems() {
|
private sortItems() {
|
||||||
this._items.sort((a, b) => {
|
this._items.sort((a, b) => {
|
||||||
if (a.id == null && b.id != null) {
|
if (
|
||||||
|
(a.id == null && b.id != null) ||
|
||||||
|
(a.id == NEGATIVE_NULL_FILTER_VALUE &&
|
||||||
|
b.id != NEGATIVE_NULL_FILTER_VALUE)
|
||||||
|
) {
|
||||||
return -1
|
return -1
|
||||||
} else if (a.id != null && b.id == null) {
|
} else if (
|
||||||
|
(a.id != null && b.id == null) ||
|
||||||
|
(a.id != NEGATIVE_NULL_FILTER_VALUE &&
|
||||||
|
b.id == NEGATIVE_NULL_FILTER_VALUE)
|
||||||
|
) {
|
||||||
return 1
|
return 1
|
||||||
} else if (
|
} else if (
|
||||||
this.getNonTemporary(a.id) == ToggleableItemState.NotSelected &&
|
this.getNonTemporary(a.id) == ToggleableItemState.NotSelected &&
|
||||||
|
@ -556,7 +556,10 @@ export class FilterEditorComponent
|
|||||||
: Intersection.Include
|
: Intersection.Include
|
||||||
this.correspondentSelectionModel.set(
|
this.correspondentSelectionModel.set(
|
||||||
rule.value ? +rule.value : null,
|
rule.value ? +rule.value : null,
|
||||||
ToggleableItemState.Selected,
|
this.correspondentSelectionModel.intersection ==
|
||||||
|
Intersection.Include
|
||||||
|
? ToggleableItemState.Selected
|
||||||
|
: ToggleableItemState.Excluded,
|
||||||
false
|
false
|
||||||
)
|
)
|
||||||
break
|
break
|
||||||
@ -578,6 +581,18 @@ export class FilterEditorComponent
|
|||||||
)
|
)
|
||||||
break
|
break
|
||||||
case FILTER_DOCUMENT_TYPE:
|
case FILTER_DOCUMENT_TYPE:
|
||||||
|
this.documentTypeSelectionModel.intersection =
|
||||||
|
rule.value == NEGATIVE_NULL_FILTER_VALUE.toString()
|
||||||
|
? Intersection.Exclude
|
||||||
|
: Intersection.Include
|
||||||
|
this.documentTypeSelectionModel.set(
|
||||||
|
rule.value ? +rule.value : null,
|
||||||
|
this.documentTypeSelectionModel.intersection == Intersection.Include
|
||||||
|
? ToggleableItemState.Selected
|
||||||
|
: ToggleableItemState.Excluded,
|
||||||
|
false
|
||||||
|
)
|
||||||
|
break
|
||||||
case FILTER_HAS_DOCUMENT_TYPE_ANY:
|
case FILTER_HAS_DOCUMENT_TYPE_ANY:
|
||||||
this.documentTypeSelectionModel.logicalOperator = LogicalOperator.Or
|
this.documentTypeSelectionModel.logicalOperator = LogicalOperator.Or
|
||||||
this.documentTypeSelectionModel.intersection = Intersection.Include
|
this.documentTypeSelectionModel.intersection = Intersection.Include
|
||||||
@ -596,6 +611,18 @@ export class FilterEditorComponent
|
|||||||
)
|
)
|
||||||
break
|
break
|
||||||
case FILTER_STORAGE_PATH:
|
case FILTER_STORAGE_PATH:
|
||||||
|
this.storagePathSelectionModel.intersection =
|
||||||
|
rule.value == NEGATIVE_NULL_FILTER_VALUE.toString()
|
||||||
|
? Intersection.Exclude
|
||||||
|
: Intersection.Include
|
||||||
|
this.storagePathSelectionModel.set(
|
||||||
|
rule.value ? +rule.value : null,
|
||||||
|
this.storagePathSelectionModel.intersection == Intersection.Include
|
||||||
|
? ToggleableItemState.Selected
|
||||||
|
: ToggleableItemState.Excluded,
|
||||||
|
false
|
||||||
|
)
|
||||||
|
break
|
||||||
case FILTER_HAS_STORAGE_PATH_ANY:
|
case FILTER_HAS_STORAGE_PATH_ANY:
|
||||||
this.storagePathSelectionModel.logicalOperator = LogicalOperator.Or
|
this.storagePathSelectionModel.logicalOperator = LogicalOperator.Or
|
||||||
this.storagePathSelectionModel.intersection = Intersection.Include
|
this.storagePathSelectionModel.intersection = Intersection.Include
|
||||||
|
Loading…
x
Reference in New Issue
Block a user