fix delete dialogs

This commit is contained in:
Jonas Winkler 2020-10-27 17:33:57 +01:00
parent c26962f17f
commit 9089ed69c0
4 changed files with 15 additions and 1 deletions

View File

@ -17,4 +17,7 @@ export class CorrespondentListComponent extends GenericListComponent<PaperlessCo
super(correspondentsService,modalService,CorrespondentEditDialogComponent)
}
getObjectName(object: PaperlessCorrespondent) {
return `correspondent '${object.name}'`
}
}

View File

@ -16,4 +16,7 @@ export class DocumentTypeListComponent extends GenericListComponent<PaperlessDoc
super(service, modalService, DocumentTypeEditDialogComponent)
}
getObjectName(object: PaperlessDocumentType) {
return `document type '${object.name}'`
}
}

View File

@ -47,9 +47,13 @@ export abstract class GenericListComponent<T extends ObjectWithId> implements On
})
}
getObjectName(object: T) {
return object.toString()
}
openDeleteDialog(object: T) {
var activeModal = this.modalService.open(DeleteDialogComponent, {backdrop: 'static'})
activeModal.componentInstance.message = `Do you really want to delete ${object}?`
activeModal.componentInstance.message = `Do you really want to delete ${this.getObjectName(object)}?`
activeModal.componentInstance.message2 = "Associated documents will not be deleted."
activeModal.componentInstance.deleteClicked.subscribe(() => {
this.service.delete(object).subscribe(_ => {

View File

@ -20,4 +20,8 @@ export class TagListComponent extends GenericListComponent<PaperlessTag> {
getColor(id) {
return PaperlessTag.COLOURS.find(c => c.id == id)
}
getObjectName(object: PaperlessTag) {
return `tag '${object.name}'`
}
}