summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/views/intent-management/input-intent-management/input-intent-management.component.ts
blob: 180afcad0ca5c579d6f715172f57400edeb453ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
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);
      }
    )
  }
}