diff --git a/src-ui/src/app/components/common/input/tags/tags.component.html b/src-ui/src/app/components/common/input/tags/tags.component.html
index c7516a838..d5d5c4a7d 100644
--- a/src-ui/src/app/components/common/input/tags/tags.component.html
+++ b/src-ui/src/app/components/common/input/tags/tags.component.html
@@ -32,7 +32,7 @@
- @if (allowCreate) {
+ @if (allowCreate && !hideAddButton) {
diff --git a/src-ui/src/app/components/common/input/tags/tags.component.ts b/src-ui/src/app/components/common/input/tags/tags.component.ts
index d5cd70c9a..efbbb9a6e 100644
--- a/src-ui/src/app/components/common/input/tags/tags.component.ts
+++ b/src-ui/src/app/components/common/input/tags/tags.component.ts
@@ -74,6 +74,9 @@ export class TagsComponent implements OnInit, ControlValueAccessor {
@Input()
allowCreate: boolean = true
+ @Input()
+ hideAddButton: boolean = false
+
@Input()
showFilter: boolean = false
diff --git a/src-ui/src/app/components/document-detail/document-detail.component.html b/src-ui/src/app/components/document-detail/document-detail.component.html
index d970d93b3..84ab680b1 100644
--- a/src-ui/src/app/components/document-detail/document-detail.component.html
+++ b/src-ui/src/app/components/document-detail/document-detail.component.html
@@ -110,12 +110,12 @@
+ (createNew)="createCorrespondent($event)" [hideAddButton]="createDisabled(DataType.Correspondent)" [suggestions]="suggestions?.correspondents" *pngxIfPermissions="{ action: PermissionAction.View, type: PermissionType.Correspondent }">
+ (createNew)="createDocumentType($event)" [hideAddButton]="createDisabled(DataType.DocumentType)" [suggestions]="suggestions?.document_types" *pngxIfPermissions="{ action: PermissionAction.View, type: PermissionType.DocumentType }">
-
+ (createNew)="createStoragePath($event)" [hideAddButton]="createDisabled(DataType.StoragePath)" [suggestions]="suggestions?.storage_paths" i18n-placeholder placeholder="Default" *pngxIfPermissions="{ action: PermissionAction.View, type: PermissionType.StoragePath }">
+
@for (fieldInstance of document?.custom_fields; track fieldInstance.field; let i = $index) {
@switch (getCustomFieldFromInstance(fieldInstance)?.data_type) {
diff --git a/src-ui/src/app/components/document-detail/document-detail.component.scss b/src-ui/src/app/components/document-detail/document-detail.component.scss
index e5032d3f3..860c5722c 100644
--- a/src-ui/src/app/components/document-detail/document-detail.component.scss
+++ b/src-ui/src/app/components/document-detail/document-detail.component.scss
@@ -19,10 +19,6 @@
--page-border: 0;
}
-::ng-deep form .ng-select-taggable {
- max-width: calc(100% - 90px); // fudge factor for (2x) ng-select button width
-}
-
.btn-group .dropdown-toggle-split {
border-top-right-radius: inherit;
border-bottom-right-radius: inherit;
diff --git a/src-ui/src/app/components/document-detail/document-detail.component.spec.ts b/src-ui/src/app/components/document-detail/document-detail.component.spec.ts
index 1a1ba44ad..c9ba5dc6a 100644
--- a/src-ui/src/app/components/document-detail/document-detail.component.spec.ts
+++ b/src-ui/src/app/components/document-detail/document-detail.component.spec.ts
@@ -1244,4 +1244,20 @@ describe('DocumentDetailComponent', () => {
)
fixture.detectChanges()
}
+
+ it('createDisabled should return true if the user does not have permission to add the specified data type', () => {
+ currentUserCan = false
+ expect(component.createDisabled(DataType.Correspondent)).toBeTruthy()
+ expect(component.createDisabled(DataType.DocumentType)).toBeTruthy()
+ expect(component.createDisabled(DataType.StoragePath)).toBeTruthy()
+ expect(component.createDisabled(DataType.Tag)).toBeTruthy()
+ })
+
+ it('createDisabled should return false if the user has permission to add the specified data type', () => {
+ currentUserCan = true
+ expect(component.createDisabled(DataType.Correspondent)).toBeFalsy()
+ expect(component.createDisabled(DataType.DocumentType)).toBeFalsy()
+ expect(component.createDisabled(DataType.StoragePath)).toBeFalsy()
+ expect(component.createDisabled(DataType.Tag)).toBeFalsy()
+ })
})
diff --git a/src-ui/src/app/components/document-detail/document-detail.component.ts b/src-ui/src/app/components/document-detail/document-detail.component.ts
index d6cbdd57e..c971870da 100644
--- a/src-ui/src/app/components/document-detail/document-detail.component.ts
+++ b/src-ui/src/app/components/document-detail/document-detail.component.ts
@@ -651,6 +651,31 @@ export class DocumentDetailComponent
})
}
+ createDisabled(dataType: DataType) {
+ switch (dataType) {
+ case DataType.Correspondent:
+ return !this.permissionsService.currentUserCan(
+ PermissionAction.Add,
+ PermissionType.Correspondent
+ )
+ case DataType.DocumentType:
+ return !this.permissionsService.currentUserCan(
+ PermissionAction.Add,
+ PermissionType.DocumentType
+ )
+ case DataType.StoragePath:
+ return !this.permissionsService.currentUserCan(
+ PermissionAction.Add,
+ PermissionType.StoragePath
+ )
+ case DataType.Tag:
+ return !this.permissionsService.currentUserCan(
+ PermissionAction.Add,
+ PermissionType.Tag
+ )
+ }
+ }
+
discard() {
this.documentsService
.get(this.documentId)