From 082bf6fb8e5d3a2bdef254b30ff092c1981b21a8 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 27 Jan 2025 00:02:56 -0800 Subject: [PATCH] Tweak: place 0 result items at bottom of filterable list (#8924) --- .../filterable-dropdown.component.spec.ts | 32 +++++++++++++++++++ .../filterable-dropdown.component.ts | 12 +++++++ 2 files changed, 44 insertions(+) diff --git a/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.spec.ts b/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.spec.ts index f402cbdce..6ba15eacd 100644 --- a/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.spec.ts +++ b/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.spec.ts @@ -496,6 +496,38 @@ describe('FilterableDropdownComponent & FilterableDropdownSelectionModel', () => ]) }) + it('selection model should sort items by state and document counts = 0, if set', () => { + const tagA = { id: 4, name: 'Tag A' } + component.items = items.concat([tagA]) + component.selectionModel = selectionModel + component.documentCounts = [ + { id: 1, document_count: 0 }, // Tag1 + { id: 2, document_count: 1 }, // Tag2 + { id: 4, document_count: 2 }, // Tag A + ] + component.selectionModel.apply() + expect(selectionModel.items).toEqual([ + nullItem, + tagA, + items[1], // Tag2 + items[0], // Tag1 + ]) + + selectionModel.toggle(items[1].id) + component.documentCounts = [ + { id: 1, document_count: 0 }, + { id: 2, document_count: 1 }, + { id: 4, document_count: 0 }, + ] + selectionModel.apply() + expect(selectionModel.items).toEqual([ + nullItem, + items[1], // Tag2 + tagA, + items[0], // Tag1 + ]) + }) + it('should set support create, keep open model and call createRef method', fakeAsync(() => { component.items = items component.icon = 'tag-fill' 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 73b7fd27b..4e3d280dc 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 @@ -81,6 +81,18 @@ export class FilterableDropdownSelectionModel { this.getNonTemporary(b.id) == ToggleableItemState.NotSelected ) { return -1 + } else if ( + this._documentCounts.length && + this.getDocumentCount(b.id) === 0 && + this.getDocumentCount(a.id) > this.getDocumentCount(b.id) + ) { + return -1 + } else if ( + this._documentCounts.length && + this.getDocumentCount(a.id) === 0 && + this.getDocumentCount(a.id) < this.getDocumentCount(b.id) + ) { + return 1 } else { return a.name.localeCompare(b.name) }