2017-12-06 11:04:02 +00:00
|
|
|
<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.title }}
|
|
|
|
</div>
|
|
|
|
<div class="settings">
|
|
|
|
<span class="setting" ng-class="{ 'setting-active': $ctrl.state.displayTextFilter }" ng-click="$ctrl.updateDisplayTextFilter()" ng-if="$ctrl.showTextFilter">
|
|
|
|
<i class="fa fa-search" aria-hidden="true"></i> Search
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="searchBar" ng-if="$ctrl.state.displayTextFilter">
|
|
|
|
<i class="fa fa-search searchIcon" aria-hidden="true"></i>
|
2018-02-06 15:58:05 +00:00
|
|
|
<input type="text" class="searchInput" ng-model="$ctrl.state.textFilter" placeholder="Search..." auto-focus>
|
2017-12-06 11:04:02 +00:00
|
|
|
</div>
|
|
|
|
<div class="table-responsive">
|
|
|
|
<table class="table table-hover">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>
|
|
|
|
<a ng-click="$ctrl.changeOrderBy('Id')">
|
|
|
|
Id
|
2018-03-13 05:36:53 +00:00
|
|
|
<i class="fa fa-sort-alpha-down" aria-hidden="true" ng-if="$ctrl.state.orderBy === 'Id' && !$ctrl.state.reverseOrder"></i>
|
|
|
|
<i class="fa fa-sort-alpha-up" aria-hidden="true" ng-if="$ctrl.state.orderBy === 'Id' && $ctrl.state.reverseOrder"></i>
|
2017-12-06 11:04:02 +00:00
|
|
|
</a>
|
|
|
|
</th>
|
|
|
|
<th>
|
|
|
|
<a ng-click="$ctrl.changeOrderBy('Status')">
|
|
|
|
Status
|
2018-03-13 05:36:53 +00:00
|
|
|
<i class="fa fa-sort-alpha-down" aria-hidden="true" ng-if="$ctrl.state.orderBy === 'Status' && !$ctrl.state.reverseOrder"></i>
|
|
|
|
<i class="fa fa-sort-alpha-up" aria-hidden="true" ng-if="$ctrl.state.orderBy === 'Status' && $ctrl.state.reverseOrder"></i>
|
2017-12-06 11:04:02 +00:00
|
|
|
</a>
|
|
|
|
</th>
|
|
|
|
<th ng-if="$ctrl.showSlotColumn">
|
|
|
|
<a ng-click="$ctrl.changeOrderBy('Slot')">
|
|
|
|
Slot
|
2018-03-13 05:36:53 +00:00
|
|
|
<i class="fa fa-sort-alpha-down" aria-hidden="true" ng-if="$ctrl.state.orderBy === 'Slot' && !$ctrl.state.reverseOrder"></i>
|
|
|
|
<i class="fa fa-sort-alpha-up" aria-hidden="true" ng-if="$ctrl.state.orderBy === 'Slot' && $ctrl.state.reverseOrder"></i>
|
2017-12-06 11:04:02 +00:00
|
|
|
</a>
|
|
|
|
</th>
|
|
|
|
<th>
|
|
|
|
<a ng-click="$ctrl.changeOrderBy('NodeId')">
|
|
|
|
Node
|
2018-03-13 05:36:53 +00:00
|
|
|
<i class="fa fa-sort-alpha-down" aria-hidden="true" ng-if="$ctrl.state.orderBy === 'NodeId' && !$ctrl.state.reverseOrder"></i>
|
|
|
|
<i class="fa fa-sort-alpha-up" aria-hidden="true" ng-if="$ctrl.state.orderBy === 'NodeId' && $ctrl.state.reverseOrder"></i>
|
2017-12-06 11:04:02 +00:00
|
|
|
</a>
|
|
|
|
</th>
|
|
|
|
<th>
|
|
|
|
<a ng-click="$ctrl.changeOrderBy('Updated')">
|
|
|
|
Last Update
|
2018-03-13 05:36:53 +00:00
|
|
|
<i class="fa fa-sort-alpha-down" aria-hidden="true" ng-if="$ctrl.state.orderBy === 'Updated' && !$ctrl.state.reverseOrder"></i>
|
|
|
|
<i class="fa fa-sort-alpha-up" aria-hidden="true" ng-if="$ctrl.state.orderBy === 'Updated' && $ctrl.state.reverseOrder"></i>
|
2017-12-06 11:04:02 +00:00
|
|
|
</a>
|
|
|
|
</th>
|
2018-05-06 07:15:57 +00:00
|
|
|
<th>Actions</th>
|
2017-12-06 11:04:02 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr dir-paginate="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}">
|
2018-05-06 07:15:57 +00:00
|
|
|
<td>
|
2018-05-10 15:17:53 +00:00
|
|
|
<a ng-if="!$ctrl.agentProxy || !item.Container" ui-sref="docker.tasks.task({id: item.Id})" class="monospaced">{{ item.Service.Name }}{{ item.Slot ? '.' + item.Slot : '' }}{{ '.' + item.Id }}</a>
|
|
|
|
<a ng-if="$ctrl.agentProxy && item.Container" ui-sref="docker.containers.container({ id: item.Container.Id, nodeName: item.Container.NodeName })" class="monospaced">{{ item.Service.Name }}{{ item.Slot ? '.' + item.Slot : '' }}{{ '.' + item.Id }}</a>
|
2018-05-06 07:15:57 +00:00
|
|
|
</td>
|
2017-12-06 11:04:02 +00:00
|
|
|
<td><span class="label label-{{ item.Status.State | taskstatusbadge }}">{{ item.Status.State }}</span></td>
|
|
|
|
<td ng-if="$ctrl.showSlotColumn">{{ item.Slot ? item.Slot : '-' }}</td>
|
|
|
|
<td>{{ item.NodeId | tasknodename: $ctrl.nodes }}</td>
|
|
|
|
<td>{{ item.Updated | getisodate }}</td>
|
2018-05-06 07:15:57 +00:00
|
|
|
<td>
|
|
|
|
<a ui-sref="docker.tasks.task.logs({id: item.Id})" ng-if="$ctrl.showLogsButton" class="space-right">
|
2018-03-14 05:32:14 +00:00
|
|
|
<i class="fa fa-file-alt" aria-hidden="true"></i> View logs
|
2018-02-28 06:19:28 +00:00
|
|
|
</a>
|
2018-05-06 07:15:57 +00:00
|
|
|
<a ui-sref="docker.containers.container.console({ id: item.Container.Id, nodeName: item.Container.NodeName })" ng-if="$ctrl.agentProxy">
|
|
|
|
<i class="fa fa-terminal" aria-hidden="true"></i> Console
|
|
|
|
</a>
|
2018-02-28 06:19:28 +00:00
|
|
|
</td>
|
2017-12-06 11:04:02 +00:00
|
|
|
</tr>
|
|
|
|
<tr ng-if="!$ctrl.dataset">
|
|
|
|
<td colspan="5" class="text-center text-muted">Loading...</td>
|
|
|
|
</tr>
|
|
|
|
<tr ng-if="$ctrl.state.filteredDataSet.length === 0">
|
|
|
|
<td colspan="5" class="text-center text-muted">No task available.</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
<div class="footer" ng-if="$ctrl.dataset">
|
|
|
|
<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>
|