Fix edit dialog error surfacing

This commit is contained in:
shamoon 2023-03-03 10:21:08 -08:00
parent f56ccec77f
commit c5a21a3b0e
3 changed files with 177 additions and 155 deletions

File diff suppressed because it is too large Load Diff

View File

@ -102,6 +102,7 @@ export abstract class EditDialogComponent<
}
save() {
this.error = null
const formValues = Object.assign({}, this.objectForm.value)
const permissionsObject: PermissionsFormObject =
this.objectForm.get('permissions_form')?.value
@ -131,7 +132,7 @@ export abstract class EditDialogComponent<
error: (error) => {
this.error = error.error
this.networkActive = false
this.succeeded.error(error)
this.succeeded.next(error)
},
})
}

View File

@ -28,6 +28,7 @@ import {
import { AbstractNameFilterService } from 'src/app/services/rest/abstract-name-filter-service'
import { ToastService } from 'src/app/services/toast.service'
import { ConfirmDialogComponent } from '../../common/confirm-dialog/confirm-dialog.component'
import { EditDialogComponent } from '../../common/edit-dialog/edit-dialog.component'
import { ComponentWithPermissions } from '../../with-permissions/with-permissions.component'
export interface ManagementListColumn {
@ -136,16 +137,22 @@ export abstract class ManagementListComponent<T extends ObjectWithId>
activeModal.componentInstance.dialogMode = 'create'
activeModal.componentInstance.succeeded.subscribe({
next: () => {
this.reloadData()
this.toastService.showInfo(
$localize`Successfully created ${this.typeName}.`
)
if (activeModal.componentInstance.error) {
this.toastService.showInfo(
$localize`Error occurred while creating ${this.typeName} : ${activeModal.componentInstance.error}.`
)
} else {
this.reloadData()
this.toastService.showInfo(
$localize`Successfully created ${this.typeName}.`
)
}
},
error: (e) => {
this.toastService.showInfo(
$localize`Error occurred while creating ${
this.typeName
} : ${e.toString()}.`
$localize`Error occurred while creating ${this.typeName} : ${
e.error ?? e.message ?? e.toString()
}.`
)
},
})
@ -159,10 +166,16 @@ export abstract class ManagementListComponent<T extends ObjectWithId>
activeModal.componentInstance.dialogMode = 'edit'
activeModal.componentInstance.succeeded.subscribe({
next: () => {
this.reloadData()
this.toastService.showInfo(
$localize`Successfully updated ${this.typeName}.`
)
if (activeModal.componentInstance.error) {
this.toastService.showInfo(
$localize`Error occurred while saving ${this.typeName} : ${activeModal.componentInstance.error}.`
)
} else {
this.reloadData()
this.toastService.showInfo(
$localize`Successfully updated ${this.typeName}.`
)
}
},
error: (e) => {
this.toastService.showInfo(