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">
|
2018-06-06 16:12:35 +00:00
|
|
|
<i class="fa" ng-class="$ctrl.titleIcon" aria-hidden="true" style="margin-right: 2px;"></i> {{ $ctrl.titleText }}
|
2017-12-06 11:04:02 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-07-11 14:18:44 +00:00
|
|
|
<div class="searchBar">
|
2017-12-06 11:04:02 +00:00
|
|
|
<i class="fa fa-search searchIcon" aria-hidden="true"></i>
|
2018-08-24 12:30:41 +00:00
|
|
|
<input type="text" class="searchInput" ng-model="$ctrl.state.textFilter" placeholder="Search...">
|
2017-12-06 11:04:02 +00:00
|
|
|
</div>
|
|
|
|
<div class="table-responsive">
|
2018-07-20 16:31:34 +00:00
|
|
|
<table class="table table-hover nowrap-cells">
|
2017-12-06 11:04:02 +00:00
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<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>
|
2018-10-31 02:50:38 +00:00
|
|
|
<th>
|
|
|
|
<a ng-click="$ctrl.changeOrderBy('Id')">
|
|
|
|
Id
|
|
|
|
<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>
|
|
|
|
</a>
|
|
|
|
</th>
|
|
|
|
<th>Actions</th>
|
2017-12-06 11:04:02 +00:00
|
|
|
<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>
|
|
|
|
</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-10-31 02:50:38 +00:00
|
|
|
<td><span class="label label-{{ item.Status.State | taskstatusbadge }}">{{ item.Status.State }}</span></td>
|
2018-05-06 07:15:57 +00:00
|
|
|
<td>
|
2018-05-19 08:47:58 +00:00
|
|
|
<a ng-if="!$ctrl.agentProxy || !item.Container" ui-sref="docker.tasks.task({id: item.Id})" class="monospaced">{{ item.ServiceName }}{{ 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.ServiceName }}{{ item.Slot ? '.' + item.Slot : '' }}{{ '.' + item.Id }}</a>
|
2018-05-06 07:15:57 +00:00
|
|
|
</td>
|
2018-10-31 02:50:38 +00:00
|
|
|
<td>
|
|
|
|
<container-quick-actions ng-if="!$ctrl.agentProxy || !item.Container" container-id="item.ContainerId" task-id="item.Id" status="item.Status.State" state="$ctrl.state"></container-quick-actions>
|
|
|
|
<container-quick-actions ng-if="$ctrl.agentProxy && item.Container" container-id="item.Container.Id" node-name="item.Container.NodeName" status="item.Status.State" state="$ctrl.state"></container-quick-actions>
|
|
|
|
</td>
|
2017-12-06 11:04:02 +00:00
|
|
|
<td ng-if="$ctrl.showSlotColumn">{{ item.Slot ? item.Slot : '-' }}</td>
|
|
|
|
<td>{{ item.NodeId | tasknodename: $ctrl.nodes }}</td>
|
|
|
|
<td>{{ item.Updated | getisodate }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr ng-if="!$ctrl.dataset">
|
2018-05-19 08:47:58 +00:00
|
|
|
<td colspan="6" class="text-center text-muted">Loading...</td>
|
2017-12-06 11:04:02 +00:00
|
|
|
</tr>
|
|
|
|
<tr ng-if="$ctrl.state.filteredDataSet.length === 0">
|
2018-05-19 08:47:58 +00:00
|
|
|
<td colspan="6" class="text-center text-muted">No task available.</td>
|
2017-12-06 11:04:02 +00:00
|
|
|
</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>
|