@@ -24,11 +24,14 @@ angular.module('openshiftConsole')
24
24
$scope . unfilteredDeployments = { } ;
25
25
$scope . replicationControllersByDC = { } ;
26
26
$scope . labelSuggestions = { } ;
27
- $scope . alerts = $scope . alerts || { } ;
28
27
$scope . emptyMessage = "Loading..." ;
29
28
$scope . expandedDeploymentConfigRow = { } ;
30
29
$scope . unfilteredReplicaSets = { } ;
31
30
$scope . unfilteredReplicationControllers = { } ;
31
+ $scope . showEmptyState = true ;
32
+ $scope . clearFilter = function ( ) {
33
+ LabelFilter . clear ( ) ;
34
+ } ;
32
35
33
36
var replicaSets , deploymentsByUID ;
34
37
var annotation = $filter ( 'annotation' ) ;
@@ -38,6 +41,26 @@ angular.module('openshiftConsole')
38
41
var replicationControllersVersion = APIService . getPreferredVersion ( 'replicationcontrollers' ) ;
39
42
var replicaSetsVersion = APIService . getPreferredVersion ( 'replicasets' ) ;
40
43
44
+ function updateFilterMessage ( ) {
45
+
46
+ var unfilteredDeploymentsEmpty =
47
+ _ . isEmpty ( $scope . unfilteredDeploymentConfigs ) &&
48
+ _ . isEmpty ( $scope . unfilteredReplicationControllers ) &&
49
+ _ . isEmpty ( $scope . unfilteredDeployments ) &&
50
+ _ . isEmpty ( $scope . unfilteredReplicaSets ) ;
51
+
52
+ var isFiltering = ! LabelFilter . getLabelSelector ( ) . isEmpty ( ) ;
53
+
54
+ var filteredDeploymentsEmpty =
55
+ _ . isEmpty ( $scope . deploymentConfigs ) &&
56
+ _ . isEmpty ( $scope . replicationControllersByDC [ '' ] ) &&
57
+ _ . isEmpty ( $scope . deployments ) &&
58
+ _ . isEmpty ( $scope . replicaSets ) ;
59
+
60
+ $scope . showEmptyState = unfilteredDeploymentsEmpty ;
61
+ $scope . filterWithZeroResults = isFiltering && filteredDeploymentsEmpty && ! unfilteredDeploymentsEmpty ;
62
+ }
63
+
41
64
var groupReplicaSets = function ( ) {
42
65
if ( ! replicaSets || ! deploymentsByUID ) {
43
66
return ;
@@ -58,6 +81,7 @@ angular.module('openshiftConsole')
58
81
$scope . latestReplicaSetByDeploymentUID [ deploymentUID ] =
59
82
DeploymentsService . getActiveReplicaSet ( replicaSets , deploymentsByUID [ deploymentUID ] ) ;
60
83
} ) ;
84
+ updateFilterMessage ( ) ;
61
85
} ;
62
86
63
87
var watches = [ ] ;
@@ -82,7 +106,7 @@ angular.module('openshiftConsole')
82
106
LabelFilter . setLabelSuggestions ( $scope . labelSuggestions ) ;
83
107
$scope . replicationControllersByDC [ '' ] = LabelFilter . getLabelSelector ( ) . select ( $scope . replicationControllersByDC [ '' ] ) ;
84
108
}
85
- updateFilterWarning ( ) ;
109
+ updateFilterMessage ( ) ;
86
110
87
111
if ( ! action ) {
88
112
// Loading of the page that will create deploymentConfigDeploymentsInProgress structure, which will associate running deployment to his deploymentConfig.
@@ -121,6 +145,7 @@ angular.module('openshiftConsole')
121
145
} ) ) ;
122
146
123
147
watches . push ( DataService . watch ( deploymentConfigsVersion , context , function ( deploymentConfigs ) {
148
+ $scope . deploymentConfigsLoaded = true ;
124
149
$scope . unfilteredDeploymentConfigs = deploymentConfigs . by ( "metadata.name" ) ;
125
150
LabelFilter . addLabelSuggestionsFromResources ( $scope . unfilteredDeploymentConfigs , $scope . labelSuggestions ) ;
126
151
LabelFilter . setLabelSuggestions ( $scope . labelSuggestions ) ;
@@ -131,7 +156,7 @@ angular.module('openshiftConsole')
131
156
$scope . unfilteredReplicationControllers = $scope . replicationControllersByDC [ '' ] ;
132
157
$scope . replicationControllersByDC [ '' ] = LabelFilter . getLabelSelector ( ) . select ( $scope . replicationControllersByDC [ '' ] ) ;
133
158
}
134
- updateFilterWarning ( ) ;
159
+ updateFilterMessage ( ) ;
135
160
Logger . log ( "deploymentconfigs (subscribe)" , $scope . deploymentConfigs ) ;
136
161
} ) ) ;
137
162
@@ -144,54 +169,15 @@ angular.module('openshiftConsole')
144
169
Logger . log ( "deployments (subscribe)" , $scope . unfilteredDeployments ) ;
145
170
} ) ) ;
146
171
147
- function updateFilterWarning ( ) {
148
- var isFiltering = ! LabelFilter . getLabelSelector ( ) . isEmpty ( ) ;
149
- if ( ! isFiltering ) {
150
- delete $scope . alerts [ "deployments" ] ;
151
- return ;
152
- }
153
-
154
- var unfilteredDeploymentsEmpty =
155
- _ . isEmpty ( $scope . unfilteredDeploymentConfigs ) &&
156
- _ . isEmpty ( $scope . unfilteredReplicationControllers ) &&
157
- _ . isEmpty ( $scope . unfilteredDeployments ) &&
158
- _ . isEmpty ( $scope . unfilteredReplicaSets ) ;
159
- if ( unfilteredDeploymentsEmpty ) {
160
- delete $scope . alerts [ "deployments" ] ;
161
- return ;
162
- }
163
-
164
- var filteredDeploymentsEmpty =
165
- _ . isEmpty ( $scope . deploymentConfigs ) &&
166
- _ . isEmpty ( $scope . replicationControllersByDC [ '' ] ) &&
167
- _ . isEmpty ( $scope . deployments ) &&
168
- _ . isEmpty ( $scope . replicaSets ) ;
169
- if ( ! filteredDeploymentsEmpty ) {
170
- delete $scope . alerts [ "deployments" ] ;
171
- return ;
172
- }
173
-
174
- $scope . alerts [ "deployments" ] = {
175
- type : "warning" ,
176
- details : "The active filters are hiding all deployments."
177
- } ;
178
- }
179
-
180
- $scope . showEmptyMessage = function ( ) {
181
- if ( $filter ( 'hashSize' ) ( $scope . replicationControllersByDC ) === 0 ) {
182
- return true ;
183
- }
184
-
185
- if ( $filter ( 'hashSize' ) ( $scope . replicationControllersByDC ) === 1 && $scope . replicationControllersByDC [ '' ] ) {
186
- return true ;
187
- }
188
-
189
- return false ;
172
+ // Does the deployment config table have content?
173
+ $scope . showDeploymentConfigTable = function ( ) {
174
+ var size = _ . size ( $scope . replicationControllersByDC ) ;
175
+ return size > 1 || ( size === 1 && ! $scope . replicationControllersByDC [ '' ] ) ;
190
176
} ;
191
177
192
178
LabelFilter . onActiveFiltersChanged ( function ( labelSelector ) {
193
179
// trigger a digest loop
194
- $scope . $apply ( function ( ) {
180
+ $scope . $evalAsync ( function ( ) {
195
181
$scope . deploymentConfigs = labelSelector . select ( $scope . unfilteredDeploymentConfigs ) ;
196
182
$scope . replicationControllersByDC = DeploymentsService . associateDeploymentsToDeploymentConfig ( $scope . replicationControllers , $scope . deploymentConfigs , true ) ;
197
183
if ( $scope . replicationControllersByDC [ '' ] ) {
@@ -200,7 +186,7 @@ angular.module('openshiftConsole')
200
186
}
201
187
$scope . deployments = labelSelector . select ( $scope . unfilteredDeployments ) ;
202
188
$scope . replicaSets = labelSelector . select ( $scope . unfilteredReplicaSets ) ;
203
- updateFilterWarning ( ) ;
189
+ updateFilterMessage ( ) ;
204
190
} ) ;
205
191
} ) ;
206
192
0 commit comments