summaryrefslogtreecommitdiffstats
path: root/public/src/app/rule-engine/action-list/action-list.component.ts
blob: 27a74d40697b9f8552d6c67822720599bb6a12e8 (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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
import {
  AfterViewInit,
  Component,
  QueryList,
  ViewChild,
  ViewChildren
} from '@angular/core';
import { NgForm } from '@angular/forms';
import { cloneDeep } from 'lodash';
import { v1 as uuid } from 'uuid';
import { Store } from '../../store/store';
import { ActionComponent } from '../action/action.component';
import { RuleEngineApiService } from '../api/rule-engine-api.service';

@Component({
  selector: 'app-action-list',
  templateUrl: './action-list.component.html',
  styleUrls: ['./action-list.component.scss']
})
export class ActionListComponent implements AfterViewInit {
  title = '';
  error: Array<string>;
  condition: any;
  eventType: string;
  version: string;
  params;
  selectedAction;
  targetSource;
  description = '';
  actions = new Array();
  ifStatement = false;
  uid = '';
  backupActionForCancel = new Array();
  @ViewChild('actionListFrm') actionListFrm: NgForm;
  @ViewChild('condition') conditionRef;
  @ViewChildren('actions') actionsRef: QueryList<ActionComponent>;

  constructor(private _ruleApi: RuleEngineApiService, public store: Store) {
    this._ruleApi.editorData.subscribe(data => {
      this.params = data.params;
      console.log('update.. params', data.params);
      this.targetSource = data.targetSource;
      this.version = data.version;
      this.eventType = data.eventType;
      if (data.item) {
        // edit mode set values to attributes
        console.log('actions %o', data.item.actions);
        this.actions = this.convertActionDataFromServer(data.item.actions);
        this.backupActionForCancel = cloneDeep(this.actions);
        this.condition = data.item.condition;
        this.uid = data.item.uid;
        this.description = data.item.description;
        this.title = this.description + ' - Rule Editor';
        this.ifStatement = this.condition == null ? false : true;
      } else {
        this.title = 'New Rule Editor';
        this.actions = new Array();
        this.backupActionForCancel = new Array();
        this.condition = null;
        this.uid = '';
        this.description = '';
        this.ifStatement = false;
      }
      this.selectedAction = null;
    });
  }

  convertActionDataFromServer(actions) {
    return actions.map(item => {
      if (!item.hasOwnProperty('nodes')) {
        return Object.assign({}, item, { nodes: this.targetSource });
      }
    });
  }

  ngAfterViewInit() {
    // console.log(this.actionsRef.toArray());
    if (this.condition) {
      if (this.condition.name === 'condition') {
        this.conditionRef.updateMode(true, this.condition);
      } else {
        const convertedCondition = this.convertConditionFromServer(
          this.condition
        );
        this.conditionRef.updateMode(false, convertedCondition);
      }
    }
  }

  addAction2list(selectedAction) {
    if (selectedAction !== null) {
      this.actions.push({
        id: uuid(),
        nodes: this.targetSource,
        from: {
          value: '',
          regex: '',
          state: 'closed',
          values: [
            {
              value: ''
            },
            {
              value: ''
            }
          ]
        },
        actionType: this.selectedAction,
        target: '',
        map: {
          values: [
            {
              key: '',
              value: ''
            }
          ],
          haveDefault: false,
          default: ''
        },
        dateFormatter: {
          fromFormat: '',
          toFormat: '',
          fromTimezone: '',
          toTimezone: ''
        },
        replaceText: {
          find: '',
          replace: ''
        },
        logText: {
          name: '',
          level: '',
          text: ''
        },
        logEvent: {
          title: ''
        }
      });
    }
  }

  removeConditionCheck(flag) {
    this.ifStatement = flag;
  }

  removeAction(action) {
    this.actions = this.actions.filter(item => {
      return item.id !== action.id;
    });
  }

  updateCondition(data) {
    this.condition = data;
  }

  changeRightToArrayOrString(data, toArray) {
    data.forEach(element => {
      if (element.name === 'operator') {
        this.changeRightToArrayOrString(element.children, toArray);
      }
      if (element.name === 'condition') {
        if (toArray) {
          element.right = element.right.split(',');
        } else {
          element.right = element.right.join(',');
        }
      }
    });
    console.log(data);
    return data;
  }

  prepareDataToSaveRule() {
    // action array
    console.log(this.actions);
    const actionSetData = this.actions.map(item => {
      return {
        id: item.id,
        actionType: item.actionType,
        from: item.from,
        target:
          typeof item.selectedNode === 'string'
            ? item.selectedNode
            : typeof item.selectedNode === 'undefined'
              ? item.target
              : item.selectedNode.id,
        map: item.map,
        dateFormatter: item.dateFormatter,
        replaceText: item.replaceText,
        logText: item.logText,
        logEvent: item.logEvent
      };
    });
    let conditionData2server = null;
    if (this.ifStatement) {
      if (this.conditionRef.conditionTree) {
        // change condition right to array
        conditionData2server = this.convertConditionToServer(
          this.conditionRef.conditionTree
        );
      }
    }
    // data structure
    return {
      version: this.version,
      eventType: this.eventType,
      notifyId: this.store.notifyIdValue,
      uid: this.uid,
      description: this.description,
      actions: actionSetData,
      condition: this.ifStatement ? conditionData2server : null
    };
  }

  errorHandler(error) {
    this.store.loader = false;
    console.log(error);
    this.error = [];
    if (typeof error === 'string') {
      this.error.push(error);
    } else {
      console.log(error.notes);
      const errorFromServer = Object.values(error)[0] as any;
      if (Object.keys(error)[0] === 'serviceExceptions') {
        this.error = errorFromServer.map(x => x.formattedErrorMessage);
      } else {
        this.error.push(errorFromServer.formattedErrorMessage);
      }
    }
  }

  saveAndDone() {
    const data = this.prepareDataToSaveRule();
    this.store.loader = true;
    this._ruleApi.modifyRule(data).subscribe(
      response => {
        this.store.loader = false;
        this.store.updateRuleInList(response);
        this._ruleApi.callUpdateVersionLock();
        this.store.isLeftVisible = true;
      },
      error => {
        this.errorHandler(error);
      },
      () => {
        this.store.loader = false;
      }
    );
  }

  saveRole() {
    const actionComp = this.actionsRef.toArray();
    const filterInvalidActions = actionComp.filter(comp => {
      return (
        // (comp.fromInstance && comp.fromInstance.fromFrm.invalid) ||
        // (comp.targetInstance && comp.targetInstance.targetFrm.invalid) ||
        comp.actionFrm && comp.actionFrm.invalid
      );
    });
    if (this.actionListFrm.valid && filterInvalidActions.length == 0) {
      const data = this.prepareDataToSaveRule();
      this.store.loader = true;
      this._ruleApi.modifyRule(data).subscribe(
        response => {
          this.store.loader = false;
          this.store.updateRuleInList(response);
          this._ruleApi.callUpdateVersionLock();
          this.uid = response.uid;
          // add toast notification
        },
        error => {
          this.errorHandler(error);
        },
        () => {
          this.store.loader = false;
        }
      );
    } else {
      // scroll to first invalid element const elId =
      // filterInvalidActions[0].action.id; const el = document.getElementById(elId as
      // string); const label = el.children.item(0) as HTMLElement;
      // el.scrollIntoView();
    }
  }

  public convertConditionFromServer(condition) {
    const temp = new Array();
    temp.push(condition);
    const cloneCondition = cloneDeep(temp);
    const conditionSetData = this.changeRightToArrayOrString(
      cloneCondition,
      false
    );
    console.log('condition to server:', conditionSetData);
    return conditionSetData;
  }

  public convertConditionToServer(tree) {
    const cloneCondition = cloneDeep(tree);
    const conditionSetData = this.changeRightToArrayOrString(
      cloneCondition,
      true
    );
    let simpleCondition = null;
    if (conditionSetData[0].children.length === 1) {
      simpleCondition = conditionSetData[0].children;
    }
    console.log('condition to server:', conditionSetData);
    return simpleCondition !== null ? simpleCondition[0] : conditionSetData[0];
  }

  closeDialog(): void {
    this.actions = this.backupActionForCancel;
    this.store.isLeftVisible = true;
  }
}