aboutsummaryrefslogtreecommitdiffstats
path: root/so-monitoring/so-monitoring-ui/src/main/frontend/src/app/details/details.component.ts
blob: 9561e9abf7d3092d9e06f9ae4e2d5e0f0ca272fa (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
/**
============LICENSE_START=======================================================
 Copyright (C) 2018 Ericsson. All rights reserved.
================================================================================
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.
See the License for the specific language governing permissions and
 limitations under the License.

SPDX-License-Identifier: Apache-2.0
============LICENSE_END=========================================================

@authors: ronan.kenny@ericsson.com, waqas.ikram@ericsson.com
*/

import { Component, OnInit } from '@angular/core';
import { DataService } from '../data.service';
import { ActivatedRoute, Router } from "@angular/router";
import { Process } from '../model/process.model';
import { ACTINST } from '../model/activityInstance.model';
import { PII } from '../model/processInstance.model';
import { PDI } from '../model/processDefinition.model';
import { CommonModule } from '@angular/common';
import Viewer from 'bpmn-js/lib/NavigatedViewer';
import { ViewEncapsulation } from '@angular/core';
import { MatTabsModule } from '@angular/material/tabs';
import { VarInstance } from '../model/variableInstance.model';
import { ToastrNotificationService } from '../toastr-notification-service.service';

@Component({
  selector: 'app-details',
  templateUrl: './details.component.html',
  styleUrls: ['./details.component.scss'],
  encapsulation: ViewEncapsulation.None
})

export class DetailsComponent implements OnInit {

  bpmnViewer: any;

  processInstanceID: string;

  processDefinitionID: string;

  processDefinitionName: string;

  activityInstance: ACTINST[];

  processInstance: PII;

  processDefinition: PDI;

  variableInstance: VarInstance[];

  displayedColumns = ['activityId', 'activityName', 'activityType', 'startTime', 'endTime', 'durationInMillis'];

  displayedColumnsVariable = ['name', 'type', 'value'];

  constructor(private route: ActivatedRoute, private data: DataService, private popup: ToastrNotificationService, private router: Router) { }

  getActInst(procInstId: string) {
    this.data.getActivityInstance(procInstId).subscribe(
      (data: ACTINST[]) => {
        this.activityInstance = data;
        console.log(data);
      }, error => {
        console.log(error);
        this.popup.error("Unable to get activity instance details for id: " + procInstId + " Error code:" + error.status);
      });
  }

  async getProcessDefinition(procDefId) {
    await this.data.getProcessDefinition(procDefId).subscribe(
      async (data: PDI) => {
        this.processDefinition = data;
        console.log(data);
        await this.displayCamundaflow(this.processDefinition.processDefinitionXml, this.activityInstance, this.router);
      }, error => {
        console.log(error);
        this.popup.error("Unable to get process definition for id: " + procDefId + " Error code:" + error.status);
      });
  }

  async  getProcInstance(procInstId) {
    await this.data.getProcessInstance(procInstId).then(
      async (data: PII) => {
        this.processInstance = data;
        this.processDefinitionID = this.processInstance.processDefinitionId;
        this.processDefinitionName = this.processInstance.processDefinitionName;
        console.log("Process definition id: " + this.processDefinitionID);
        await this.getActInst(this.processInstanceID);
        await this.getProcessDefinition(this.processDefinitionID);
      }, error => {
        console.log(error);
        this.popup.error("Unable to get process instance for id: " + procInstId + " Error code:" + error.status);
      });
  }

  displayCamundaflow(bpmnXml, activities: ACTINST[], r: Router) {

    this.bpmnViewer.importXML(bpmnXml, (error) => {
      if (error) {
        console.error('Unable to load BPMN flow ', error);
        this.popup.error('Unable to load BPMN flow ');
      } else {
        let canvas = this.bpmnViewer.get('canvas');
        var eventBus = this.bpmnViewer.get('eventBus');
        eventBus.on('element.click', function(e) {

          activities.forEach(a => {
            if (a.activityId == e.element.id && a.calledProcessInstanceId !== null) {
              console.log("will drill down to : " + a.calledProcessInstanceId);
              r.navigate(['/details/' + a.calledProcessInstanceId]);
            }
          });
        });
        // zoom to fit full viewport
        canvas.zoom('fit-viewport');
        activities.forEach(a => {
          canvas.addMarker(a.activityId, 'highlight');
        });
      }
    });
  }

  getVarInst(procInstId) {
    this.data.getVariableInstance(procInstId).subscribe(
      (data: VarInstance[]) => {
        this.variableInstance = data;
        console.log(data);
      }, error => {
        console.log(error);
        this.popup.error("Unable to get Variable instances for id: " + procInstId + " Error code:" + error.status);
      });
  }

  async ngOnInit() {
    this.bpmnViewer = new Viewer({
      container: '.canvas'
    });
    this.route.params.subscribe(
      async params => {
        this.processInstanceID = params.id as string;
        console.log("Will GET Process instanc using id: " + this.processInstanceID);
        await this.getProcInstance(this.processInstanceID);

        this.getVarInst(this.processInstanceID);
      });
  }
}