Skip to content

Commit 84d6d04

Browse files
Merge pull request #2426 from spadgett/fix-import-yaml-msg
Automatic merge from submit-queue. Bug 1505281 - Improve import YAML results message Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1505281 See also #2217 List: ![openshift web console 2017-11-01 13-30-16](https://user-images.githubusercontent.com/1167259/32288915-bafbb06c-bf0b-11e7-9322-50c6b252f44c.png) Single resource: ![openshift web console 2017-11-01 13-46-08](https://user-images.githubusercontent.com/1167259/32288894-b2e9ef10-bf0b-11e7-816b-bce315c1b036.png) /kind bug cc @rhamilto @jwforres
2 parents 0bb17eb + 136dd4b commit 84d6d04

File tree

7 files changed

+190
-156
lines changed

7 files changed

+190
-156
lines changed

app/scripts/directives/create/nextSteps.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,19 @@
1515
createdBuildConfig: '<',
1616
onContinue: '<',
1717
showProjectName: '<',
18-
name: '<'
18+
// Optional kind to show in front of the name
19+
kind: '<?',
20+
name: '<',
21+
// Optional action to use instead of "created" (for example, "imported")
22+
actionLabel: '<?'
1923
},
2024
templateUrl: 'views/directives/next-steps.html'
2125
});
2226

2327
function NextSteps(ProcessedTemplateService, Navigate) {
2428
var ctrl = this;
2529
ctrl.showParamsTable = false;
30+
ctrl.actionLabel = ctrl.actionLabel || 'created';
2631

2732
var processedTemplateData = ProcessedTemplateService.getTemplateData();
2833
ctrl.parameters = processedTemplateData.params;

app/scripts/directives/fromFile.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,9 @@ angular.module("openshiftConsole")
302302
}
303303
else if ($scope.isDialog) {
304304
$scope.$emit('fileImportedFromYAMLOrJSON', {
305-
project: $scope.input.selectedProject
305+
project: $scope.input.selectedProject,
306+
resource: $scope.resource,
307+
isList: $scope.isList
306308
});
307309
}
308310
else {

app/scripts/directives/fromFileDialog.js

+10-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,14 @@
6262
ctrl.vendor = annotation(message.template, "openshift.io/provider-display-name");
6363
ctrl.docUrl = annotation(ctrl.template, "openshift.io/documentation-url");
6464
ctrl.supportUrl = annotation(ctrl.template, "openshift.io/support-url");
65-
ctrl.name = "YAML / JSON";
65+
ctrl.actionLabel = "imported";
66+
if (message.isList) {
67+
ctrl.kind = null;
68+
ctrl.name = "YAML / JSON";
69+
} else if (message.resource) {
70+
ctrl.kind = message.resource.kind;
71+
ctrl.name = message.resource.metadata.name;
72+
}
6673
// Need to let the current digest loop finish so the template config step becomes visible or the wizard will throw an error
6774
// from the change to currentStep
6875
$timeout(function() {
@@ -73,6 +80,8 @@
7380
$scope.$on('templateInstantiated', function(event, message) {
7481
ctrl.selectedProject = message.project;
7582
ctrl.name = $filter('displayName')(ctrl.template);
83+
ctrl.actionLabel = null;
84+
ctrl.kind = null;
7685
ctrl.currentStep = "Results";
7786
});
7887

app/views/directives/from-file-dialog.html

+3-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,9 @@
9898
login-base-url="$ctrl.loginBaseUrl"
9999
on-continue="$ctrl.close"
100100
show-project-name="$ctrl.showProjectName"
101-
name="$ctrl.name">
101+
kind="$ctrl.kind"
102+
name="$ctrl.name"
103+
action-label="$ctrl.actionLabel">
102104
</next-steps>
103105
</div>
104106
</div>

app/views/directives/next-steps.html

+12-6
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
<span class="sr-only">Pending</span>
66
<div class="results-message">
77
<h1 class="h3">
8-
<strong>{{$ctrl.name}}</strong> is being created<span ng-if="$ctrl.showProjectName && $ctrl.projectName"> in <strong>{{$ctrl.projectName}}</strong></span>.
8+
<span ng-if="$ctrl.kind">{{$ctrl.kind | humanizeKind | upperFirst}}</span>
9+
<strong>{{$ctrl.name}}</strong> is being {{$ctrl.actionLabel}}<span ng-if="$ctrl.showProjectName && $ctrl.projectName"> in <strong>{{$ctrl.projectName}}</strong></span>.
910
</h1>
1011
</div>
1112
</div>
@@ -16,17 +17,21 @@ <h1 class="h3">
1617
<span class="sr-only">Error</span>
1718
<div class="results-message">
1819
<h1 class="h3">
19-
<strong>{{$ctrl.name}}</strong> failed to be created<span ng-if="$ctrl.showProjectName && $ctrl.projectName"> in <strong>{{$ctrl.projectName}}</strong></span>.
20+
<span ng-if="$ctrl.kind">{{$ctrl.kind | humanizeKind | upperFirst}}</span>
21+
<strong>{{$ctrl.name}}</strong> failed to be {{$ctrl.actionLabel}}<span ng-if="$ctrl.showProjectName && $ctrl.projectName"> in <strong>{{$ctrl.projectName}}</strong></span>.
2022
</h1>
2123
</div>
2224
</div>
2325
</div>
24-
<!-- if the user refreshes the next steps page -->
26+
<!-- Import YAML of a single resource. -->
2527
<div ng-if="!tasks().length">
26-
<div class="results-status results-status-unknown">
28+
<div class="results-status">
29+
<span class="pficon pficon-ok" aria-hidden="true"></span>
30+
<span class="sr-only">Success</span>
2731
<div class="results-message">
2832
<h1 class="h3">
29-
<strong>{{$ctrl.name}}</strong> completed.
33+
<span ng-if="$ctrl.kind">{{$ctrl.kind | humanizeKind | upperFirst}}</span>
34+
<strong>{{$ctrl.name}}</strong> has been {{$ctrl.actionLabel}}<span ng-if="$ctrl.showProjectName && $ctrl.projectName"> in <strong>{{$ctrl.projectName}}</strong> successfully</span>.
3035
</h1>
3136
</div>
3237
</div>
@@ -37,7 +42,8 @@ <h1 class="h3">
3742
<span class="sr-only">Success</span>
3843
<div class="results-message">
3944
<h1 class="h3">
40-
<strong>{{$ctrl.name}}</strong> has been created<span ng-if="$ctrl.showProjectName && $ctrl.projectName"> in <strong>{{$ctrl.projectName}}</strong> successfully</span>.
45+
<span ng-if="$ctrl.kind">{{$ctrl.kind | humanizeKind | upperFirst}}</span>
46+
<strong>{{$ctrl.name}}</strong> has been {{$ctrl.actionLabel}}<span ng-if="$ctrl.showProjectName && $ctrl.projectName"> in <strong>{{$ctrl.projectName}}</strong> successfully</span>.
4147
</h1>
4248
</div>
4349
</div>

0 commit comments

Comments
 (0)