reversed description-template reference type preview changes
This commit is contained in:
parent
035c50872b
commit
9c00938640
|
@ -110,7 +110,6 @@ export interface DescriptionTemplateBaseFieldDataPersist {
|
||||||
|
|
||||||
export interface DescriptionTemplateReferenceTypeFieldPersist extends DescriptionTemplateLabelAndMultiplicityDataPersist {
|
export interface DescriptionTemplateReferenceTypeFieldPersist extends DescriptionTemplateLabelAndMultiplicityDataPersist {
|
||||||
referenceTypeId: Guid;
|
referenceTypeId: Guid;
|
||||||
name: string;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface DescriptionTemplateExternalDatasetDataPersist extends DescriptionTemplateLabelAndMultiplicityDataPersist {
|
export interface DescriptionTemplateExternalDatasetDataPersist extends DescriptionTemplateLabelAndMultiplicityDataPersist {
|
||||||
|
|
|
@ -238,8 +238,7 @@ export class DescriptionTemplateEditorCompositeFieldComponent extends BaseCompon
|
||||||
if (editorField.data.fieldType === DescriptionTemplateFieldType.REFERENCE_TYPES) {
|
if (editorField.data.fieldType === DescriptionTemplateFieldType.REFERENCE_TYPES) {
|
||||||
convertedField.data = editorField.data;
|
convertedField.data = editorField.data;
|
||||||
(convertedField.data as DescriptionTemplateReferenceTypeData).referenceType = {
|
(convertedField.data as DescriptionTemplateReferenceTypeData).referenceType = {
|
||||||
id: (editorField.data as DescriptionTemplateReferenceTypeFieldPersist).referenceTypeId,
|
id: (editorField.data as DescriptionTemplateReferenceTypeFieldPersist).referenceTypeId
|
||||||
name: (editorField.data as DescriptionTemplateReferenceTypeFieldPersist).name,
|
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
convertedField.data = editorField.data;
|
convertedField.data = editorField.data;
|
||||||
|
|
|
@ -1246,7 +1246,6 @@ export class DescriptionTemplateExternalDatasetDataEditorModel extends Descripti
|
||||||
//
|
//
|
||||||
export class DescriptionTemplateReferenceTypeDataEditorModel extends DescriptionTemplateLabelAndMultiplicityDataEditorModel implements DescriptionTemplateReferenceTypeFieldPersist {
|
export class DescriptionTemplateReferenceTypeDataEditorModel extends DescriptionTemplateLabelAndMultiplicityDataEditorModel implements DescriptionTemplateReferenceTypeFieldPersist {
|
||||||
referenceTypeId: Guid;
|
referenceTypeId: Guid;
|
||||||
name: string;
|
|
||||||
protected formBuilder: UntypedFormBuilder = new UntypedFormBuilder();
|
protected formBuilder: UntypedFormBuilder = new UntypedFormBuilder();
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
|
@ -1256,7 +1255,6 @@ export class DescriptionTemplateReferenceTypeDataEditorModel extends Description
|
||||||
fromModel(item: DescriptionTemplateReferenceTypeData): DescriptionTemplateReferenceTypeDataEditorModel {
|
fromModel(item: DescriptionTemplateReferenceTypeData): DescriptionTemplateReferenceTypeDataEditorModel {
|
||||||
if (item) {
|
if (item) {
|
||||||
super.fromModel(item);
|
super.fromModel(item);
|
||||||
this.name = item.referenceType?.name;
|
|
||||||
this.referenceTypeId = item.referenceType?.id;
|
this.referenceTypeId = item.referenceType?.id;
|
||||||
}
|
}
|
||||||
return this;
|
return this;
|
||||||
|
@ -1277,7 +1275,6 @@ export class DescriptionTemplateReferenceTypeDataEditorModel extends Description
|
||||||
|
|
||||||
const formGroup = super.buildForm({ context, disabled, rootPath });
|
const formGroup = super.buildForm({ context, disabled, rootPath });
|
||||||
formGroup.setControl('referenceTypeId', new FormControl({ value: this.referenceTypeId, disabled: disabled }, context.getValidation('referenceTypeId').validators));
|
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;
|
return formGroup;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue