From eb77a3af4a50f9da5af1878e4dc0beb5b6df14a3 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 17 Mar 2025 15:02:25 -0700 Subject: [PATCH] Fix sorting, add for others --- .../filterable-dropdown.component.ts | 12 ++++++-- .../filter-editor/filter-editor.component.ts | 29 ++++++++++++++++++- 2 files changed, 38 insertions(+), 3 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 b8de6d1c8..811974357 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 @@ -95,9 +95,17 @@ export class FilterableDropdownSelectionModel { private sortItems() { 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 - } 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 } else if ( this.getNonTemporary(a.id) == ToggleableItemState.NotSelected && 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 139413484..160dbbcdd 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 @@ -556,7 +556,10 @@ export class FilterEditorComponent : Intersection.Include this.correspondentSelectionModel.set( rule.value ? +rule.value : null, - ToggleableItemState.Selected, + this.correspondentSelectionModel.intersection == + Intersection.Include + ? ToggleableItemState.Selected + : ToggleableItemState.Excluded, false ) break @@ -578,6 +581,18 @@ export class FilterEditorComponent ) break 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: this.documentTypeSelectionModel.logicalOperator = LogicalOperator.Or this.documentTypeSelectionModel.intersection = Intersection.Include @@ -596,6 +611,18 @@ export class FilterEditorComponent ) break 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: this.storagePathSelectionModel.logicalOperator = LogicalOperator.Or this.storagePathSelectionModel.intersection = Intersection.Include