From 16a9fce0e104a38371a9e5a567ec611ae3fc7f33 Mon Sep 17 00:00:00 2001 From: ys9693 Date: Sun, 19 Jan 2020 13:50:02 +0200 Subject: Catalog alignment Issue-ID: SDC-2724 Signed-off-by: ys9693 Change-Id: I52b4aacb58cbd432ca0e1ff7ff1f7dd52099c6fe --- catalog-ui/src/app/models/components/component.ts | 514 +--------------------- 1 file changed, 4 insertions(+), 510 deletions(-) (limited to 'catalog-ui/src/app/models/components/component.ts') diff --git a/catalog-ui/src/app/models/components/component.ts b/catalog-ui/src/app/models/components/component.ts index 8f0fa33c42..b76d29c8c6 100644 --- a/catalog-ui/src/app/models/components/component.ts +++ b/catalog-ui/src/app/models/components/component.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -48,67 +48,33 @@ export interface IComponent { createComponentOnServer():ng.IPromise; changeLifecycleState(state:string, commentObj:AsdcComment):ng.IPromise; validateName(newName:string):ng.IPromise; - updateRequirementsCapabilities():ng.IPromise; //Artifacts API addOrUpdateArtifact(artifact:ArtifactModel):ng.IPromise; - updateMultipleArtifacts(artifacts:Array):ng.IPromise; deleteArtifact(artifactId:string, artifactLabel:string):ng.IPromise; downloadInstanceArtifact(artifactId:string):ng.IPromise; downloadArtifact(artifactId:string):ng.IPromise; - getArtifactByGroupType(artifactGroupType:string):ng.IPromise; - //Property API addOrUpdateProperty(property:PropertyModel):ng.IPromise; deleteProperty(propertyId:string):ng.IPromise; - updateInstanceProperties(componentInstanceId:string, properties:PropertyModel[]):ng.IPromise; //Attribute API deleteAttribute(attributeId:string):ng.IPromise; addOrUpdateAttribute(attribute:AttributeModel):ng.IPromise; - updateInstanceAttribute(attribute:AttributeModel):ng.IPromise; - - - - - //Component Instance API - createComponentInstance(componentInstance:ComponentInstance):ng.IPromise; - deleteComponentInstance(componentInstanceId:string):ng.IPromise; - addOrUpdateInstanceArtifact(artifact:ArtifactModel):ng.IPromise; - deleteInstanceArtifact(artifactId:string, artifactLabel:string):ng.IPromise; - uploadInstanceEnvFile(artifact:ArtifactModel):ng.IPromise; - checkComponentInstanceVersionChange(componentUid:string):ng.IPromise; - changeComponentInstanceVersion(componentUid:string):ng.IPromise; - updateComponentInstance(componentInstance:ComponentInstance):ng.IPromise; - updateMultipleComponentInstances(instances:Array):ng.IPromise>; - - //Inputs API - getComponentInstanceInputProperties(componentInstanceId:string, inputId:string):ng.IPromise> - getComponentInstanceProperties(componentInstanceId:string):ng.IPromise> - getComponentInputs(componentId:string):ng.IPromise>; - - createRelation(link:RelationshipModel):ng.IPromise; - deleteRelation(link:RelationshipModel):ng.IPromise; - fetchRelation(linkId:string):ng.IPromise; - //Modules getModuleForDisplay(moduleId:string):ng.IPromise; getModuleInstanceForDisplay(componentInstanceId:string, moduleId:string):ng.IPromise; updateGroupMetadata(group:Module):ng.IPromise; - //---------------------------------------------- HELP FUNCTIONS ----------------------------------------------------// - - getComponentSubType():string; isAlreadyCertified():boolean; isService():boolean; isResource():boolean; isComplex():boolean; - getAdditionalInformation():Array; getAllVersionsAsSortedArray():Array; getStatus(sdcMenu:IAppMenu):string; } @@ -161,7 +127,6 @@ export abstract class Component implements IComponent { public interfaces:any; public normalizedName:string; public systemName:string; - public projectCode:string; public policies:Array; public groupInstances:Array public modules:Array; @@ -176,6 +141,7 @@ export abstract class Component implements IComponent { public showMenu:boolean; public archived:boolean; public vspArchived: boolean; + public componentMetadata: ComponentMetadata; constructor(componentService:IComponentService, protected $q:ng.IQService, component?:Component) { if (component) { @@ -220,7 +186,6 @@ export abstract class Component implements IComponent { this.interfaces = component.interfaces; this.normalizedName = component.normalizedName; this.systemName = component.systemName; - this.projectCode = component.projectCode; this.inputs = component.inputs; this.componentInstances = CommonUtils.initComponentInstances(component.componentInstances); this.properties = CommonUtils.initProperties(component.properties, this.uniqueId); @@ -243,11 +208,6 @@ export abstract class Component implements IComponent { this.uniqueId = uniqueId; }; - public setSelectedInstance = (componentInstance:ComponentInstance):void => { - this.selectedInstance = componentInstance; - }; - - //------------------------------------------ API Calls ----------------------------------------------------------------// public changeLifecycleState = (state:string, commentObj:AsdcComment):ng.IPromise => { let deferred = this.$q.defer(); @@ -302,23 +262,6 @@ export abstract class Component implements IComponent { return deferred.promise; }; - public updateMultipleArtifacts = (artifacts:Array):ng.IPromise=> { - let deferred = this.$q.defer(); - let onSuccess = (response:any):void => { - deferred.resolve(response); - }; - let onError = (error:any):void => { - deferred.reject(error); - }; - let q = new QueueUtils(this.$q); - - _.forEach(artifacts, (artifact)=> { - q.addBlockingUIAction(()=> this.addOrUpdateArtifact(artifact).then(onSuccess, onError)); - }); - return deferred.promise; - }; - - public deleteArtifact = (artifactId:string, artifactLabel:string):ng.IPromise => { let deferred = this.$q.defer(); let onSuccess = (artifactObj:ArtifactModel):void => { @@ -336,32 +279,6 @@ export abstract class Component implements IComponent { return deferred.promise; }; - public getArtifactByGroupType = (artifactGroupType:string):ng.IPromise => { - - let deferred = this.$q.defer(); - let onSuccess = (response:ArtifactGroupModel):void => { - deferred.resolve(response); - }; - let onFailed = (error:any):void => { - deferred.reject(error); - }; - this.componentService.getArtifactByGroupType(this.uniqueId, artifactGroupType).then(onSuccess, onFailed); - return deferred.promise; - }; - - public getComponentInstanceArtifactsByGroupType = (componentInstanceId:string, artifactGroupType:string):ng.IPromise => { - - let deferred = this.$q.defer(); - let onSuccess = (response:ArtifactGroupModel):void => { - deferred.resolve(response); - }; - let onFailed = (error:any):void => { - deferred.reject(error); - }; - this.componentService.getComponentInstanceArtifactsByGroupType(this.uniqueId, componentInstanceId, artifactGroupType).then(onSuccess, onFailed); - return deferred.promise; - }; - public addOrUpdateProperty = (property:PropertyModel):ng.IPromise => { let deferred = this.$q.defer(); @@ -446,348 +363,10 @@ export abstract class Component implements IComponent { return deferred.promise; }; - - public updateInstancePropertiesSuccess = (newProperties:PropertyModel[]):void => { - newProperties.forEach((newProperty) => { - // find exist instance property in parent component for update the new value ( find bu uniqueId & path) - let existProperty: PropertyModel = _.find(this.componentInstancesProperties[newProperty.resourceInstanceUniqueId], { - uniqueId: newProperty.uniqueId, - path: newProperty.path - }); - let index = this.componentInstancesProperties[newProperty.resourceInstanceUniqueId].indexOf(existProperty); - this.componentInstancesProperties[newProperty.resourceInstanceUniqueId][index] = newProperty; - }); - } - - public updateInstanceProperties = (componentInstanceId:string, properties:PropertyModel[]):ng.IPromise => { - let deferred = this.$q.defer(); - let onSuccess = (newProperties:PropertyModel[]):void => { - this.updateInstancePropertiesSuccess(newProperties); - deferred.resolve(newProperties); - }; - let onFailed = (error:any):void => { - console.log('Failed to update property value'); - deferred.reject(error); - }; - this.componentService.updateInstanceProperties(this.uniqueId, componentInstanceId, properties).then(onSuccess, onFailed); - return deferred.promise; - }; - - public updateInstanceAttribute = (attribute:AttributeModel):ng.IPromise => { - let deferred = this.$q.defer(); - let onSuccess = (newAttribute:AttributeModel):void => { - let existAttribute:AttributeModel = _.find(this.componentInstancesAttributes[newAttribute.resourceInstanceUniqueId], {uniqueId: newAttribute.uniqueId}); - let index = this.componentInstancesAttributes[newAttribute.resourceInstanceUniqueId].indexOf(existAttribute); - this.componentInstancesAttributes[newAttribute.resourceInstanceUniqueId][index] = newAttribute; - deferred.resolve(newAttribute); - }; - let onFailed = (error:any):void => { - console.log('Failed to update attribute value'); - deferred.reject(error); - }; - this.componentService.updateInstanceAttribute(this.uniqueId, attribute).then(onSuccess, onFailed); - return deferred.promise; - }; - public downloadInstanceArtifact = (artifactId:string):ng.IPromise => { return this.componentService.downloadInstanceArtifact(this.uniqueId, this.selectedInstance.uniqueId, artifactId); }; - public deleteInstanceArtifact = (artifactId:string, artifactLabel:string):ng.IPromise => { - let deferred = this.$q.defer(); - let onSuccess = (artifactObj:ArtifactModel):void => { - let newArtifact = new ArtifactModel(artifactObj); - let artifacts = this.selectedInstance.deploymentArtifacts; - if (newArtifact.mandatory || newArtifact.serviceApi) {//????????? - artifacts[newArtifact.artifactLabel] = newArtifact; - } - else { - delete artifacts[artifactLabel]; - } - deferred.resolve(newArtifact); - }; - this.componentService.deleteInstanceArtifact(this.uniqueId, this.selectedInstance.uniqueId, artifactId, artifactLabel).then(onSuccess); - return deferred.promise; - }; - - public addOrUpdateInstanceArtifact = (artifact:ArtifactModel):ng.IPromise => { - let deferred = this.$q.defer(); - let onSuccess = (artifactObj:ArtifactModel):void => { - switch (artifactObj.artifactGroupType) { - case ArtifactGroupType.DEPLOYMENT: - this.selectedInstance.deploymentArtifacts[artifactObj.artifactLabel] = artifactObj; - break; - case ArtifactGroupType.INFORMATION: - this.selectedInstance.artifacts[artifactObj.artifactLabel] = artifactObj; - break; - } - deferred.resolve(artifactObj); - }; - let onError = (error:any):void => { - deferred.reject(error); - }; - if (artifact.uniqueId) { - this.componentService.updateInstanceArtifact(this.uniqueId, this.selectedInstance.uniqueId, artifact).then(onSuccess, onError); - } else { - this.componentService.addInstanceArtifact(this.uniqueId, this.selectedInstance.uniqueId, artifact).then(onSuccess, onError); - } - return deferred.promise; - }; - - public uploadInstanceEnvFile = (artifact:ArtifactModel):ng.IPromise => { - let deferred = this.$q.defer(); - let onSuccess = (artifactObj:ArtifactModel):void => { - this.selectedInstance.deploymentArtifacts[artifactObj.artifactLabel] = artifactObj; - deferred.resolve(artifactObj); - }; - let onError = (error:any):void => { - deferred.reject(error); - }; - this.componentService.uploadInstanceEnvFile(this.uniqueId, this.selectedInstance.uniqueId, artifact).then(onSuccess, onError); - return deferred.promise; - }; - - //this function will update the instance version than the function call getComponent to update the current component and return the new instance version - public changeComponentInstanceVersion = (componentUid:string):ng.IPromise => { - let deferred = this.$q.defer(); - let onFailed = (error:any):void => { - deferred.reject(error); - }; - let onSuccess = (componentInstance:ComponentInstance):void => { - let onSuccess = (component:Component):void => { - component.setSelectedInstance(componentInstance); - deferred.resolve(component); - }; - this.getComponent().then(onSuccess, onFailed); - }; - this.componentService.changeResourceInstanceVersion(this.uniqueId, this.selectedInstance.uniqueId, componentUid).then(onSuccess, onFailed); - return deferred.promise; - }; - - public checkComponentInstanceVersionChange = (componentUid:string):ng.IPromise => { - return this.componentService.checkResourceInstanceVersionChange(this.uniqueId, this.selectedInstance.uniqueId, componentUid); - }; - - public createComponentInstance = (componentInstance:ComponentInstance):ng.IPromise => { - let deferred = this.$q.defer(); - let onSuccess = (instance:ComponentInstance):void => { - this.componentInstances.push(instance); - deferred.resolve(instance); - }; - let onFailed = (error:any):void => { - deferred.reject(error); - }; - this.componentService.createComponentInstance(this.uniqueId, componentInstance).then(onSuccess, onFailed); - return deferred.promise; - }; - - public updateComponentInstance = (componentInstance:ComponentInstance):ng.IPromise => { - let deferred = this.$q.defer(); - let onSuccess = (updatedInstance:ComponentInstance):void => { - let componentInstance:ComponentInstance = _.find(this.componentInstances, (instance:ComponentInstance) => { - return instance.uniqueId === updatedInstance.uniqueId; - }); - - let index = this.componentInstances.indexOf(componentInstance); - this.componentInstances[index] = componentInstance; - deferred.resolve(updatedInstance); - - }; - let onFailed = (error:any):void => { - deferred.reject(error); - }; - this.componentService.updateComponentInstance(this.uniqueId, componentInstance).then(onSuccess, onFailed); - return deferred.promise; - }; - - public updateMultipleComponentInstances = (instances:Array):ng.IPromise> => { - let deferred = this.$q.defer>(); - let onSuccess = (updatedInstances:Array):void => { - _.forEach(updatedInstances, (updatedComponentInstance) => { - let componentInstance:ComponentInstance = _.find(this.componentInstances, (instance:ComponentInstance) => { - return instance.uniqueId === updatedComponentInstance.uniqueId; - }); - - let index = this.componentInstances.indexOf(componentInstance); - this.componentInstances[index] = componentInstance; - - }); - deferred.resolve(updatedInstances); - - }; - let onFailed = (error:any):void => { - deferred.reject(error); - }; - this.componentService.updateMultipleComponentInstances(this.uniqueId, instances).then(onSuccess, onFailed); - return deferred.promise; - }; - - public deleteComponentInstance = (componentInstanceId:string):ng.IPromise => { - let deferred = this.$q.defer(); - let onSuccess = ():void => { - let onSuccess = (component:Component):void => { - this.componentInstances = CommonUtils.initComponentInstances(component.componentInstances); - this.componentInstancesProperties = new PropertiesGroup(component.componentInstancesProperties); - this.componentInstancesAttributes = new AttributesGroup(component.componentInstancesAttributes); - this.modules = component.modules; - this.componentInstancesRelations = CommonUtils.initComponentInstanceRelations(component.componentInstancesRelations); - deferred.resolve(); - }; - this.getComponent().then(onSuccess); - }; - let onFailed = (error:any):void => { - deferred.reject(error); - }; - this.componentService.deleteComponentInstance(this.uniqueId, componentInstanceId).then(onSuccess, onFailed); - return deferred.promise; - }; - - - public syncComponentByRelation(relation:RelationshipModel) { - relation.relationships.forEach((rel) => { - if (rel.capability) { - const toComponentInstance:ComponentInstance = this.componentInstances.find((inst) => inst.uniqueId === relation.toNode); - const toComponentInstanceCapability:Capability = toComponentInstance.findCapability( - rel.capability.type, rel.capability.uniqueId, rel.capability.ownerId, rel.capability.name); - const isCapabilityFulfilled:boolean = rel.capability.isFulfilled(); - if (isCapabilityFulfilled && toComponentInstanceCapability) { - // if capability is fulfilled and in component, then remove it - console.log('Capability is fulfilled', rel.capability.getFullTitle(), rel.capability.leftOccurrences); - toComponentInstance.capabilities[rel.capability.type].splice( - toComponentInstance.capabilities[rel.capability.type].findIndex((cap) => cap === toComponentInstanceCapability), 1 - ) - } else if (!isCapabilityFulfilled && !toComponentInstanceCapability) { - // if capability is unfulfilled and not in component, then add it - console.log('Capability is unfulfilled', rel.capability.getFullTitle(), rel.capability.leftOccurrences); - toComponentInstance.capabilities[rel.capability.type].push(rel.capability); - } - } - if (rel.requirement) { - const fromComponentInstance:ComponentInstance = this.componentInstances.find((inst) => inst.uniqueId === relation.fromNode); - const fromComponentInstanceRequirement:Requirement = fromComponentInstance.findRequirement( - rel.requirement.capability, rel.requirement.uniqueId, rel.requirement.ownerId, rel.requirement.name); - const isRequirementFulfilled:boolean = rel.requirement.isFulfilled(); - if (isRequirementFulfilled && fromComponentInstanceRequirement) { - // if requirement is fulfilled and in component, then remove it - console.log('Requirement is fulfilled', rel.requirement.getFullTitle(), rel.requirement.leftOccurrences); - fromComponentInstance.requirements[rel.requirement.capability].splice( - fromComponentInstance.requirements[rel.requirement.capability].findIndex((req) => req === fromComponentInstanceRequirement), 1 - ) - } else if (!isRequirementFulfilled && !fromComponentInstanceRequirement) { - // if requirement is unfulfilled and not in component, then add it - console.log('Requirement is unfulfilled', rel.requirement.getFullTitle(), rel.requirement.leftOccurrences); - fromComponentInstance.requirements[rel.requirement.capability].push(rel.requirement); - } - } - }); - } - - public fetchRelation = (linkId:string):ng.IPromise => { - let deferred = this.$q.defer(); - let onSuccess = (relation:RelationshipModel):void => { - this.syncComponentByRelation(relation); - deferred.resolve(relation); - }; - let onFailed = (error:any):void => { - deferred.reject(error); - }; - this.componentService.fetchRelation(this.uniqueId, linkId).then(onSuccess, onFailed); - return deferred.promise; - }; - - public createRelation = (relation:RelationshipModel):ng.IPromise => { - let deferred = this.$q.defer(); - let onSuccess = (relation:RelationshipModel):void => { - console.info('Link created successfully', relation); - if (!this.componentInstancesRelations) { - this.componentInstancesRelations = []; - } - this.componentInstancesRelations.push(new RelationshipModel(relation)); - this.syncComponentByRelation(relation); - deferred.resolve(relation); - }; - let onFailed = (error:any):void => { - console.info('Failed to create relation', error); - deferred.reject(error); - }; - this.componentService.createRelation(this.uniqueId, relation).then(onSuccess, onFailed); - return deferred.promise; - }; - - public deleteRelation = (relation:RelationshipModel):ng.IPromise => { - let deferred = this.$q.defer(); - let onSuccess = (relation:RelationshipModel):void => { - console.log("Link Deleted In Server"); - let relationToDelete = _.find(this.componentInstancesRelations, (item) => { - return item.fromNode === relation.fromNode && item.toNode === relation.toNode && _.some(item.relationships, (relationship)=> { - return angular.equals(relation.relationships[0].relation, relationship.relation); - }); - }); - let index = this.componentInstancesRelations.indexOf(relationToDelete); - if (relationToDelete != undefined && index > -1) { - if (relationToDelete.relationships.length == 1) { - this.componentInstancesRelations.splice(index, 1); - } else { - this.componentInstancesRelations[index].relationships = - _.reject(this.componentInstancesRelations[index].relationships, (relationship) => { - return angular.equals(relation.relationships[0].relation, relationship.relation); - }); - } - } else { - console.error("Error while deleting relation - the return delete relation from server was not found in UI") - } - this.syncComponentByRelation(relation); - deferred.resolve(relation); - }; - let onFailed = (error:any):void => { - console.error("Failed To Delete Link"); - deferred.reject(error); - }; - this.componentService.deleteRelation(this.uniqueId, relation).then(onSuccess, onFailed); - return deferred.promise; - }; - - public getRelationRequirementCapability(relationship: Relationship, sourceNode:ComponentInstance, targetNode:ComponentInstance): Promise<{requirement:Requirement, capability:Capability}> { - // try find the requirement and capability in the source and target component instances: - let capability:Capability = targetNode.findCapability(undefined, - relationship.relation.capabilityUid, - relationship.relation.capabilityOwnerId, - relationship.relation.capability); - let requirement:Requirement = sourceNode.findRequirement(undefined, - relationship.relation.requirementUid, - relationship.relation.requirementOwnerId, - relationship.relation.requirement); - - return new Promise<{requirement:Requirement, capability:Capability}>((resolve, reject) => { - if (capability && requirement) { - resolve({capability, requirement}); - } - else { - // if requirement and/or capability is missing, then fetch the full relation with its requirement and capability: - this.fetchRelation(relationship.relation.id).then((fetchedRelation) => { - resolve({ - capability: capability || fetchedRelation.relationships[0].capability, - requirement: requirement || fetchedRelation.relationships[0].requirement - }); - }, reject); - } - }); - } - - public updateRequirementsCapabilities = ():ng.IPromise => { - let deferred = this.$q.defer(); - let onSuccess = (response:any):void => { - this.capabilities = new CapabilitiesGroup(response.capabilities); - this.requirements = new RequirementsGroup(response.requirements); - deferred.resolve(response); - }; - let onFailed = (error:any):void => { - deferred.reject(error); - }; - this.componentService.getRequirementsCapabilities(this.uniqueId).then(onSuccess, onFailed); - return deferred.promise; - }; - public getModuleForDisplay = (moduleId:string):ng.IPromise => { let deferred = this.$q.defer(); @@ -814,82 +393,6 @@ export abstract class Component implements IComponent { return deferred.promise; }; - - // this function get all instances filtered by inputs and properties (optional) - if no search string insert - this function will - // get all the instances of the component (in service only VF instances) - public getComponentInstancesFilteredByInputsAndProperties = (searchText?:string):ng.IPromise> => { - - let deferred = this.$q.defer>(); - let onSuccess = (response:Array):void => { - deferred.resolve(response); - }; - let onFailed = (error:any):void => { - deferred.reject(error); - }; - this.componentService.getComponentInstancesFilteredByInputsAndProperties(this.uniqueId, searchText).then(onSuccess, onFailed); - return deferred.promise; - }; - - - // get inputs for instance - Pagination function - public getComponentInputs = ():ng.IPromise> => { - - let deferred = this.$q.defer>(); - let onSuccess = (inputsRes:Array):void => { - this.inputs = inputsRes; - deferred.resolve(inputsRes); - }; - let onFailed = (error:any):void => { - deferred.reject(error); - }; - this.componentService.getComponentInputs(this.uniqueId).then(onSuccess, onFailed); - return deferred.promise; - }; - - - // get inputs instance - Pagination function - public getComponentInstanceInputs = (componentInstanceId:string, originComponentUid:string):ng.IPromise> => { - - let deferred = this.$q.defer>(); - let onSuccess = (response:Array):void => { - deferred.resolve(response); - }; - let onFailed = (error:any):void => { - deferred.reject(error); - }; - this.componentService.getComponentInstanceInputs(this.uniqueId, componentInstanceId, originComponentUid).then(onSuccess, onFailed); - return deferred.promise; - }; - - // get inputs inatnce - Pagination function - public getComponentInstanceInputProperties = (componentInstanceId:string, inputId:string):ng.IPromise> => { - - let deferred = this.$q.defer>(); - let onSuccess = (response:Array):void => { - deferred.resolve(response); - }; - let onFailed = (error:any):void => { - deferred.reject(error); - }; - this.componentService.getComponentInstanceInputProperties(this.uniqueId, componentInstanceId, inputId).then(onSuccess, onFailed); - return deferred.promise; - }; - - // get inputs inatnce - Pagination function - public getComponentInstanceProperties = (componentInstanceId:string):ng.IPromise> => { - - let deferred = this.$q.defer>(); - let onSuccess = (response:Array):void => { - deferred.resolve(response); - }; - let onFailed = (error:any):void => { - deferred.reject(error); - }; - this.componentService.getComponentInstanceProperties(this.uniqueId, componentInstanceId).then(onSuccess, onFailed); - return deferred.promise; - }; - - public updateGroupMetadata = (module:Module):ng.IPromise => { let deferred = this.$q.defer(); @@ -969,15 +472,6 @@ export abstract class Component implements IComponent { }; - public getAdditionalInformation = ():Array => { - let additionalInformationObject:any = _.find(this.additionalInformation, (obj:any):boolean => { - return obj.parentUniqueId == this.uniqueId; - }); - if (additionalInformationObject) { - return additionalInformationObject.parameters; - } - return []; - }; public handleTags = ():void => { let isContainTag = _.find(this.tags, (tag)=> { @@ -1036,10 +530,10 @@ export abstract class Component implements IComponent { this.derivedList = componentMetadata.derivedList; this.normalizedName = componentMetadata.normalizedName; this.systemName = componentMetadata.systemName; - this.projectCode = componentMetadata.projectCode; this.categories = componentMetadata.categories; this.archived = componentMetadata.archived || false; this.vspArchived = componentMetadata.vspArchived; + this.componentMetadata = componentMetadata; } public toJSON = ():any => { -- cgit 1.2.3-korg