Enhancement: automatically refresh display list after custom field edit

This commit is contained in:
shamoon 2024-10-20 23:48:16 -07:00 committed by shamoon
commit f6548e0e55

View File

@ -15,6 +15,7 @@ import {
CustomFieldQueryLogicalOperator, CustomFieldQueryLogicalOperator,
CustomFieldQueryOperator, CustomFieldQueryOperator,
} from 'src/app/data/custom-field-query' } from 'src/app/data/custom-field-query'
import { SettingsService } from 'src/app/services/settings.service'
@Component({ @Component({
selector: 'pngx-custom-fields', selector: 'pngx-custom-fields',
@ -33,7 +34,8 @@ export class CustomFieldsComponent
public permissionsService: PermissionsService, public permissionsService: PermissionsService,
private modalService: NgbModal, private modalService: NgbModal,
private toastService: ToastService, private toastService: ToastService,
private documentListViewService: DocumentListViewService private documentListViewService: DocumentListViewService,
private settingsService: SettingsService
) { ) {
super() super()
} }
@ -62,6 +64,7 @@ export class CustomFieldsComponent
.subscribe((newField) => { .subscribe((newField) => {
this.toastService.showInfo($localize`Saved field "${newField.name}".`) this.toastService.showInfo($localize`Saved field "${newField.name}".`)
this.customFieldsService.clearCache() this.customFieldsService.clearCache()
this.settingsService.initializeDisplayFields()
this.reload() this.reload()
}) })
modal.componentInstance.failed modal.componentInstance.failed
@ -87,6 +90,7 @@ export class CustomFieldsComponent
modal.close() modal.close()
this.toastService.showInfo($localize`Deleted field`) this.toastService.showInfo($localize`Deleted field`)
this.customFieldsService.clearCache() this.customFieldsService.clearCache()
this.settingsService.initializeDisplayFields()
this.reload() this.reload()
}, },
error: (e) => { error: (e) => {