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 5634eaa6f..3d063356c 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 @@ -62,8 +62,22 @@ export class FilterableDropdownSelectionModel { } set items(items: MatchingModel[]) { - this._items = items - this.sortItems() + if (items) { + this._items = Array.from(items) + this._items.unshift({ + name: $localize`:Filter drop down element to filter for documents with no correspondent/type/tag assigned:Not assigned`, + id: + this.intersection === Intersection.Include + ? null + : NEGATIVE_NULL_FILTER_VALUE, + }) + this.sortItems() + } + } + + constructor(manyToOne: boolean = false, singleSelect: boolean = false) { + this.manyToOne = manyToOne + this.singleSelect = singleSelect } private sortItems() { @@ -249,7 +263,18 @@ export class FilterableDropdownSelectionModel { this.temporaryIntersection = intersection } + private checkForNullItem() { + console.log('checkForNullItem', this.items) + + if (this.temporaryIntersection === Intersection.Exclude) { + this.temporarySelectionStates.delete(null) + this.items.shift() + } + } + toggleIntersection() { + console.log('toggleIntersection') + if (this.temporarySelectionStates.size === 0) return let newState = this.intersection == Intersection.Include @@ -400,28 +425,13 @@ export class FilterableDropdownComponent filterText: string - @Input() - set items(items: MatchingModel[]) { - if (items) { - this._selectionModel.items = Array.from(items) - this._selectionModel.items.unshift({ - name: $localize`:Filter drop down element to filter for documents with no correspondent/type/tag assigned:Not assigned`, - id: - this.selectionModel.intersection === Intersection.Include - ? null - : NEGATIVE_NULL_FILTER_VALUE, - }) - } - } + _selectionModel: FilterableDropdownSelectionModel get items(): MatchingModel[] { return this._selectionModel.items } - _selectionModel: FilterableDropdownSelectionModel = - new FilterableDropdownSelectionModel() - - @Input() + @Input({ required: true }) set selectionModel(model: FilterableDropdownSelectionModel) { if (this.selectionModel) { this.selectionModel.changed.complete() @@ -442,11 +452,6 @@ export class FilterableDropdownComponent @Output() selectionModelChange = new EventEmitter() - @Input() - set manyToOne(manyToOne: boolean) { - this.selectionModel.manyToOne = manyToOne - } - get manyToOne() { return this.selectionModel.manyToOne } 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 f8d346cba..07b38a398 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 @@ -35,49 +35,48 @@
- @if (permissionsService.currentUserCan(PermissionAction.View, PermissionType.Tag) && tags.length > 0) { + @if (permissionsService.currentUserCan(PermissionAction.View, PermissionType.Tag) && tagSelectionModel.items.length > 0) { } - @if (permissionsService.currentUserCan(PermissionAction.View, PermissionType.Correspondent) && correspondents.length > 0) { + @if (permissionsService.currentUserCan(PermissionAction.View, PermissionType.Correspondent) && correspondentSelectionModel.items.length > 0) { } - @if (permissionsService.currentUserCan(PermissionAction.View, PermissionType.DocumentType) && documentTypes.length > 0) { + @if (permissionsService.currentUserCan(PermissionAction.View, PermissionType.DocumentType) && documentTypeSelectionModel.items.length > 0) { } - @if (permissionsService.currentUserCan(PermissionAction.View, PermissionType.StoragePath) && storagePaths.length > 0) { + @if (permissionsService.currentUserCan(PermissionAction.View, PermissionType.StoragePath) && storagePathSelectionModel.items.length > 0) { c.id == +rule.value)?.name + this.correspondentSelectionModel.items.find( + (c) => c.id == +rule.value + )?.name }` } else { return $localize`Without correspondent` @@ -262,7 +260,9 @@ export class FilterEditorComponent case FILTER_HAS_DOCUMENT_TYPE_ANY: if (rule.value) { return $localize`Document type: ${ - this.documentTypes.find((dt) => dt.id == +rule.value)?.name + this.documentTypeSelectionModel.items.find( + (dt) => dt.id == +rule.value + )?.name }` } else { return $localize`Without document type` @@ -272,7 +272,9 @@ export class FilterEditorComponent case FILTER_HAS_STORAGE_PATH_ANY: if (rule.value) { return $localize`Storage path: ${ - this.storagePaths.find((sp) => sp.id == +rule.value)?.name + this.storagePathSelectionModel.items.find( + (sp) => sp.id == +rule.value + )?.name }` } else { return $localize`Without storage path` @@ -280,7 +282,7 @@ export class FilterEditorComponent case FILTER_HAS_TAGS_ALL: return $localize`Tag: ${ - this.tags.find((t) => t.id == +rule.value)?.name + this.tagSelectionModel.items.find((t) => t.id == +rule.value)?.name }` case FILTER_HAS_ANY_TAG: @@ -327,10 +329,6 @@ export class FilterEditorComponent @ViewChild('textFilterInput') textFilterInput: ElementRef - tags: Tag[] = [] - correspondents: Correspondent[] = [] - documentTypes: DocumentType[] = [] - storagePaths: StoragePath[] = [] customFields: CustomField[] = [] tagDocumentCounts: SelectionDataItem[] @@ -371,7 +369,7 @@ export class FilterEditorComponent ) } - tagSelectionModel = new FilterableDropdownSelectionModel() + tagSelectionModel = new FilterableDropdownSelectionModel(true) correspondentSelectionModel = new FilterableDropdownSelectionModel() documentTypeSelectionModel = new FilterableDropdownSelectionModel() storagePathSelectionModel = new FilterableDropdownSelectionModel() @@ -1082,7 +1080,7 @@ export class FilterEditorComponent ) { this.loadingCountTotal++ this.tagService.listAll().subscribe((result) => { - this.tags = result.results + this.tagSelectionModel.items = result.results this.maybeCompleteLoading() }) } @@ -1094,7 +1092,7 @@ export class FilterEditorComponent ) { this.loadingCountTotal++ this.correspondentService.listAll().subscribe((result) => { - this.correspondents = result.results + this.correspondentSelectionModel.items = result.results this.maybeCompleteLoading() }) } @@ -1106,7 +1104,7 @@ export class FilterEditorComponent ) { this.loadingCountTotal++ this.documentTypeService.listAll().subscribe((result) => { - this.documentTypes = result.results + this.documentTypeSelectionModel.items = result.results this.maybeCompleteLoading() }) } @@ -1118,7 +1116,7 @@ export class FilterEditorComponent ) { this.loadingCountTotal++ this.storagePathService.listAll().subscribe((result) => { - this.storagePaths = result.results + this.storagePathSelectionModel.items = result.results this.maybeCompleteLoading() }) }