Skip to content

Commit 7b90deb

Browse files
committed
Remove emptyMessage var if its not changing
1 parent f65cab0 commit 7b90deb

18 files changed

+331
-238
lines changed

app/scripts/controllers/create/createFromImage.js

-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ angular.module("openshiftConsole")
7575
}
7676
function initAndValidate(scope){
7777

78-
scope.emptyMessage = "Loading...";
7978
scope.name = $routeParams.name;
8079
scope.imageName = imageName;
8180
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
@@ -445,7 +445,6 @@ angular.module('openshiftConsole')
445445

446446
watches.push(DataService.watch($scope.resource, context, function(replicaSets, action, replicaSet) {
447447
$scope.replicaSets = replicaSets.by("metadata.name");
448-
$scope.emptyMessage = "No deployments to show";
449448
if (kind === 'ReplicationController') {
450449
$scope.deploymentsByDeploymentConfig = DeploymentsService.associateDeploymentsToDeploymentConfig($scope.replicaSets);
451450
}

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
@@ -194,8 +194,6 @@ angular.module('openshiftConsole')
194194
services: '=',
195195
portsByRoute: '=',
196196
showNodePorts: '=?',
197-
// Optional empty message to display when there are no pods.
198-
emptyMessage: '=?',
199197
// Alternative header text to display in the 'Name' column.
200198
customNameHeader: '=?',
201199
},

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

+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="imageStream">
16-
{{ emptyMessage }}
16+
Loading...
1717
</div>
1818
<div class="osc-form" ng-show="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
@@ -5400,7 +5400,6 @@ selectedTab:A,
54005400
projectName:o,
54015401
alerts:{},
54025402
forms:{},
5403-
emptyMessage:"Loading...",
54045403
subjectKinds:B,
54055404
newBinding:{
54065405
role:"",
@@ -5882,7 +5881,7 @@ title:b.imagestream,
58825881
link:"project/" + b.project + "/browse/images/" + b.imagestream
58835882
}, {
58845883
title:":" + b.tag
5885-
} ], a.emptyMessage = "Loading...";
5884+
} ];
58865885
var i = [], j = _.debounce(function(d, f) {
58875886
var h = b.imagestream + ":" + b.tag;
58885887
c.get("imagestreamtags", h, f).then(function(b) {
@@ -5895,7 +5894,7 @@ details:"Reason: " + e("getErrorDetails")(b)
58955894
};
58965895
});
58975896
}, 200), k = function(b, c, d) {
5898-
h(b, c), a.emptyMessage = "", "DELETED" === d && (a.alerts.deleted = {
5897+
h(b, c), "DELETED" === d && (a.alerts.deleted = {
58995898
type:"warning",
59005899
message:"This image stream has been deleted."
59015900
});
@@ -6040,7 +6039,7 @@ title:"Deployments",
60406039
link:"project/" + c.project + "/browse/deployments"
60416040
}, {
60426041
title:c.deployment
6043-
} ], a.emptyMessage = "Loading...", a.healthCheckURL = k.healthCheckURL(c.project, "Deployment", c.deployment, "extensions"), d.getAlerts().forEach(function(b) {
6042+
} ], a.healthCheckURL = k.healthCheckURL(c.project, "Deployment", c.deployment, "extensions"), d.getAlerts().forEach(function(b) {
60446043
a.alerts[b.name] = b.data;
60456044
}), d.clearAlerts();
60466045
var p = !1, q = function(b, c) {
@@ -6517,7 +6516,7 @@ kind:s,
65176516
namespace:c.project
65186517
});
65196518
}), x.push(g.watch(a.resource, i, function(c, d, e) {
6520-
a.replicaSets = c.by("metadata.name"), a.emptyMessage = "No deployments to show", "ReplicationController" === s && (a.deploymentsByDeploymentConfig = h.associateDeploymentsToDeploymentConfig(a.replicaSets));
6519+
a.replicaSets = c.by("metadata.name"), "ReplicationController" === s && (a.deploymentsByDeploymentConfig = h.associateDeploymentsToDeploymentConfig(a.replicaSets));
65216520
var f, g;
65226521
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) {
65236522
a.causes = b("deploymentCauses")(a);
@@ -6584,7 +6583,7 @@ g.unwatchAll(x);
65846583
});
65856584
}));
65866585
} ]), angular.module("openshiftConsole").controller("StatefulSetsController", [ "$scope", "$routeParams", "AlertMessageService", "DataService", "ProjectsService", "LabelFilter", "LabelsService", function(a, b, c, d, e, f, g) {
6587-
a.projectName = b.project, a.alerts = a.alerts || {}, a.labelSuggestions = {}, a.emptyMessage = "Loading...", c.getAlerts().forEach(function(b) {
6586+
a.projectName = b.project, a.alerts = a.alerts || {}, a.labelSuggestions = {}, c.getAlerts().forEach(function(b) {
65886587
a.alerts[b.name] = b.data;
65896588
}), c.clearAlerts();
65906589
var h = [];
@@ -6621,7 +6620,7 @@ b.projectName = c.project, b.statefulSetName = c.statefulset, b.forms = {}, b.al
66216620
name:b.statefulSetName,
66226621
kind:"StatefulSet",
66236622
namespace:c.project
6624-
}), b.emptyMessage = "Loading...";
6623+
});
66256624
var j = function(a) {
66266625
return g.copyAndNormalize(a);
66276626
};
@@ -6762,7 +6761,7 @@ b.secretsByType = f.groupSecretsByType(a), b.loaded = !0;
67626761
} ]), angular.module("openshiftConsole").controller("SecretController", [ "$routeParams", "$filter", "$scope", "AlertMessageService", "DataService", "ProjectsService", "SecretsService", function(a, b, c, d, e, f, g) {
67636762
c.projectName = a.project, c.secretName = a.secret, c.view = {
67646763
showSecret:!1
6765-
}, c.alerts = c.alerts || {}, c.emptyMessage = "Loading...", c.breadcrumbs = [ {
6764+
}, c.alerts = c.alerts || {}, c.breadcrumbs = [ {
67666765
title:"Secrets",
67676766
link:"project/" + a.project + "/browse/secrets"
67686767
}, {
@@ -8111,7 +8110,7 @@ value:""
81118110
};
81128111
g.get(d.project).then(_.spread(function(e, g) {
81138112
function q(b) {
8114-
b.emptyMessage = "Loading...", b.name = d.name, b.imageName = y, b.imageTag = d.imageTag, b.namespace = d.namespace, b.buildConfig = {
8113+
b.name = d.name, b.imageName = y, b.imageTag = d.imageTag, b.namespace = d.namespace, b.buildConfig = {
81158114
buildOnSourceChange:!0,
81168115
buildOnImageChange:!0,
81178116
buildOnConfigChange:!0,
@@ -8277,7 +8276,7 @@ f.then(j, j).then(G, G);
82778276
}));
82788277
} ]), 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) {
82798278
var p = (l("displayName"), []);
8280-
a.emptyMessage = "Loading...", a.alerts = [], a.loginBaseUrl = d.openshiftAPIBaseUrl(), a.buildConfigs = {}, a.showParamsTable = !1, a.projectName = c.project, a.fromSampleRepo = c.fromSample, a.breadcrumbs = [ {
8279+
a.alerts = [], a.loginBaseUrl = d.openshiftAPIBaseUrl(), a.buildConfigs = {}, a.showParamsTable = !1, a.projectName = c.project, a.fromSampleRepo = c.fromSample, a.breadcrumbs = [ {
82818280
title:a.projectName,
82828281
link:"project/" + a.projectName
82838282
}, {
@@ -8328,7 +8327,7 @@ d.unwatchAll(p);
83288327
} ]), 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) {
83298328
var u = c.template, v = c.namespace || "";
83308329
if (!u) return void m.toErrorPage("Cannot create from template: a template name was not specified.");
8331-
a.emptyMessage = "Loading...", a.alerts = {}, a.quotaAlerts = {}, a.projectName = c.project, a.projectPromise = $.Deferred(), a.labels = [], a.systemLabels = [], a.breadcrumbs = [ {
8330+
a.alerts = {}, a.quotaAlerts = {}, a.projectName = c.project, a.projectPromise = $.Deferred(), a.labels = [], a.systemLabels = [], a.breadcrumbs = [ {
83328331
title:a.projectName,
83338332
link:"project/" + a.projectName
83348333
}, {
@@ -10772,7 +10771,6 @@ routes:"=",
1077210771
services:"=",
1077310772
portsByRoute:"=",
1077410773
showNodePorts:"=?",
10775-
emptyMessage:"=?",
1077610774
customNameHeader:"=?"
1077710775
},
1077810776
templateUrl:"views/directives/traffic-table.html"

dist/scripts/templates.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -3853,7 +3853,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
38533853
"</tr>\n" +
38543854
"</thead>\n" +
38553855
"<tbody ng-if=\"(routes | hashSize) == 0\">\n" +
3856-
"<tr><td colspan=\"5\"><em>{{emptyMessage || 'No routes to show'}}</em></td></tr>\n" +
3856+
"<tr><td colspan=\"5\"><em>{{emptyMessage}}</em></td></tr>\n" +
38573857
"</tbody>\n" +
38583858
"<tbody ng-if=\"(routes | hashSize) > 0\">\n" +
38593859
"<tr ng-repeat=\"route in routes | orderObjectsByDate : true\">\n" +
@@ -5100,7 +5100,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
51005100
"<div class=\"col-md-12\">\n" +
51015101
"<breadcrumbs breadcrumbs=\"breadcrumbs\"></breadcrumbs>\n" +
51025102
"<div ng-hide=\"imageStream\">\n" +
5103-
"{{ emptyMessage }}\n" +
5103+
"Loading...\n" +
51045104
"</div>\n" +
51055105
"<div class=\"osc-form\" ng-show=\"imageStream\">\n" +
51065106
"<alerts alerts=\"alerts\"></alerts>\n" +
@@ -8857,7 +8857,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
88578857
"</tr>\n" +
88588858
"</thead>\n" +
88598859
"<tbody ng-if=\"(portsByRoute | hashSize) == 0\">\n" +
8860-
"<tr><td colspan=\"7\"><em>{{emptyMessage || 'No routes or ports to show'}}</em></td></tr>\n" +
8860+
"<tr><td colspan=\"7\"><em>No routes or ports to show</em></td></tr>\n" +
88618861
"</tbody>\n" +
88628862
"<tbody ng-if=\"(portsByRoute | hashSize) > 0\">\n" +
88638863
"<tr ng-repeat-start=\"(routeName,ports) in portsByRoute\" style=\"display: none\"></tr>\n" +
@@ -11115,7 +11115,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
1111511115
"<div class=\"col-md-12\">\n" +
1111611116
"<breadcrumbs breadcrumbs=\"breadcrumbs\"></breadcrumbs>\n" +
1111711117
"<div ng-hide=\"template\">\n" +
11118-
"{{ emptyMessage }}\n" +
11118+
"Loading...\n" +
1111911119
"</div>\n" +
1112011120
"<div class=\"osc-form\" ng-show=\"template\">\n" +
1112111121
"<alerts alerts=\"alerts\"></alerts>\n" +

0 commit comments

Comments
 (0)