Skip to content

Commit 9cca8ae

Browse files
committed
Add link to check server connection to error page for api discovery
Fixes openshift/origin#4368
1 parent 589a660 commit 9cca8ae

File tree

4 files changed

+24
-1
lines changed

4 files changed

+24
-1
lines changed

app/scripts/controllers/util/error.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,21 @@ angular.module('openshiftConsole')
2222
case 'invalid_request':
2323
$scope.errorMessage = "Invalid request";
2424
break;
25+
case 'API_DISCOVERY':
26+
$scope.errorLinks = [{
27+
href: window.location.protocol + "//" + window.OPENSHIFT_CONFIG.api.openshift.hostPort + window.OPENSHIFT_CONFIG.api.openshift.prefix,
28+
label: "Check Server Connection",
29+
target: "_blank"
30+
}];
31+
break;
2532
default:
2633
$scope.errorMessage = "An error has occurred";
2734
}
2835

2936
if (params.error_description) {
3037
$scope.errorDetails = params.error_description;
3138
}
32-
39+
3340
$scope.reloadConsole = function() {
3441
$window.location.href = "/";
3542
};

app/views/util/error.html

+4
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99
<h1>Error</h1>
1010
<h4>{{errorMessage}}</h4>
1111
<div>{{errorDetails}}</div>
12+
<div ng-if="errorLinks.length">
13+
<a ng-repeat-start="link in errorLinks" ng-href="{{link.href}}" target="{{link.target || '_blank'}}">{{link.label}}</a>
14+
<span ng-repeat-end ng-if="!$last" class="action-divider mar-right-xs">|</span>
15+
</div>
1216
<br>
1317
<div>Return to the <a href="" ng-click="reloadConsole()">console</a>.</div>
1418
</div>

dist/scripts/scripts.js

+8
Original file line numberDiff line numberDiff line change
@@ -7841,6 +7841,14 @@ case "invalid_request":
78417841
a.errorMessage = "Invalid request";
78427842
break;
78437843

7844+
case "API_DISCOVERY":
7845+
a.errorLinks = [ {
7846+
href:window.location.protocol + "//" + window.OPENSHIFT_CONFIG.api.openshift.hostPort + window.OPENSHIFT_CONFIG.api.openshift.prefix,
7847+
label:"Check Server Connection",
7848+
target:"_blank"
7849+
} ];
7850+
break;
7851+
78447852
default:
78457853
a.errorMessage = "An error has occurred";
78467854
}

dist/scripts/templates.js

+4
Original file line numberDiff line numberDiff line change
@@ -11485,6 +11485,10 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
1148511485
"<h1>Error</h1>\n" +
1148611486
"<h4>{{errorMessage}}</h4>\n" +
1148711487
"<div>{{errorDetails}}</div>\n" +
11488+
"<div ng-if=\"errorLinks.length\">\n" +
11489+
"<a ng-repeat-start=\"link in errorLinks\" ng-href=\"{{link.href}}\" target=\"{{link.target || '_blank'}}\">{{link.label}}</a>\n" +
11490+
"<span ng-repeat-end ng-if=\"!$last\" class=\"action-divider mar-right-xs\">|</span>\n" +
11491+
"</div>\n" +
1148811492
"<br>\n" +
1148911493
"<div>Return to the <a href=\"\" ng-click=\"reloadConsole()\">console</a>.</div>\n" +
1149011494
"</div>\n" +

0 commit comments

Comments
 (0)