mirror of https://github.com/portainer/portainer
174 lines
9.6 KiB
HTML
174 lines
9.6 KiB
HTML
<div class="datatable">
|
|
<rd-widget>
|
|
<rd-widget-body classes="no-padding">
|
|
<div class="toolBar">
|
|
<div class="toolBarTitle">
|
|
<i class="fa" ng-class="$ctrl.titleIcon" aria-hidden="true" style="margin-right: 2px;"></i> {{ $ctrl.titleText }}
|
|
</div>
|
|
</div>
|
|
<services-datatable-actions
|
|
selected-items="$ctrl.state.selectedItems"
|
|
selected-item-count="$ctrl.state.selectedItemCount"
|
|
show-add-action="$ctrl.showAddAction"
|
|
show-update-action="$ctrl.showUpdateAction"
|
|
></services-datatable-actions>
|
|
<div class="searchBar">
|
|
<i class="fa fa-search searchIcon" aria-hidden="true"></i>
|
|
<input type="text" class="searchInput" ng-model="$ctrl.state.textFilter" placeholder="Search..." auto-focus>
|
|
</div>
|
|
<div class="table-responsive">
|
|
<table class="table table-hover nowrap-cells">
|
|
<thead>
|
|
<tr>
|
|
<th style="width:55px;">
|
|
<span class="md-checkbox">
|
|
<input id="select_all" type="checkbox" ng-model="$ctrl.state.selectAll" ng-change="$ctrl.selectAll()" />
|
|
<label for="select_all"></label>
|
|
</span>
|
|
<a ng-click="$ctrl.expandAll()">
|
|
<i ng-class="{ 'fas fa-angle-down': $ctrl.state.expandAll, 'fas fa-angle-right': !$ctrl.state.expandAll }" aria-hidden="true"></i>
|
|
</a>
|
|
</th>
|
|
<th>
|
|
<a ng-click="$ctrl.changeOrderBy('Name')">
|
|
Name
|
|
<i class="fa fa-sort-alpha-down" aria-hidden="true" ng-if="$ctrl.state.orderBy === 'Name' && !$ctrl.state.reverseOrder"></i>
|
|
<i class="fa fa-sort-alpha-up" aria-hidden="true" ng-if="$ctrl.state.orderBy === 'Name' && $ctrl.state.reverseOrder"></i>
|
|
</a>
|
|
</th>
|
|
<th ng-if="$ctrl.showStackColumn">
|
|
<a ng-click="$ctrl.changeOrderBy('StackName')">
|
|
Stack
|
|
<i class="fa fa-sort-alpha-down" aria-hidden="true" ng-if="$ctrl.state.orderBy === 'StackName' && !$ctrl.state.reverseOrder"></i>
|
|
<i class="fa fa-sort-alpha-up" aria-hidden="true" ng-if="$ctrl.state.orderBy === 'StackName' && $ctrl.state.reverseOrder"></i>
|
|
</a>
|
|
</th>
|
|
<th>
|
|
<a ng-click="$ctrl.changeOrderBy('Image')">
|
|
Image
|
|
<i class="fa fa-sort-alpha-down" aria-hidden="true" ng-if="$ctrl.state.orderBy === 'Image' && !$ctrl.state.reverseOrder"></i>
|
|
<i class="fa fa-sort-alpha-up" aria-hidden="true" ng-if="$ctrl.state.orderBy === 'Image' && $ctrl.state.reverseOrder"></i>
|
|
</a>
|
|
</th>
|
|
<th>
|
|
<a ng-click="$ctrl.changeOrderBy('Mode')">
|
|
Scheduling Mode
|
|
<i class="fa fa-sort-alpha-down" aria-hidden="true" ng-if="$ctrl.state.orderBy === 'Mode' && !$ctrl.state.reverseOrder"></i>
|
|
<i class="fa fa-sort-alpha-up" aria-hidden="true" ng-if="$ctrl.state.orderBy === 'Mode' && $ctrl.state.reverseOrder"></i>
|
|
</a>
|
|
</th>
|
|
<th>
|
|
<a ng-click="$ctrl.changeOrderBy('Ports')">
|
|
Published Ports
|
|
<i class="fa fa-sort-alpha-down" aria-hidden="true" ng-if="$ctrl.state.orderBy === 'Ports' && !$ctrl.state.reverseOrder"></i>
|
|
<i class="fa fa-sort-alpha-up" aria-hidden="true" ng-if="$ctrl.state.orderBy === 'Ports' && $ctrl.state.reverseOrder"></i>
|
|
</a>
|
|
</th>
|
|
<th>
|
|
<a ng-click="$ctrl.changeOrderBy('UpdatedAt')">
|
|
Last Update
|
|
<i class="fa fa-sort-alpha-down" aria-hidden="true" ng-if="$ctrl.state.orderBy === 'UpdatedAt' && !$ctrl.state.reverseOrder"></i>
|
|
<i class="fa fa-sort-alpha-up" aria-hidden="true" ng-if="$ctrl.state.orderBy === 'UpdatedAt' && $ctrl.state.reverseOrder"></i>
|
|
</a>
|
|
</th>
|
|
<th ng-if="$ctrl.showOwnershipColumn">
|
|
<a ng-click="$ctrl.changeOrderBy('ResourceControl.Ownership')">
|
|
Ownership
|
|
<i class="fa fa-sort-alpha-down" aria-hidden="true" ng-if="$ctrl.state.orderBy === 'ResourceControl.Ownership' && !$ctrl.state.reverseOrder"></i>
|
|
<i class="fa fa-sort-alpha-up" aria-hidden="true" ng-if="$ctrl.state.orderBy === 'ResourceControl.Ownership' && $ctrl.state.reverseOrder"></i>
|
|
</a>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr ng-click="$ctrl.expandItem(item, !item.Expanded)" dir-paginate-start="item in ($ctrl.state.filteredDataSet = ($ctrl.dataset | filter:$ctrl.state.textFilter | orderBy:$ctrl.state.orderBy:$ctrl.state.reverseOrder | itemsPerPage: $ctrl.state.paginatedItemLimit))" ng-class="{active: item.Checked}" class="interactive">
|
|
<td>
|
|
<span class="md-checkbox">
|
|
<input id="select_{{ $index }}" type="checkbox" ng-model="item.Checked" ng-change="$ctrl.selectItem(item)"/>
|
|
<label for="select_{{ $index }}"></label>
|
|
</span>
|
|
<a><i ng-class="{ 'fas fa-angle-down': item.Expanded, 'fas fa-angle-right': !item.Expanded }" class="space-right" aria-hidden="true"></i></a>
|
|
</td>
|
|
<td>
|
|
<a ui-sref="docker.services.service({id: item.Id})" ng-click="$event.stopPropagation()">{{ item.Name }}</a>
|
|
</td>
|
|
<td ng-if="$ctrl.showStackColumn">{{ item.StackName ? item.StackName : '-' }}</td>
|
|
<td>{{ item.Image | hideshasum }}</td>
|
|
<td ng-controller="ServicesDatatableActionsController as actionCtrl">
|
|
{{ item.Mode }}
|
|
<code>{{ item.Tasks | runningtaskscount }}</code> / <code>{{ item.Mode === 'replicated' ? item.Replicas : ($ctrl.nodes | availablenodecount) }}</code>
|
|
<span ng-if="item.Mode === 'replicated' && !item.Scale">
|
|
<a class="interactive" ng-click="item.Scale = true; item.ReplicaCount = item.Replicas; $event.stopPropagation();">
|
|
<i class="fa fa-arrows-alt-v" aria-hidden="true"></i> Scale
|
|
</a>
|
|
</span>
|
|
<span ng-if="item.Mode === 'replicated' && item.Scale">
|
|
<input class="input-sm" type="number" ng-model="item.Replicas" on-enter-key="actionCtrl.scaleAction(item)" auto-focus ng-click="$event.stopPropagation();"/>
|
|
<a class="interactive" ng-click="item.Scale = false; $event.stopPropagation();"><i class="fa fa-times"></i></a>
|
|
<a class="interactive" ng-click="actionCtrl.scaleAction(item); $event.stopPropagation();"><i class="fa fa-check-square"></i></a>
|
|
</span>
|
|
</td>
|
|
<td>
|
|
<a ng-if="item.Ports && item.Ports.length > 0 && p.PublishedPort" ng-repeat="p in item.Ports" class="image-tag" ng-href="http://{{ $ctrl.state.publicURL }}:{{ p.PublishedPort }}" target="_blank" ng-click="$event.stopPropagation();">
|
|
<i class="fa fa-external-link-alt" aria-hidden="true"></i> {{ p.PublishedPort }}:{{ p.TargetPort }}
|
|
</a>
|
|
<span ng-if="!item.Ports || item.Ports.length === 0">-</span>
|
|
</td>
|
|
<td>{{ item.UpdatedAt | getisodate }}</td>
|
|
<td ng-if="$ctrl.showOwnershipColumn">
|
|
<span>
|
|
<i ng-class="item.ResourceControl.Ownership | ownershipicon" aria-hidden="true"></i>
|
|
{{ item.ResourceControl.Ownership ? item.ResourceControl.Ownership : item.ResourceControl.Ownership = 'public' }}
|
|
</span>
|
|
</td>
|
|
</tr>
|
|
<tr dir-paginate-end ng-show="item.Expanded">
|
|
<td></td>
|
|
<td colspan="8">
|
|
<service-tasks-datatable
|
|
dataset="item.Tasks"
|
|
service-id="item.Id"
|
|
table-key="service-tasks"
|
|
order-by="Status.State"
|
|
nodes="$ctrl.nodes"
|
|
agent-proxy="$ctrl.agentProxy"
|
|
show-task-logs-button="$ctrl.showTaskLogsButton"
|
|
text-filter="$ctrl.state.textFilter"
|
|
><service-tasks-datatable>
|
|
</td>
|
|
</tr>
|
|
<tr ng-if="!$ctrl.dataset">
|
|
<td colspan="8" class="text-center text-muted">Loading...</td>
|
|
</tr>
|
|
<tr ng-if="$ctrl.state.filteredDataSet.length === 0">
|
|
<td colspan="8" class="text-center text-muted">No service available.</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="footer" ng-if="$ctrl.dataset">
|
|
<div class="infoBar" ng-if="$ctrl.state.selectedItemCount !== 0">
|
|
{{ $ctrl.state.selectedItemCount }} item(s) selected
|
|
</div>
|
|
<div class="paginationControls">
|
|
<form class="form-inline">
|
|
<span class="limitSelector">
|
|
<span style="margin-right: 5px;">
|
|
Items per page
|
|
</span>
|
|
<select class="form-control" ng-model="$ctrl.state.paginatedItemLimit" ng-change="$ctrl.changePaginationLimit()">
|
|
<option value="0">All</option>
|
|
<option value="10">10</option>
|
|
<option value="25">25</option>
|
|
<option value="50">50</option>
|
|
<option value="100">100</option>
|
|
</select>
|
|
</span>
|
|
<dir-pagination-controls max-size="5"></dir-pagination-controls>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</rd-widget-body>
|
|
</rd-widget>
|
|
</div>
|