blob: 90e82d330483684b935cb2d507eced715d87448d (
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
|
<div class="container">
<div style="display: flex;
justify-content: space-between;">
<div style="font-size: 1.7em; display: flex; align-items: center;">Monitoring</div>
<div style="display: flex;">
<button mat-icon-button [disabled]="checkCanCreate()" (click)="importScreen()">
<span style="width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;" [innerHTML]="'download' | feather:22"></span>
</button>
<button mat-raised-button color="primary" (click)="createScreen()" data-tests-id="btn-create-mc" [disabled]="checkCanCreate()">
Create New MC
</button>
</div>
</div>
<div *ngIf="showTable===true; then thenBlock else elseBlock"></div>
<ng-template #thenBlock>
<!-- Table -->
<div class="table-wrapper">
<div *ngIf="unavailableMonitoringComponents.length > 0" data-tests-id="unavailableArea" style="color: white; background: red; padding: 1rem; border-radius: 5px; font-weight: bold; margin: 1em 0;">
<div *ngFor="let item of unavailableMonitoringComponents">
{{item.uuid}}
</div>
</div>
<table class="mcTable">
<thead>
<tr data-tests-id="monitoringComponentTableHeaders">
<th>Monitoring Configuration</th>
<th>VNFI Name</th>
<th style="width:90px;">Version</th>
<th style="width:140px;">Status</th>
<th style="width:140px;">Last Updated by</th>
<th style="width:96px;">Action</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let item of monitoringComponents; let i = index" on-mouseleave="hoveredIndex=null" (click)="onSelect(i)" [class.active]="i == selectedLine"
data-tests-id="monitoringComponentTableItems" on-mouseover="hoveredIndex=i">
<td color="blue">
<div [hidden]="checkHoverCondition(item)" data-tests-id="tableItemsMonitoringConfiguration" class="table-Monitoring-Component" (click)="editItem(item)">
{{item.name}}
</div>
</td>
<td>
<span pTooltip="{{item.vfiName}}" tooltipPosition="bottom" style="padding:5px;">{{item.vfiName}}</span>
</td>
<td style="width:90px;">{{item.version}}</td>
<td style="width:140px;">{{item.status}}</td>
<td style="width:140px;">{{item.lastUpdaterUserId}}</td>
<td style="width:80px;">
<div *ngIf="i==hoveredIndex" [hidden]="checkHoverCondition(item)">
<button mat-icon-button data-tests-id="tableItemsButtonDelete" (click)="deleteItem(item)" style="width:30px; height: 30px;">
<span style="width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;" [innerHTML]="'trash-2' | feather:18"></span>
</button>
</div>
<div *ngIf="i==hoveredIndex" [hidden]="!checkHoverCondition(item)">
<button mat-icon-button data-tests-id="tableItemsButtonInfo" style="width:30px; height: 30px;">
<span style="width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;" [innerHTML]="'info' | feather:18"></span>
</button>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</ng-template>
<ng-template #elseBlock>
<div style="display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
flex:1;">
<div style="font-size: 1.5em;">
Monitoring Configuration does not Exist
</div>
<div style="padding: 0.5em; padding-top: 1em;" data-tests-id="new-monitoring-title">
A Monitoring Configuration (MC) was not yet created
</div>
<div>
Please create a new MC to monitor the service
</div>
<div class="wrapper-btn-add-mc">
<button mat-mini-fab color="primary" (click)="createScreen()" data-tests-id="btn-fab-create-mc" [disabled]="checkCanCreate()">
<span [innerHTML]="'plus' | feather:24"></span>
</button>
<span data-tests-id="btn-span-create-mc" style="margin-top: 1rem; font-size: 1.2em; font-weight: 400;" [style.color]="checkCanCreate() ? '#ebebe4' : '#009FDB'">Add First MC</span>
</div>
</div>
</ng-template>
</div>
|