| <div class="modal fade" bsModal #auditInfoModal="bs-modal" [config]="{backdrop: 'static'}" |
| tabindex="-1" role="dialog" aria-labelledby="dialog-static-name"> |
| <div style="width: 100%; height: 100%" id="audit-info-modal" class="" |
| [ngStyle]="style" mwlResizable [enableGhostResize]="true" |
| [resizeEdges]="{ bottom: true, right: true, top: true, left: true }" (resizeEnd)="onResizeEnd($event)" |
| [validateResize]="validate"> |
| <div class="modal-content"> |
| <div class="modal-header"> |
| <button type="button" class="close" (click)="onCancelClick()">×</button> |
| <span [attr.data-tests-id]="'audit-info-title'" class="modal-title">{{title}}</span> |
| <br> |
| <span style="font-size: 16px;"> |
| <!-- ServiceInstanceName(ServiceModelName/ServiceModelId) --> |
| <span title="Service Instance name">{{serviceInstanceName }}</span><span title="Service Model name"> ({{serviceModelName}}/</span> |
| <span title="Service Model version">{{serviceModelVersion}})</span> |
| </span> |
| </div> |
| <div class="modal-body row" style="height: 515px"> |
| |
| <div class="col-md-8 right-panel"> |
| |
| <div class="row"> |
| <div class="col-md-6 leftColumn"><span class="table-title">MSO status</span></div> |
| <div class="col-md-6 rightColumn"> |
| <span> |
| <a id="glossary_link" target="_blank" href="#" (click)="onNavigate()">Building Block (BB) glossary</a> |
| </span> |
| |
| <span> |
| <a id="full_screen_link" target="_parent" title="Go to drawing board" [href]="readOnlyRetryUrl()"> |
| <i class="fa fa-external-link"></i> |
| </a> |
| </span> |
| </div> |
| </div> |
| <div style="max-height: 90%;overflow-y: scroll; max-width: 100%;overflow-x: scroll;"> |
| <table id="service-instantiation-audit-info-mso" class="table table-bordered" style="min-width: 950px;overflow-x: auto;"> |
| <thead class="thead-dark row"> |
| <tr class="row"> |
| <th scope="col" class="request-id">Request ID</th> |
| <th *ngIf="isAlaCarte&&isALaCarteFlagOn" id="instanceName" class="col-md-2" scope="col" >Instance Name</th> |
| <th>Model Type</th> |
| <th>Request Type</th> |
| <th>Start Time</th> |
| <th>Finish Time</th> |
| <th scope="col">Request Status</th> |
| <th class="col-md-2" scope="col">Additional info</th> |
| </tr> |
| </thead> |
| <tbody> |
| <tr class="row" *ngFor="let data of msoInfoData"> |
| <td id="msoRequestId" class="col-md-2" style="width: 22%"> |
| <custom-ellipsis [id]="data?.requestId" [value]="data?.requestId" [attr.data-tests-id]="'requestId'"></custom-ellipsis> |
| </td> |
| <td *ngIf="isAlaCarte && isALaCarteFlagOn" class="msoInstanceName col-md-2" style="width: 10%"> |
| <custom-ellipsis [id]="data?.instanceName" [value]="data?.instanceName"></custom-ellipsis> |
| </td> |
| <td id="msoModelType" style="width: 7%"> |
| <custom-ellipsis [value]="data?.modelType"></custom-ellipsis> |
| </td> |
| <td id="msoInstanceType" style="width: 10%"> |
| <custom-ellipsis [value]="data?.instanceType"></custom-ellipsis> |
| </td> |
| <td id="msostartTime" style="width: 10%"> |
| <custom-ellipsis [value]="data?.startTime"></custom-ellipsis> |
| </td> |
| <td id="msoFinishTime" style="width: 10%"> |
| <custom-ellipsis [value]="data?.finishTime"></custom-ellipsis> |
| </td > |
| <td id="msoJobStatus" style="width: 8%"> |
| <custom-ellipsis [id]="data?.jobStatus" [value]="data?.jobStatus | capitalizeAndFormat" [attr.data-tests-id]="'jobStatus'"></custom-ellipsis> |
| </td> |
| <td class="col-md-2" id="msoAdditionalInfo" style="width: 33%"> |
| <custom-ellipsis [id]="data?.additionalInfo" [value]="data?.additionalInfo" [attr.data-tests-id]="'additionalInfo'"></custom-ellipsis> |
| </td> |
| </tr> |
| </tbody> |
| </table> |
| <div class="no-result" *ngIf="!isLoading && msoInfoData?.length == 0">There is no data.</div> |
| </div> |
| </div> |
| </div> |
| <div class="modal-footer row"> |
| <button *ngIf="exportMSOStatusFeatureEnabled" style= "font-size: 12px" id="exportButton" type="button" class="btn btn-default cancel" |
| (click)="exportMsoStatusTable()" [attr.data-tests-id]="'export-button'"> |
| Export |
| </button> |
| <button style= "font-size: 12px" id="refreshButton" type="button" class="btn btn-default cancel" |
| [attr.data-tests-id]="'refresh-button'" |
| [ngClass]="{'spin' : !dataIsReady}" (click)="refreshData();"> |
| Refresh |
| </button> |
| <button style= "font-size: 12px" id="cancelButton" type="button" class="btn btn-default cancel" (click)="onCancelClick()" [attr.data-tests-id]="'close-button'"> |
| Close |
| </button> |
| </div> |
| </div> |
| </div> |
| </div> |