summaryrefslogtreecommitdiffstats
path: root/mod2/ui/src/app/comp-specs/comp-specs.component.html
blob: 3061cdfc58a583032404273c879bf5aafb6bff9b (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
<!-- 
  # ============LICENSE_START=======================================================
  # Copyright (c) 2020 AT&T Intellectual Property. 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.
  # ============LICENSE_END=========================================================
 -->

<div style="margin: 0px 50px 10px 20px; border: 1px solid darkslategray; min-width: 980px">
    <p-table #dt *ngIf="loadTable" [columns]="cols" [value]="csElements" sortMode="multiple" [paginator]="true"
        [rows]="18" [rowsPerPageOptions]="[10,12,14,16,18,20,25,50]" (onFilter)="onTableFiltered(dt.filteredValue)" dataKey="id">
        <ng-template pTemplate="caption">
            
            <div style="margin-left: -18%; width: 82%; max-height: 25px; display: inline-flex;">
                <!--CS Table Header-->
                <div style="float: left;">
                    <!--Refresh-->
                    <i class="fa fa-refresh" (click)="getAllCs()"></i>
                    <!--Global Filter-->
                    <input type="text" pInputText size="50" placeholder="Global Filter"
                        (input)="dt.filterGlobal($event.target.value, 'contains')"
                        style="width: 250px; height:25px; font-size: 12px; margin-left: 15px">
                    <i class="fa fa-search" style="margin:4px 0px 0 8px"></i>
                </div>
            
                <h4 style="margin-left: 15%"><b>Component Specs</b></h4>
            
            </div>
        </ng-template>

        <ng-template pTemplate="header" let-columns>
            <tr>
                <th style="width: 3em"></th>
                <th class="ui-state-highlight" *ngFor="let col of columns" [pSortableColumn]="col.field"
                    style="font-size: 12px; outline: none; vertical-align: bottom; text-align: center;" [ngStyle]="{'width': col.width}">
                    {{col.header}}<br>
                    <p-sortIcon [field]="col.field"></p-sortIcon>
                </th>
                <th style="font-size: 13px; width: 8%; vertical-align: top; text-align: center;">
                    Actions
                </th>     
            </tr>

            <!--Second header row for individual column filters-->
            <tr style="text-align: center;">
                <th style="width: 3em"></th>
                <th *ngFor="let col of columns" [ngSwitch]="col.field">
                    <input pInputText type="text" (input)="dt.filter($event.target.value, col.field, 'contains')"
                        style="width: 100%; height: 20px; font-size: 10px;" placeholder="Filter">
                </th>
                <th>
            
                </th>
            </tr>
        </ng-template>

        <ng-template pTemplate="body" let-rowData let-csElem>
            <tr style="font-size: 12px;">
                <!--Column for row expand buttons-->
                <td>
                    <a href="#" [pRowToggler]="rowData">
                        <i [ngClass]="expanded ? 'pi pi-chevron-down' : 'pi pi-chevron-right'"></i>
                    </a>
                </td>
            
                <td *ngFor="let col of cols">
                    <div *ngIf="col.field==='status'"
                        style="width: fit-content; width: -moz-max-content; padding: 0px 5px 0px 5px; border-radius: 3px; font-weight: 600;"
                        [ngClass]="{'greenStatus' : csElem[col.field] === 'ACTIVE', 'greyStatus' : csElem[col.field] === 'INACTIVE'}">
                        {{csElem[col.field]}}
                    </div>
                    <div *ngIf="col.field!=='status'">{{csElem[col.field]}}</div>
                </td>
            
                <!--Actions Column-->
                <td>
                    <div style="text-align: center;">
                        <button pButton type="button"
                            style="background-color: transparent; border: none; width: 20px; height: 20px; vertical-align: middle;"
                            class="ui-button-secondary" [matMenuTriggerFor]="menu">
                            <i class="pi pi-ellipsis-h" style="color: grey;"></i>
                        </button>
                        <mat-menu #menu="matMenu" xPosition="before">

                            <div style="background-color: rgba(128, 128, 128, 0.25);">
                                <span style="font-size: 12px; margin-left: 10px; font-weight: 500;"><i class="pi pi-search" style="font-size: 10px;"></i> View</span>
                            </div>

                            <button mat-menu-item class="table_action_item" (click)="showViewCsDialog(rowData)">Component Spec</button>
                            <div matTooltip="Policy not included" [matTooltipDisabled]="rowData.policyJson" matTooltipPosition="left">
                                <button mat-menu-item [disabled]="!rowData.policyJson" class="table_action_item" (click)="showViewPolicyDialog(rowData)">Policy</button>
                            </div>
                            <!--
                            <div *ngIf="rowData.status !== 'ACTIVE'">
                                <div style="background-color: rgba(128, 128, 128, 0.25);">
                                    <span style="font-size: 12px; margin-left: 10px; font-weight: 500;"><i class="pi pi-pencil"
                                            style="font-size: 10px;"></i> Update</span>
                                </div>
                            
                                <button mat-menu-item class="table_action_item" (click)="toActive(rowData)">To Active</button>
                            </div>-->
                        </mat-menu>
                    </div>
                </td>
            </tr>
        </ng-template>

        <!--Row expand content-->
        <ng-template pTemplate="rowexpansion" let-rowData let-columns="columns">
            <tr>
                <td [attr.colspan]="columns.length + 2">
                    <div class="row-expand-layout" [@rowExpansionTrigger]="'active'">
                        <!-- Audit Fields -->
                        <div class="row-expand-card" style="background-color: rgba(95, 158, 160, 0.295)">
                            <b>Created By:</b> {{rowData.metadata.createdBy}}<br>
                            <b>Created On:</b> {{rowData.metadata.createdOn}}<br>
                            <b>Updated By:</b> {{rowData.metadata.updatedBy}}<br>
                            <b>Updated On:</b> {{rowData.metadata.updatedOn}}
                        </div>
                        <!-- Notes -->
                        <div class="row-expand-card" style="background-color: rgba(100, 148, 237, 0.219)">
                            <b>Notes:</b><br>
                            <p-scrollPanel [style]="{width: '100%', height: '62px'}">
                                <div style="font-size: 12px; word-break: normal;">{{rowData.metadata.notes}}</div>
                            </p-scrollPanel>
                        </div>
                        <!-- Labels -->
                        <div class="row-expand-card" style="background-color: rgba(76, 65, 225, 0.199)">
                            <b style="padding-bottom: 5px;">Labels:</b><br>
                            <div *ngFor="let label of rowData['metadata']['labels']"
                                style="display: inline-flex; margin-top: 5px;">
                                <div style="padding: 2px 7px 3px 0px;">
                                    <span
                                        style="background-color: rgba(80, 80, 80, 0.185); padding: 3px; border-radius: 3px;">{{label}}</span>
                                </div>
                            </div>
                        </div>
                    </div>
                </td>
            </tr>
        </ng-template>
    </p-table>

    <!--download buttons for exporting table to either csv or excel file-->
    <div *ngIf="loadTable" style="margin-left: 10px; margin-top: -32px; float: left;">
        <button pButton type="button" (click)="exportTable('csv')" matTooltip="Export Table to CSV"
            matTooltipPosition="above"
            style="border-radius: 5px; width: 65px; height: 22px; font-size: 14px; border: none; margin-top: 4px; display: inline-flex;">
            <i class="pi pi-file" style="margin-top: 2px; margin-left: 8px;"></i>
            <label style="font-weight: 800; vertical-align: middle;">CSV</label>
        </button>
        <button pButton type="button" (click)="exportTable('excel')" matTooltip="Export Table to XLSX"
            matTooltipPosition="above"
            style="border-radius: 5px; width: 65px; height: 22px; margin-left: 7px; font-size: 14px; background-color: green; border: none; display: inline-flex;">
            <i class="pi pi-file-excel" style="margin-top: 2px; margin-left: 4px;"></i>
            <label style="font-weight: 800; vertical-align: middle;">Excel</label>
        </button>
    </div>
</div>

<!-- * * * * View Spec Content Pop Up * * * * -->
<p-dialog [(visible)]="showViewCs" header="Spec Content" appendTo="body" [maximizable]="true"
    [modal]="true" [style]="{width: '80vw'}" [baseZIndex]="10000" [closable]="false">
    <pre>{{specContentToView | json}}</pre>
    <p-footer>
        <button pButton label="Close" (click)="showViewCs=false" type="button"></button>
        <button pButton label="Download" (click)="download(specContentToView, 'Component_Spec')" type="button"></button>
    </p-footer>
</p-dialog>

<!-- * * * * View Policy JSON Pop Up * * * * -->
<p-dialog [(visible)]="showViewPolicy" header="Policy Json" appendTo="body" [maximizable]="true" [modal]="true"
    [style]="{width: '80vw'}" [baseZIndex]="10000" [closable]="false">
    <pre>{{policyJsonToView | json}}</pre>
    <p-footer>
        <button pButton label="Close" (click)="showViewPolicy=false" type="button"></button>
        <button pButton label="Download" (click)="download(policyJsonToView, 'Policy_Json')" type="button"></button>
    </p-footer>
</p-dialog>