reference field ui fix
This commit is contained in:
parent
e665cbdfc6
commit
d01180ab87
|
@ -110,6 +110,7 @@ export interface DescriptionTemplateBaseFieldDataPersist {
|
|||
|
||||
export interface DescriptionTemplateReferenceTypeFieldPersist extends DescriptionTemplateLabelAndMultiplicityDataPersist {
|
||||
referenceTypeId: Guid;
|
||||
name: string;
|
||||
}
|
||||
|
||||
export interface DescriptionTemplateExternalDatasetDataPersist extends DescriptionTemplateLabelAndMultiplicityDataPersist {
|
||||
|
|
|
@ -238,7 +238,8 @@ export class DescriptionTemplateEditorCompositeFieldComponent extends BaseCompon
|
|||
if (editorField.data.fieldType === DescriptionTemplateFieldType.REFERENCE_TYPES) {
|
||||
convertedField.data = editorField.data;
|
||||
(convertedField.data as DescriptionTemplateReferenceTypeData).referenceType = {
|
||||
id: (editorField.data as DescriptionTemplateReferenceTypeFieldPersist).referenceTypeId
|
||||
id: (editorField.data as DescriptionTemplateReferenceTypeFieldPersist).referenceTypeId,
|
||||
name: (editorField.data as DescriptionTemplateReferenceTypeFieldPersist).name,
|
||||
};
|
||||
} else {
|
||||
convertedField.data = editorField.data;
|
||||
|
|
|
@ -1246,6 +1246,7 @@ export class DescriptionTemplateExternalDatasetDataEditorModel extends Descripti
|
|||
//
|
||||
export class DescriptionTemplateReferenceTypeDataEditorModel extends DescriptionTemplateLabelAndMultiplicityDataEditorModel implements DescriptionTemplateReferenceTypeFieldPersist {
|
||||
referenceTypeId: Guid;
|
||||
name: string;
|
||||
protected formBuilder: UntypedFormBuilder = new UntypedFormBuilder();
|
||||
|
||||
constructor(
|
||||
|
@ -1255,6 +1256,7 @@ export class DescriptionTemplateReferenceTypeDataEditorModel extends Description
|
|||
fromModel(item: DescriptionTemplateReferenceTypeData): DescriptionTemplateReferenceTypeDataEditorModel {
|
||||
if (item) {
|
||||
super.fromModel(item);
|
||||
this.name = item.referenceType?.name;
|
||||
this.referenceTypeId = item.referenceType?.id;
|
||||
}
|
||||
return this;
|
||||
|
@ -1275,6 +1277,7 @@ export class DescriptionTemplateReferenceTypeDataEditorModel extends Description
|
|||
|
||||
const formGroup = super.buildForm({ context, disabled, rootPath });
|
||||
formGroup.setControl('referenceTypeId', new FormControl({ value: this.referenceTypeId, disabled: disabled }, context.getValidation('referenceTypeId').validators));
|
||||
formGroup.setControl('name', new FormControl({ value: this.name, disabled: disabled }));
|
||||
return formGroup;
|
||||
}
|
||||
|
||||
|
|
|
@ -129,13 +129,12 @@ export class ReferenceFieldComponent extends BaseComponent implements OnInit, On
|
|||
}
|
||||
|
||||
addReference() {
|
||||
|
||||
const dialogRef = this.dialog.open(ReferenceDialogEditorComponent, {
|
||||
minWidth: '49%',
|
||||
restoreFocus: false,
|
||||
data: {
|
||||
referenceTypeId: this.referenceType.id,
|
||||
label: this.label ?? this.referenceType.name,
|
||||
label: this.label && this.label !== '' ? this.label : this.referenceType.name,
|
||||
},
|
||||
});
|
||||
dialogRef.afterClosed()
|
||||
|
|
Loading…
Reference in New Issue