summaryrefslogtreecommitdiffstats
path: root/adaptors/netconf-adaptor/netconf-adaptor-installer/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'adaptors/netconf-adaptor/netconf-adaptor-installer/pom.xml')
-rw-r--r--adaptors/netconf-adaptor/netconf-adaptor-installer/pom.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/adaptors/netconf-adaptor/netconf-adaptor-installer/pom.xml b/adaptors/netconf-adaptor/netconf-adaptor-installer/pom.xml
index 543185493..7c47b8dcb 100644
--- a/adaptors/netconf-adaptor/netconf-adaptor-installer/pom.xml
+++ b/adaptors/netconf-adaptor/netconf-adaptor-installer/pom.xml
@@ -25,7 +25,7 @@
<parent>
<groupId>org.onap.ccsdk.parent</groupId>
<artifactId>odlparent-lite</artifactId>
- <version>2.4.0</version>
+ <version>2.4.1-SNAPSHOT</version>
<relativePath/>
</parent>
9 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
import { IntentManagementService } from '../../../core/services/intentManagement.service';
import { Util } from '../../../shared/utils/utils';

@Component({
  selector: 'app-input-intent-management',
  templateUrl: './input-intent-management.component.html',
  styleUrls: ['../intent-management.component.less']
})
export class InputIntentManagementComponent implements OnInit {

  constructor(
    private myhttp: IntentManagementService,
    private Util: Util
  ) { }
  defaultParams:Object={
    intentId:'',
    intentName:'',
    intentExpectations:[
      {
        expectationId:'',
        expectationName:'',
        expectationType:'',
        expectationObject:{
          objectType:'',
          objectInstance:''
        },
        expectationTargets:[
          {
            targetId:'',
            targetName:'',
            targetCondition:{
              conditionId:'',
              conditionName:'',
              operator:'',
              conditionValue:'',
              conditionList:null
            }
          }
        ]
      }
    ],
  };
  currentIndex:number = -1;
  intentExpectationShow: boolean = false;
  editExpectationTableList: Object={};

  listOfData: any[] = [];

  @Input() showModel: boolean;
  @Input() editIntentTableData;
  @Output() modalOpreation = new EventEmitter();

  ngOnInit() {}
  ngOnChanges() {
    if (this.showModel) {
      if (JSON.stringify(this.editIntentTableData)!=='{}') {
        this.defaultParams=this.editIntentTableData
        this.listOfData=this.editIntentTableData['intentExpectations']
      }
    }
	}

  handleCancel(): void {
    this.showModel = false;
    this.clearIntentData()
    this.modalOpreation.emit({ "cancel": true });
  }
  handleOk(): void {
    this.showModel = false;
    if(JSON.stringify(this.editIntentTableData)==='{}'){
      this.defaultParams['intentId']=this.Util.getUuid()
    }
    this.createIntentInstance()
    this.modalOpreation.emit({ "cancel": false, "param": this.defaultParams });
    this.clearIntentData()
  }
  clearIntentData(): void{
    this.defaultParams = {
      intentId:'',
      intentName:'',
      intentExpectations:[
        {
          expectationId:'',
          expectationName:'',
          expectationType:'',
          expectationObject:{
            objectType:'',
            objectInstance:''
          },
          expectationTargets:[
            {
              targetId:'',
              targetName:'',
              targetCondition:{
                conditionId:'',
                conditionName:'',
                operator:'',
                conditionValue:'',
                conditionList:null
              }
            }
          ]
        }
      ]
    };
    this.listOfData=[]
  }

  inputIntentExpectationShow(): void {
    this.intentExpectationShow = true;
  }
  inputIntentExpectationClose($event: any): void {
    this.intentExpectationShow = false;
    this.editExpectationTableList={}
    if ($event.cancel) {
        return;
    }
    if(this.currentIndex>-1){
      this.listOfData[this.currentIndex]=$event.param
      this.currentIndex=-1
    }else{
      this.listOfData.push($event.param)
    }
    this.defaultParams['intentExpectations']=this.listOfData
  }
  editExpectationList(data,i): void {
    this.editExpectationTableList=JSON.parse(JSON.stringify(data))
    this.currentIndex=i
    this.intentExpectationShow = true
  }
  deleteExpectationList(i): void{
    this.listOfData.splice(i,1)
  }

  createIntentInstance(): void {
    this.myhttp.createIntentManagement({
      ...this.defaultParams
    }).subscribe(
      (response) => {
        this.modalOpreation.emit({ "cancel": false });
      },
      (err) => {
        console.log(err);
      }
    )
  }
}