Skip to content

Commit a0d6ce8

Browse files
author
OpenShift Bot
authored
Merge pull request #1271 from spadgett/admitted-route-links
Merged by openshift-bot
2 parents b3a4d80 + e8beac0 commit a0d6ce8

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

app/scripts/filters/resources.js

+7-3
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ angular.module('openshiftConsole')
366366
})
367367
.filter('isWebRoute', function(routeHostFilter) {
368368
return function(route){
369-
return !!routeHostFilter(route) &&
369+
return !!routeHostFilter(route, true) &&
370370
_.get(route, 'spec.wildcardPolicy') !== 'Subdomain';
371371
};
372372
})
@@ -1273,7 +1273,7 @@ angular.module('openshiftConsole')
12731273
};
12741274
})
12751275
.filter('routeHost', function() {
1276-
return function (route) {
1276+
return function (route, onlyAdmitted) {
12771277
if (!_.get(route, 'status.ingress')) {
12781278
return _.get(route, 'spec.host');
12791279
}
@@ -1289,7 +1289,11 @@ angular.module('openshiftConsole')
12891289
}
12901290
});
12911291

1292-
return oldestAdmittedIngress ? oldestAdmittedIngress.host : route.spec.host;
1292+
if (oldestAdmittedIngress) {
1293+
return oldestAdmittedIngress.host;
1294+
}
1295+
1296+
return onlyAdmitted ? null : route.spec.host;
12931297
};
12941298
})
12951299
.filter('isRequestCalculated', function(LimitRangesService) {

dist/scripts/scripts.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -14325,7 +14325,7 @@ namespace:e
1432514325
};
1432614326
} ]).filter("isWebRoute", [ "routeHostFilter", function(a) {
1432714327
return function(b) {
14328-
return !!a(b) && "Subdomain" !== _.get(b, "spec.wildcardPolicy");
14328+
return !!a(b, !0) && "Subdomain" !== _.get(b, "spec.wildcardPolicy");
1432914329
};
1433014330
} ]).filter("routeWebURL", [ "routeHostFilter", function(a) {
1433114331
return function(b, c, d) {
@@ -14833,16 +14833,16 @@ type:b
1483314833
}) :null;
1483414834
};
1483514835
}).filter("routeHost", function() {
14836-
return function(a) {
14836+
return function(a, b) {
1483714837
if (!_.get(a, "status.ingress")) return _.get(a, "spec.host");
1483814838
if (!a.status.ingress) return a.spec.host;
14839-
var b = null;
14839+
var c = null;
1484014840
return angular.forEach(a.status.ingress, function(a) {
1484114841
_.some(a.conditions, {
1484214842
type:"Admitted",
1484314843
status:"True"
14844-
}) && (!b || b.lastTransitionTime > a.lastTransitionTime) && (b = a);
14845-
}), b ? b.host :a.spec.host;
14844+
}) && (!c || c.lastTransitionTime > a.lastTransitionTime) && (c = a);
14845+
}), c ? c.host :b ? null :a.spec.host;
1484614846
};
1484714847
}).filter("isRequestCalculated", [ "LimitRangesService", function(a) {
1484814848
return function(b, c) {

0 commit comments

Comments
 (0)