From eadcc6ba2e7f1ac6f5298a8ffb8293a36b3c4859 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 17 Mar 2025 15:09:42 -0700 Subject: [PATCH] Fix the bulk editor [ci skip] --- .../filterable-dropdown.component.ts | 3 +- .../bulk-editor/bulk-editor.component.html | 5 --- .../bulk-editor/bulk-editor.component.ts | 32 +++++++++---------- 3 files changed, 16 insertions(+), 24 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 811974357..1b31fe568 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 @@ -88,9 +88,8 @@ export class FilterableDropdownSelectionModel { } } - constructor(manyToOne: boolean = false, singleSelect: boolean = false) { + constructor(manyToOne: boolean = false) { this.manyToOne = manyToOne - this.singleSelect = singleSelect } private sortItems() { diff --git a/src-ui/src/app/components/document-list/bulk-editor/bulk-editor.component.html b/src-ui/src/app/components/document-list/bulk-editor/bulk-editor.component.html index ac8f476c7..607d5f3cc 100644 --- a/src-ui/src/app/components/document-list/bulk-editor/bulk-editor.component.html +++ b/src-ui/src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -20,10 +20,8 @@ @if (permissionService.currentUserCan(PermissionAction.View, PermissionType.Tag)) { (this.tags = result.results)) + .subscribe((result) => (this.tagSelectionModel.items = result.results)) } if ( this.permissionService.currentUserCan( @@ -187,7 +179,9 @@ export class BulkEditorComponent this.correspondentService .listAll() .pipe(first()) - .subscribe((result) => (this.correspondents = result.results)) + .subscribe( + (result) => (this.correspondentSelectionModel.items = result.results) + ) } if ( this.permissionService.currentUserCan( @@ -198,7 +192,9 @@ export class BulkEditorComponent this.documentTypeService .listAll() .pipe(first()) - .subscribe((result) => (this.documentTypes = result.results)) + .subscribe( + (result) => (this.documentTypeSelectionModel.items = result.results) + ) } if ( this.permissionService.currentUserCan( @@ -209,7 +205,9 @@ export class BulkEditorComponent this.storagePathService .listAll() .pipe(first()) - .subscribe((result) => (this.storagePaths = result.results)) + .subscribe( + (result) => (this.storagePathsSelectionModel.items = result.results) + ) } if ( this.permissionService.currentUserCan( @@ -651,7 +649,7 @@ export class BulkEditorComponent ) .pipe(takeUntil(this.unsubscribeNotifier)) .subscribe(({ newTag, tags }) => { - this.tags = tags.results + this.tagSelectionModel.items = tags.results this.tagSelectionModel.toggle(newTag.id) }) } @@ -674,7 +672,7 @@ export class BulkEditorComponent ) .pipe(takeUntil(this.unsubscribeNotifier)) .subscribe(({ newCorrespondent, correspondents }) => { - this.correspondents = correspondents.results + this.correspondentSelectionModel.items = correspondents.results this.correspondentSelectionModel.toggle(newCorrespondent.id) }) } @@ -695,7 +693,7 @@ export class BulkEditorComponent ) .pipe(takeUntil(this.unsubscribeNotifier)) .subscribe(({ newDocumentType, documentTypes }) => { - this.documentTypes = documentTypes.results + this.documentTypeSelectionModel.items = documentTypes.results this.documentTypeSelectionModel.toggle(newDocumentType.id) }) } @@ -716,7 +714,7 @@ export class BulkEditorComponent ) .pipe(takeUntil(this.unsubscribeNotifier)) .subscribe(({ newStoragePath, storagePaths }) => { - this.storagePaths = storagePaths.results + this.storagePathsSelectionModel.items = storagePaths.results this.storagePathsSelectionModel.toggle(newStoragePath.id) }) }