diff options
author | Sunder Tattavarada <statta@research.att.com> | 2020-01-31 15:26:38 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-01-31 15:26:38 +0000 |
commit | e363b25a09970065499f91e9b54be0149517e737 (patch) | |
tree | b66138e640294495c80b97d251af359559dd8cce /portal-FE-common/src/app/pages/web-analytics/web-analytics.component.html | |
parent | e0b464f75666b80976466437fa1057c3b4efd39f (diff) | |
parent | 46c63acfdb4bfa54c5f2a6eb42d80e5dd853488a (diff) |
Merge "Angular upgrade - Dynamic widget,widget catalog"
Diffstat (limited to 'portal-FE-common/src/app/pages/web-analytics/web-analytics.component.html')
-rw-r--r-- | portal-FE-common/src/app/pages/web-analytics/web-analytics.component.html | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/portal-FE-common/src/app/pages/web-analytics/web-analytics.component.html b/portal-FE-common/src/app/pages/web-analytics/web-analytics.component.html new file mode 100644 index 00000000..4266718b --- /dev/null +++ b/portal-FE-common/src/app/pages/web-analytics/web-analytics.component.html @@ -0,0 +1,91 @@ +<!-- + ============LICENSE_START========================================== + ONAP Portal + =================================================================== + Copyright (C) 2019 AT&T Intellectual Property. All rights reserved. + =================================================================== + + Unless otherwise specified, all software contained herein is licensed + under the Apache License, Version 2.0 (the "License"); + you may not use this software 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. + + Unless otherwise specified, all documentation contained herein is licensed + under the Creative Commons License, Attribution 4.0 Intl. (the "License"); + you may not use this documentation except in compliance with the License. + You may obtain a copy of the License at + + https://creativecommons.org/licenses/by/4.0/ + + Unless required by applicable law or agreed to in writing, documentation + 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 class="container"> + <div class="ecomp-main-view-title"> + <h1 class="heading-page">Web Analytics Onboarding</h1> + </div> + + <mat-form-field> + <input matInput type="text" (keyup)="applyFilter($event.target.value)" placeholder="Search in entire table"> + </mat-form-field> + + <button type="button" style="float: right;" class="btn btn-primary" (click)="openWebAnalyticsModal('')"> + <i class="icon ion-md-person-add"></i>Add Web Analytics Report + </button> + + <div class="webanalytics-table"> + <table mat-table [dataSource]="dataSource" matSort> + <!-- Account Name Column --> + <ng-container matColumnDef="applicationName"> + <th id="col1" mat-header-cell *matHeaderCellDef> Application Name </th> + <td (click)="openWebAnalyticsModal(element)" id="rowheader_t1_{{i}}-applicationName" + mat-cell *matCellDef="let element; let i = index;"> {{element.appName}} + </td> + </ng-container> + + <!-- Report Name Column --> + <ng-container matColumnDef="reportName"> + <th id="col2" mat-header-cell *matHeaderCellDef> Report Name </th> + <td (click)="openWebAnalyticsModal(element)" id="rowheader_t1_{{i}}-reportName" + mat-cell *matCellDef="let element; let i=index;"> {{element.reportName}} </td> + </ng-container> + + <!-- Report URL Column --> + <ng-container matColumnDef="reportURL"> + <th id="col2" mat-header-cell *matHeaderCellDef> Report URL </th> + <td (click)="openWebAnalyticsModal(element)" id="rowheader_t1_{{i}}-reportURL" + mat-cell *matCellDef="let element; let i=index;"> {{element.reportSrc}} </td> + </ng-container> + + <!-- Delete Column --> + <ng-container matColumnDef="delete"> + <th id="col4" mat-header-cell *matHeaderCellDef> Delete </th> + <td id="rowheader_t1_{{i}}" mat-cell *matCellDef="let element; let i=index;"> + <span class="icon-trash" id="{{i}}-button-portal-admin-remove" (click)="deleteWebAnalyticsReport(element)"> + <i class="icon ion-md-trash"></i> + </span> + </td> + </ng-container> + + <tr mat-header-row *matHeaderRowDef="displayedColumns"></tr> + <tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr> + </table> + <mat-paginator [pageSizeOptions]="[10, 20]" showFirstLastButtons></mat-paginator> + </div> +</div> +
\ No newline at end of file |