|
9 | 9 | <a ng-href="{{row.apiObject | navigateResourceURL}}" ng-bind-html="row.displayName | highlightKeywords : row.state.filterKeywords"></a>
|
10 | 10 | <div ng-bind-html="row.apiObject.metadata.name | highlightKeywords : row.state.filterKeywords" class="list-row-longname"></div>
|
11 | 11 | </h3>
|
12 |
| - <div class="status-icons"> |
13 |
| - <notification-icon ng-if="!row.expanded" alerts="row.notifications"></notification-icon> |
| 12 | + <div class="status-icons" ng-if="!row.expanded"> |
| 13 | + <notification-icon alerts="row.notifications"></notification-icon> |
| 14 | + <div ng-switch="row.instanceStatus"> |
| 15 | + <span ng-switch-when="failed" |
| 16 | + dynamic-content="{{row.apiObject | serviceInstanceFailedMessage}}" |
| 17 | + data-toggle="tooltip" |
| 18 | + data-trigger="hover" |
| 19 | + class="notification-icon-count"> |
| 20 | + <span class="pficon pficon-error-circle-o" aria-hidden="true"></span> |
| 21 | + <span>Error</span> |
| 22 | + </span> |
| 23 | + <span ng-switch-when="deleted" class="notification-icon-count"> |
| 24 | + <span class="pficon pficon-warning-triangle-o" aria-hidden="true"></span> |
| 25 | + Marked for Deletion |
| 26 | + </span> |
| 27 | + <span ng-switch-when="pending" class="notification-icon-count"> |
| 28 | + <span class="spinner spinner-xs spinner-inline" aria-hidden="true"></span> |
| 29 | + <span>Pending</span> |
| 30 | + </span> |
| 31 | + </div> |
14 | 32 | </div>
|
15 | 33 | </div>
|
16 |
| - <div class="list-pf-details" ng-if="!row.expanded" ng-switch="row.instanceStatus"> |
17 |
| - |
18 |
| - <span ng-switch-when="failed" |
19 |
| - dynamic-content="{{row.apiObject | serviceInstanceFailedMessage}}" |
20 |
| - data-toggle="tooltip" |
21 |
| - data-trigger="hover"> |
22 |
| - <span class="pficon pficon-error-circle-o" aria-hidden="true"></span> |
23 |
| - <span>Error</span> |
24 |
| - </span> |
25 |
| - <span ng-switch-when="deleted"> |
26 |
| - <span class="pficon pficon-warning-triangle-o" aria-hidden="true"></span> |
27 |
| - Marked for Deletion |
| 34 | + <div class="list-pf-details" ng-if="!row.expanded"> |
| 35 | + <span ng-if="!row.bindings.length |
| 36 | + && row.isBindable |
| 37 | + && ({resource: 'serviceinstancecredentials', group: 'servicecatalog.k8s.io'} | canI : 'create')" |
| 38 | + class="hidden-xs hidden-sm"> |
| 39 | + <a href="" ng-click="row.showOverlayPanel('bindService', {target: row.apiObject})"> |
| 40 | + <span class="pficon pficon-add-circle-o" aria-hidden="true"></span> |
| 41 | + Create Binding |
| 42 | + </a> |
28 | 43 | </span>
|
29 |
| - <span ng-switch-when="pending"> |
30 |
| - <span class="spinner spinner-xs spinner-inline" aria-hidden="true"></span> |
31 |
| - <span>Pending</span> |
32 |
| - </span> |
33 |
| - <div ng-switch-default> |
34 |
| - <div class="hidden-xs hidden-sm"> |
35 |
| - <span ng-if="!row.bindings.length |
36 |
| - && row.isBindable |
37 |
| - && ({resource: 'serviceinstancecredentials', group: 'servicecatalog.k8s.io'} | canI : 'create')"> |
38 |
| - <a href="" ng-click="row.showOverlayPanel('bindService', {target: row.apiObject})"> |
39 |
| - <span class="pficon pficon-add-circle-o" aria-hidden="true"></span> |
40 |
| - Create Binding |
41 |
| - </a> |
| 44 | + <div ng-if="row.bindings.length" class="hidden-xs hidden-sm"> |
| 45 | + <span class="component-label">Bindings</span> |
| 46 | + <p ng-if="firstBinding = row.bindings[0]" class="bindings"> |
| 47 | + <span ng-if="application = row.state.applicationsByBinding[firstBinding.metadata.name][0]"> |
| 48 | + {{application.metadata.name}} |
42 | 49 | </span>
|
43 |
| - <span ng-if="row.bindings.length" class="component-label">Bindings</span> |
44 |
| - <p ng-if="firstBinding = row.bindings[0]" class="bindings"> |
45 |
| - <span ng-if="application = row.state.applicationsByBinding[firstBinding.metadata.name][0]"> |
46 |
| - {{application.metadata.name}} |
47 |
| - </span> |
48 |
| - <span ng-if="!application"> |
49 |
| - {{firstBinding.spec.secretName}} |
50 |
| - </span> |
51 |
| - <span ng-if="row.bindings.length > 1"> |
52 |
| - and |
53 |
| - <a |
54 |
| - ng-if="row.bindings.length > 1" |
55 |
| - ng-click="row.toggleExpand($event, true)"> |
56 |
| - {{row.bindings.length -1}} other<span ng-if="row.bindings.length > 2">s</span></a> |
57 |
| - </span> |
58 |
| - </p> |
59 |
| - </div> |
| 50 | + <span ng-if="!application"> |
| 51 | + {{firstBinding.spec.secretName}} |
| 52 | + </span> |
| 53 | + <span ng-if="row.bindings.length > 1"> |
| 54 | + and |
| 55 | + <a |
| 56 | + ng-if="row.bindings.length > 1" |
| 57 | + ng-click="row.toggleExpand($event, true)"> |
| 58 | + {{row.bindings.length -1}} other<span ng-if="row.bindings.length > 2">s</span></a> |
| 59 | + </span> |
| 60 | + </p> |
60 | 61 | </div>
|
61 | 62 | <div
|
62 | 63 | class="hidden-xs"
|
|
0 commit comments