frontend/app/scripts/views/tableData.html (72 lines of code) (raw):
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You 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.
-->
<md-content class="pb-100">
<md-card>
<md-toolbar class="table-header">
<div class="md-toolbar-tools">
{{heading | translate}}
<span flex></span>
<md-select class="pt-5" ng-if="statusList.length > 0" placeholder="Select Status" ng-model="filter.status" ng-change="fnSearch(filter.search, filter.status)">
<md-option ng-repeat="status in statusList" ng-value="status.id">{{status.name}}</md-option>
</md-select>
<md-button ng-if="(enableSearch && data && (data.length > 0))" class="md-icon-button" ng-click="searchOpen()" ng-hide="showSearch" aria-label="{{ 'search' | translate }}" title="{{ 'search' | translate }}">
<i class="fa fa-search fa-lg pl-12"></i>
</md-button>
<md-button ng-if="refresh" class="md-icon-button" ng-click="reload()" aria-label="{{ 'refresh' | translate }}" title="{{ 'refresh' | translate }}">
<i class="fa fa-refresh fa-lg"></i>
</md-button>
</div>
</md-toolbar>
<md-toolbar class="md-table-toolbar md-raised md-default" ng-if="showSearch">
<div class="md-toolbar-tools">
<form flex name="filter.form" class="no-padding">
<input id="search" class="form-control" type="search" ng-model="filter.search" ng-change="fnSearch(filter.search, filter.status)" autofocus placeholder="{{ 'search' | translate }}" autocomplete="off">
</form>
<md-button class="md-icon-button" aria-label="{{ 'close' | translate }}" title="{{ 'close' | translate }}">
<md-icon><i class="fa fa-close fa-lg" ng-click="searchClose()"></i></md-icon>
</md-button>
</div>
</md-toolbar>
<fetching-no-data data="appList" info="apiInfo"></fetching-no-data>
<md-table-container ng-if="appList == ''">
<table data-md-table>
<thead md-head>
<tr md-row>
<th md-column ng-repeat="header in headers">
{{ header.key | translate }}
</th>
</tr>
</thead>
<tbody>
<tr md-row md-select="appData" id="target" data-ng-repeat="appData in data | orderBy: ['serviceName', 'instanceHostName'] | limitTo: paginationQuery.limit : (paginationQuery.page - 1) * paginationQuery.limit">
<td md-cell ng-repeat="(key, value) in appData">
<span ng-if="key == 'serviceName'">
<a ui-sref="sc.info.instance({serviceId:'{{appData.serviceId}}'})">{{appData.serviceName}}</a>
</span>
<span ng-if="key == 'status'">
<div ng-if="value == 'UP'" class="serviceStatus up" ng-class="{'outofservice' : appData.instances == 0}">{{value}}</div>
<div ng-if="value == 'STARTING'" class="serviceStatus starting">{{value}}</div>
<div ng-if="value == 'TESTING'" class="serviceStatus testing">{{value}}</div>
<div ng-if="value == 'OUTOFSERVICE'" class="serviceStatus outofservice">{{value}}</div>
<div ng-if="value == 'DOWN'" class="serviceStatus down">{{value}}</div>
</span>
<span ng-if="key == 'operation'">
<md-button class="md-icon-button" ng-disabled="appData.instances != 0" ng-click="remove(appData.serviceId, appData.instances)" aria-label="{{ 'delete' | translate }}" title="{{ 'delete' | translate }}">
<span class="glyphicon glyphicon-trash"></span>
</md-button>
</span>
<span ng-if="key == 'address'">
<span ng-repeat="endpoints in value track by $index">
<li>{{endpoints}}</li>
</span>
</span>
<span ng-if="key != 'serviceId' && key != 'serviceName' && key != 'disableBtn' && key != 'address' && key != 'operation' && key !='status'">
{{value}}
</span>
</td>
</tr>
</tbody>
</table>
</md-table-container>
<md-table-pagination ng-if="(data && (data.length != 0))" class="pagination-class" md-limit="paginationQuery.limit" md-limit-options="pagination" md-page="paginationQuery.page" md-total="{{data.length}}" md-page-select="paginationOptions.pageSelect" md-boundary-links="paginationOptions.boundaryLinks" md-label="{{paginationLabel}}">
</md-table-pagination>
</md-card>
</md-content>