Skip to content

Commit f0588be

Browse files
committed
Remove emptyMessage var if its not changing
1 parent 36c701f commit f0588be

17 files changed

+20
-37
lines changed

app/scripts/controllers/create/createFromImage.js

-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ angular.module("openshiftConsole")
8686
}
8787
function initAndValidate(scope){
8888

89-
scope.emptyMessage = "Loading...";
9089
scope.name = $routeParams.name;
9190
scope.imageName = imageName;
9291
scope.imageTag = $routeParams.imageTag;

app/scripts/controllers/create/nextSteps.js

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ angular.module("openshiftConsole")
1313
var displayNameFilter = $filter('displayName');
1414
var watches = [];
1515

16-
$scope.emptyMessage = "Loading...";
1716
$scope.alerts = [];
1817
$scope.loginBaseUrl = DataService.openshiftAPIBaseUrl();
1918
$scope.buildConfigs = {};

app/scripts/controllers/deployment.js

-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ angular.module('openshiftConsole')
3838
title: $routeParams.deployment
3939
}
4040
];
41-
$scope.emptyMessage = "Loading...";
4241
$scope.healthCheckURL = Navigate.healthCheckURL($routeParams.project,
4342
"Deployment",
4443
$routeParams.deployment,

app/scripts/controllers/image.js

-3
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@ angular.module('openshiftConsole')
3737
}
3838
];
3939

40-
$scope.emptyMessage = "Loading...";
41-
4240
var watches = [];
4341

4442
var fetchImageStreamTag = _.debounce(function(tagData, context) {
@@ -84,7 +82,6 @@ angular.module('openshiftConsole')
8482

8583
var imageStreamResolved = function(imageStream, context, action) {
8684
populateWithImageStream(imageStream, context);
87-
$scope.emptyMessage = "";
8885
if (action === "DELETED") {
8986
$scope.alerts["deleted"] = {
9087
type: "warning",

app/scripts/controllers/membership.js

-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,6 @@ angular
161161
projectName: projectName,
162162
alerts: {},
163163
forms: {},
164-
emptyMessage: 'Loading...',
165164
subjectKinds: subjectKinds,
166165
newBinding: {
167166
role: '',

app/scripts/controllers/newfromtemplate.js

-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ angular.module('openshiftConsole')
4141
return;
4242
}
4343

44-
$scope.emptyMessage = "Loading...";
4544
$scope.alerts = {};
4645
$scope.quotaAlerts = {};
4746
$scope.projectName = $routeParams.project;

app/scripts/controllers/replicaSet.js

-1
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,6 @@ angular.module('openshiftConsole')
480480

481481
watches.push(DataService.watch($scope.resource, context, function(replicaSets, action, replicaSet) {
482482
$scope.replicaSets = replicaSets.by("metadata.name");
483-
$scope.emptyMessage = "No deployments to show";
484483
if (kind === 'ReplicationController') {
485484
$scope.deploymentsByDeploymentConfig = DeploymentsService.associateDeploymentsToDeploymentConfig($scope.replicaSets);
486485
}

app/scripts/controllers/secret.js

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ angular.module('openshiftConsole')
1616
};
1717

1818
$scope.alerts = $scope.alerts || {};
19-
$scope.emptyMessage = "Loading...";
2019

2120
$scope.breadcrumbs = [
2221
{

app/scripts/controllers/statefulSet.js

-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ angular
2323
namespace: $routeParams.project
2424
});
2525

26-
$scope.emptyMessage = "Loading...";
27-
2826
var updateEnvVars = function(statefulSet) {
2927
// Return a copy so that we don't alter the original object, which is
3028
// cached by DataService. Normalizing would otherwise modify the original.

app/scripts/controllers/statefulSets.js

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ angular.module('openshiftConsole')
55
$scope.projectName = $routeParams.project;
66
$scope.alerts = $scope.alerts || {};
77
$scope.labelSuggestions = {};
8-
$scope.emptyMessage = "Loading...";
98

109
// get and clear any alerts
1110
AlertMessageService.getAlerts().forEach(function(alert) {

app/scripts/directives/resources.js

-2
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,6 @@ angular.module('openshiftConsole')
182182
services: '=',
183183
portsByRoute: '=',
184184
showNodePorts: '=?',
185-
// Optional empty message to display when there are no pods.
186-
emptyMessage: '=?',
187185
// Alternative header text to display in the 'Name' column.
188186
customNameHeader: '=?',
189187
},

app/views/browse/routes.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ <h1>
4949
</tr>
5050
</thead>
5151
<tbody ng-if="(routes | hashSize) == 0">
52-
<tr><td colspan="5"><em>{{emptyMessage || 'No routes to show'}}</em></td></tr>
52+
<tr><td colspan="5"><em>{{emptyMessage}}</em></td></tr>
5353
</tbody>
5454
<tbody ng-if="(routes | hashSize) > 0">
5555
<tr ng-repeat="route in routes | orderObjectsByDate : true">

app/views/create/fromimage.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
<div class="row">
1313
<div class="col-md-12">
1414
<breadcrumbs breadcrumbs="breadcrumbs"></breadcrumbs>
15-
<div ng-if="imageStream">
16-
{{ emptyMessage }}
15+
<div ng-hide="imageStream">
16+
Loading...
1717
</div>
1818
<div class="osc-form" ng-if="imageStream">
1919
<alerts alerts="alerts"></alerts>

app/views/directives/traffic-table.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</tr>
1313
</thead>
1414
<tbody ng-if="(portsByRoute | hashSize) == 0">
15-
<tr><td colspan="7"><em>{{emptyMessage || 'No routes or ports to show'}}</em></td></tr>
15+
<tr><td colspan="7"><em>No routes or ports to show</em></td></tr>
1616
</tbody>
1717
<tbody ng-if="(portsByRoute | hashSize) > 0">
1818
<tr ng-repeat-start="(routeName,ports) in portsByRoute" style="display: none;"></tr>

app/views/newfromtemplate.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<div class="col-md-12">
1414
<breadcrumbs breadcrumbs="breadcrumbs"></breadcrumbs>
1515
<div ng-hide="template">
16-
{{ emptyMessage }}
16+
Loading...
1717
</div>
1818
<div class="osc-form" ng-show="template">
1919
<alerts alerts="alerts"></alerts>

dist/scripts/scripts.js

+10-12
Original file line numberDiff line numberDiff line change
@@ -5558,7 +5558,6 @@ selectedTab:A,
55585558
projectName:o,
55595559
alerts:{},
55605560
forms:{},
5561-
emptyMessage:"Loading...",
55625561
subjectKinds:B,
55635562
newBinding:{
55645563
role:"",
@@ -6036,7 +6035,7 @@ title:b.imagestream,
60366035
link:"project/" + b.project + "/browse/images/" + b.imagestream
60376036
}, {
60386037
title:":" + b.tag
6039-
} ], a.emptyMessage = "Loading...";
6038+
} ];
60406039
var i = [], j = _.debounce(function(d, f) {
60416040
var h = b.imagestream + ":" + b.tag;
60426041
c.get("imagestreamtags", h, f).then(function(b) {
@@ -6049,7 +6048,7 @@ details:"Reason: " + e("getErrorDetails")(b)
60496048
};
60506049
});
60516050
}, 200), k = function(b, c, d) {
6052-
h(b, c), a.emptyMessage = "", "DELETED" === d && (a.alerts.deleted = {
6051+
h(b, c), "DELETED" === d && (a.alerts.deleted = {
60536052
type:"warning",
60546053
message:"This image stream has been deleted."
60556054
});
@@ -6194,7 +6193,7 @@ title:"Deployments",
61946193
link:"project/" + c.project + "/browse/deployments"
61956194
}, {
61966195
title:c.deployment
6197-
} ], a.emptyMessage = "Loading...", a.healthCheckURL = k.healthCheckURL(c.project, "Deployment", c.deployment, "extensions"), d.getAlerts().forEach(function(b) {
6196+
} ], a.healthCheckURL = k.healthCheckURL(c.project, "Deployment", c.deployment, "extensions"), d.getAlerts().forEach(function(b) {
61986197
a.alerts[b.name] = b.data;
61996198
}), d.clearAlerts();
62006199
var p = !1, q = function(b, c) {
@@ -6727,7 +6726,7 @@ kind:s,
67276726
namespace:c.project
67286727
});
67296728
}), x.push(g.watch(a.resource, i, function(c, d, e) {
6730-
a.replicaSets = c.by("metadata.name"), a.emptyMessage = "No deployments to show", "ReplicationController" === s && (a.deploymentsByDeploymentConfig = h.associateDeploymentsToDeploymentConfig(a.replicaSets));
6729+
a.replicaSets = c.by("metadata.name"), "ReplicationController" === s && (a.deploymentsByDeploymentConfig = h.associateDeploymentsToDeploymentConfig(a.replicaSets));
67316730
var f, g;
67326731
e && (f = u(e, "deploymentConfig"), g = e.metadata.name), a.deploymentConfigDeploymentsInProgress = a.deploymentConfigDeploymentsInProgress || {}, d ? "ADDED" === d || "MODIFIED" === d && b("deploymentIsInProgress")(e) ? (a.deploymentConfigDeploymentsInProgress[f] = a.deploymentConfigDeploymentsInProgress[f] || {}, a.deploymentConfigDeploymentsInProgress[f][g] = e) :"MODIFIED" === d && a.deploymentConfigDeploymentsInProgress[f] && delete a.deploymentConfigDeploymentsInProgress[f][g] :a.deploymentConfigDeploymentsInProgress = h.associateRunningDeploymentToDeploymentConfig(a.deploymentsByDeploymentConfig), e ? "DELETED" !== d && (e.causes = b("deploymentCauses")(e)) :angular.forEach(a.replicaSets, function(a) {
67336732
a.causes = b("deploymentCauses")(a);
@@ -6794,7 +6793,7 @@ g.unwatchAll(x);
67946793
});
67956794
}));
67966795
} ]), angular.module("openshiftConsole").controller("StatefulSetsController", [ "$scope", "$routeParams", "AlertMessageService", "DataService", "ProjectsService", "LabelFilter", "LabelsService", function(a, b, c, d, e, f, g) {
6797-
a.projectName = b.project, a.alerts = a.alerts || {}, a.labelSuggestions = {}, a.emptyMessage = "Loading...", c.getAlerts().forEach(function(b) {
6796+
a.projectName = b.project, a.alerts = a.alerts || {}, a.labelSuggestions = {}, c.getAlerts().forEach(function(b) {
67986797
a.alerts[b.name] = b.data;
67996798
}), c.clearAlerts();
68006799
var h = [];
@@ -6831,7 +6830,7 @@ b.projectName = c.project, b.statefulSetName = c.statefulset, b.forms = {}, b.al
68316830
name:b.statefulSetName,
68326831
kind:"StatefulSet",
68336832
namespace:c.project
6834-
}), b.emptyMessage = "Loading...";
6833+
});
68356834
var j = function(a) {
68366835
return g.copyAndNormalize(a);
68376836
};
@@ -6963,7 +6962,7 @@ b.secretsByType = f.groupSecretsByType(a), b.loaded = !0;
69636962
} ]), angular.module("openshiftConsole").controller("SecretController", [ "$routeParams", "$filter", "$scope", "AlertMessageService", "DataService", "ProjectsService", "SecretsService", function(a, b, c, d, e, f, g) {
69646963
c.projectName = a.project, c.secretName = a.secret, c.view = {
69656964
showSecret:!1
6966-
}, c.alerts = c.alerts || {}, c.emptyMessage = "Loading...", c.breadcrumbs = [ {
6965+
}, c.alerts = c.alerts || {}, c.breadcrumbs = [ {
69676966
title:"Secrets",
69686967
link:"project/" + a.project + "/browse/secrets"
69696968
}, {
@@ -8338,7 +8337,7 @@ details:c
83388337
};
83398338
g.get(d.project).then(_.spread(function(e, g) {
83408339
function q(b) {
8341-
b.emptyMessage = "Loading...", b.name = d.name, b.imageName = y, b.imageTag = d.imageTag, b.namespace = d.namespace, b.buildConfig = {
8340+
b.name = d.name, b.imageName = y, b.imageTag = d.imageTag, b.namespace = d.namespace, b.buildConfig = {
83428341
buildOnSourceChange:!0,
83438342
buildOnImageChange:!0,
83448343
buildOnConfigChange:!0,
@@ -8517,7 +8516,7 @@ f.then(j, j).then(J, J);
85178516
}));
85188517
} ]), angular.module("openshiftConsole").controller("NextStepsController", [ "$scope", "$http", "$routeParams", "DataService", "$q", "$location", "ProcessedTemplateService", "TaskList", "$parse", "Navigate", "Logger", "$filter", "imageObjectRefFilter", "failureObjectNameFilter", "ProjectsService", function(a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) {
85198518
var p = (l("displayName"), []);
8520-
a.emptyMessage = "Loading...", a.alerts = [], a.loginBaseUrl = d.openshiftAPIBaseUrl(), a.buildConfigs = {}, a.showParamsTable = !1, a.projectName = c.project, a.fromSampleRepo = c.fromSample, a.breadcrumbs = [ {
8519+
a.alerts = [], a.loginBaseUrl = d.openshiftAPIBaseUrl(), a.buildConfigs = {}, a.showParamsTable = !1, a.projectName = c.project, a.fromSampleRepo = c.fromSample, a.breadcrumbs = [ {
85218520
title:a.projectName,
85228521
link:"project/" + a.projectName
85238522
}, {
@@ -8566,7 +8565,7 @@ d.unwatchAll(p);
85668565
} ]), angular.module("openshiftConsole").controller("NewFromTemplateController", [ "$scope", "$http", "$routeParams", "DataService", "ProcessedTemplateService", "AlertMessageService", "ProjectsService", "QuotaService", "$q", "$location", "TaskList", "$parse", "Navigate", "$filter", "$uibModal", "imageObjectRefFilter", "failureObjectNameFilter", "CachedTemplateService", "keyValueEditorUtils", "Constants", function(a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t) {
85678566
var u = c.template, v = c.namespace || "";
85688567
if (!u) return void m.toErrorPage("Cannot create from template: a template name was not specified.");
8569-
a.emptyMessage = "Loading...", a.alerts = {}, a.quotaAlerts = {}, a.projectName = c.project, a.projectPromise = $.Deferred(), a.labels = [], a.systemLabels = [], a.breadcrumbs = [ {
8568+
a.alerts = {}, a.quotaAlerts = {}, a.projectName = c.project, a.projectPromise = $.Deferred(), a.labels = [], a.systemLabels = [], a.breadcrumbs = [ {
85708569
title:a.projectName,
85718570
link:"project/" + a.projectName
85728571
}, {
@@ -10999,7 +10998,6 @@ routes:"=",
1099910998
services:"=",
1100010999
portsByRoute:"=",
1100111000
showNodePorts:"=?",
11002-
emptyMessage:"=?",
1100311001
customNameHeader:"=?"
1100411002
},
1100511003
templateUrl:"views/directives/traffic-table.html"

dist/scripts/templates.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -3779,7 +3779,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
37793779
"</tr>\n" +
37803780
"</thead>\n" +
37813781
"<tbody ng-if=\"(routes | hashSize) == 0\">\n" +
3782-
"<tr><td colspan=\"5\"><em>{{emptyMessage || 'No routes to show'}}</em></td></tr>\n" +
3782+
"<tr><td colspan=\"5\"><em>{{emptyMessage}}</em></td></tr>\n" +
37833783
"</tbody>\n" +
37843784
"<tbody ng-if=\"(routes | hashSize) > 0\">\n" +
37853785
"<tr ng-repeat=\"route in routes | orderObjectsByDate : true\">\n" +
@@ -5025,8 +5025,8 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
50255025
"<div class=\"row\">\n" +
50265026
"<div class=\"col-md-12\">\n" +
50275027
"<breadcrumbs breadcrumbs=\"breadcrumbs\"></breadcrumbs>\n" +
5028-
"<div ng-if=\"imageStream\">\n" +
5029-
"{{ emptyMessage }}\n" +
5028+
"<div ng-hide=\"imageStream\">\n" +
5029+
"Loading...\n" +
50305030
"</div>\n" +
50315031
"<div class=\"osc-form\" ng-if=\"imageStream\">\n" +
50325032
"<alerts alerts=\"alerts\"></alerts>\n" +
@@ -8870,7 +8870,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
88708870
"</tr>\n" +
88718871
"</thead>\n" +
88728872
"<tbody ng-if=\"(portsByRoute | hashSize) == 0\">\n" +
8873-
"<tr><td colspan=\"7\"><em>{{emptyMessage || 'No routes or ports to show'}}</em></td></tr>\n" +
8873+
"<tr><td colspan=\"7\"><em>No routes or ports to show</em></td></tr>\n" +
88748874
"</tbody>\n" +
88758875
"<tbody ng-if=\"(portsByRoute | hashSize) > 0\">\n" +
88768876
"<tr ng-repeat-start=\"(routeName,ports) in portsByRoute\" style=\"display: none\"></tr>\n" +
@@ -11142,7 +11142,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
1114211142
"<div class=\"col-md-12\">\n" +
1114311143
"<breadcrumbs breadcrumbs=\"breadcrumbs\"></breadcrumbs>\n" +
1114411144
"<div ng-hide=\"template\">\n" +
11145-
"{{ emptyMessage }}\n" +
11145+
"Loading...\n" +
1114611146
"</div>\n" +
1114711147
"<div class=\"osc-form\" ng-show=\"template\">\n" +
1114811148
"<alerts alerts=\"alerts\"></alerts>\n" +

0 commit comments

Comments
 (0)