Skip to content

Commit 768d51d

Browse files
Merge pull request #2201 from cdcabrera/issue-envfrom-link
Automatic merge from submit-queue. EnvFrom Config Map and Secret Link EnvFrom Issue Updates for... EnvFrom issue fixes for CSS, copy, and UX. Updates parts of #2182 - Config Map and Secret Link Initial work is aimed at re-opening the discussion around behavior... this PR initially... - has the link display until the envFrom form aspect is edited, then it hides. - when the link is displayed it navigates directly to the secret or config map view ![oct-02-2017 14-32-04](https://user-images.githubusercontent.com/3761375/31093083-8a0a87ac-a77e-11e7-887d-f1cedd3d773d.gif) @beanh66
2 parents c239f36 + 2e1dbef commit 768d51d

File tree

6 files changed

+112
-11
lines changed

6 files changed

+112
-11
lines changed

app/scripts/directives/editEnvironmentFrom.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,15 @@
2727

2828
ctrl.setFocusClass = 'edit-environment-from-set-focus-' + uniqueId;
2929

30+
ctrl.viewOverlayPanel = function(entry) {
31+
ctrl.overlayPaneEntryDetails = entry;
32+
ctrl.overlayPanelVisible = true;
33+
};
34+
35+
ctrl.closeOverlayPanel = function() {
36+
ctrl.overlayPanelVisible = false;
37+
};
38+
3039
var addEntry = function(entries, entry) {
3140
entries && entries.push(entry || {});
3241
};
@@ -61,7 +70,6 @@
6170
return humanizeKind(object.kind);
6271
};
6372

64-
//ctrl.uniqueForValue = utils.uniqueForValue;
6573
ctrl.dragControlListeners = {
6674
accept: function (sourceItemHandleScope, destSortableScope) {
6775
return sourceItemHandleScope.itemScope.sortableScope.$id === destSortableScope.$id;

app/styles/_kve.less

+11-1
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@
118118
.key-value-editor-entry,
119119
.environment-from-entry {
120120
display: table;
121+
margin-bottom: 15px;
121122
padding-right: (@as-sortable-item-button-width * 2);
122123
position: relative;
123124
table-layout: fixed;
@@ -127,11 +128,12 @@
127128
float: left;
128129
padding-right: 5px;
129130
position: relative;
130-
width: 50%;
131+
width: auto;
131132
}
132133
}
133134
.environment-from-input {
134135
float: left;
136+
margin-bottom: 0;
135137
padding-right: 5px;
136138
width: 100%;
137139
@media(min-width: @screen-md-min) {
@@ -144,6 +146,13 @@
144146
}
145147
}
146148
}
149+
.environment-from-entry {
150+
.environment-from-view-details {
151+
float: left;
152+
line-height: 1;
153+
padding: 6px 0 0;
154+
}
155+
}
147156

148157
.key-value-editor-input .ui-select {
149158
@media(min-width: @screen-md-min) {
@@ -163,6 +172,7 @@
163172
.key-value-editor .key-value-editor-input,
164173
.key-value-editor-header {
165174
float: left;
175+
margin-bottom: 0;
166176
padding-right: 5px;
167177
width: 50%;
168178
}

app/views/directives/edit-environment-from.html

+46
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,12 @@
6868
aria-label="Delete row"
6969
ng-click="$ctrl.deleteEntry($index, 1)"></a>
7070
</div>
71+
<div class="environment-from-view-details">
72+
<a
73+
ng-if="entry.selectedEnvFrom"
74+
href=""
75+
ng-click="$ctrl.viewOverlayPanel(entry.selectedEnvFrom)">View Details</a>
76+
</div>
7177
</div>
7278

7379
<div class="environment-from-entry form-group" ng-if="!$ctrl.cannotAdd">
@@ -78,4 +84,44 @@
7884
ng-click="$ctrl.onAddRow()">{{ $ctrl.addRowLink }}</a>
7985
</div>
8086
</div>
87+
88+
<overlay-panel class="add-config-to-application" show-panel="$ctrl.overlayPanelVisible" show-close="true" handle-close="$ctrl.closeOverlayPanel">
89+
<div class="dialog-title">
90+
<h3>Value Details</h3>
91+
</div>
92+
<div class="modal-body">
93+
<h4>{{$ctrl.overlayPaneEntryDetails.metadata.name}}
94+
<small class="muted">&ndash; {{$ctrl.overlayPaneEntryDetails.kind | humanizeKind : true}}</small></h4>
95+
96+
<div ng-if="!($ctrl.overlayPaneEntryDetails.data | size)" class="empty-state-message text-center">
97+
The {{$ctrl.overlayPaneEntryDetails.kind | humanizeKind}} has no properties.
98+
</div>
99+
100+
<div ng-if="$ctrl.overlayPaneEntryDetails.data | size" class="table-responsive scroll-shadows-horizontal">
101+
<table class="table table-bordered table-bordered-columns config-map-table key-value-table">
102+
<tbody>
103+
<tr ng-repeat="(prop, value) in $ctrl.overlayPaneEntryDetails.data">
104+
<td class="key">{{prop}}</td>
105+
<td class="value">
106+
<truncate-long-text
107+
ng-if="$ctrl.overlayPaneEntryDetails.kind === 'ConfigMap'"
108+
content="value"
109+
limit="50"
110+
newline-limit="2"
111+
expandable="true">
112+
</truncate-long-text>
113+
114+
<span ng-if="$ctrl.overlayPaneEntryDetails.kind === 'Secret'">&#42;&#42;&#42;&#42;&#42;</span>
115+
</td>
116+
</tr>
117+
</tbody>
118+
</table>
119+
</div>
120+
</div>
121+
<div class="modal-footer">
122+
<button ng-click="$ctrl.closeOverlayPanel()"
123+
type="button"
124+
class="btn btn-primary pull-right">Close</button>
125+
</div>
126+
</overlay-panel>
81127
</ng-form>

dist/scripts/scripts.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -9156,7 +9156,11 @@ n[e.key] = e.value;
91569156
angular.module("openshiftConsole").component("editEnvironmentFrom", {
91579157
controller: [ "$attrs", "$filter", "keyValueEditorUtils", function(e, t, n) {
91589158
var a = this, r = t("canI"), o = t("humanizeKind"), i = _.uniqueId();
9159-
a.setFocusClass = "edit-environment-from-set-focus-" + i;
9159+
a.setFocusClass = "edit-environment-from-set-focus-" + i, a.viewOverlayPanel = function(e) {
9160+
a.overlayPaneEntryDetails = e, a.overlayPanelVisible = !0;
9161+
}, a.closeOverlayPanel = function() {
9162+
a.overlayPanelVisible = !1;
9163+
};
91609164
var s = function(e, t) {
91619165
e && e.push(t || {});
91629166
};

dist/scripts/templates.js

+32
Original file line numberDiff line numberDiff line change
@@ -6696,11 +6696,43 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
66966696
"<span ng-if=\"!$ctrl.cannotSort && $ctrl.entries.length > 1\" class=\"fa fa-bars sort-row\" role=\"button\" aria-label=\"Move row\" aria-grabbed=\"false\" as-sortable-item-handle></span>\n" +
66976697
"<a ng-if=\"!$ctrl.cannotDeleteAny\" href=\"\" class=\"pficon pficon-close delete-row as-sortable-item-delete\" role=\"button\" aria-label=\"Delete row\" ng-click=\"$ctrl.deleteEntry($index, 1)\"></a>\n" +
66986698
"</div>\n" +
6699+
"<div class=\"environment-from-view-details\">\n" +
6700+
"<a ng-if=\"entry.selectedEnvFrom\" href=\"\" ng-click=\"$ctrl.viewOverlayPanel(entry.selectedEnvFrom)\">View Details</a>\n" +
6701+
"</div>\n" +
66996702
"</div>\n" +
67006703
"<div class=\"environment-from-entry form-group\" ng-if=\"!$ctrl.cannotAdd\">\n" +
67016704
"<a href=\"\" class=\"add-row-link\" role=\"button\" ng-click=\"$ctrl.onAddRow()\">{{ $ctrl.addRowLink }}</a>\n" +
67026705
"</div>\n" +
67036706
"</div>\n" +
6707+
"<overlay-panel class=\"add-config-to-application\" show-panel=\"$ctrl.overlayPanelVisible\" show-close=\"true\" handle-close=\"$ctrl.closeOverlayPanel\">\n" +
6708+
"<div class=\"dialog-title\">\n" +
6709+
"<h3>Value Details</h3>\n" +
6710+
"</div>\n" +
6711+
"<div class=\"modal-body\">\n" +
6712+
"<h4>{{$ctrl.overlayPaneEntryDetails.metadata.name}}\n" +
6713+
"<small class=\"muted\">&ndash; {{$ctrl.overlayPaneEntryDetails.kind | humanizeKind : true}}</small></h4>\n" +
6714+
"<div ng-if=\"!($ctrl.overlayPaneEntryDetails.data | size)\" class=\"empty-state-message text-center\">\n" +
6715+
"The {{$ctrl.overlayPaneEntryDetails.kind | humanizeKind}} has no properties.\n" +
6716+
"</div>\n" +
6717+
"<div ng-if=\"$ctrl.overlayPaneEntryDetails.data | size\" class=\"table-responsive scroll-shadows-horizontal\">\n" +
6718+
"<table class=\"table table-bordered table-bordered-columns config-map-table key-value-table\">\n" +
6719+
"<tbody>\n" +
6720+
"<tr ng-repeat=\"(prop, value) in $ctrl.overlayPaneEntryDetails.data\">\n" +
6721+
"<td class=\"key\">{{prop}}</td>\n" +
6722+
"<td class=\"value\">\n" +
6723+
"<truncate-long-text ng-if=\"$ctrl.overlayPaneEntryDetails.kind === 'ConfigMap'\" content=\"value\" limit=\"50\" newline-limit=\"2\" expandable=\"true\">\n" +
6724+
"</truncate-long-text>\n" +
6725+
"<span ng-if=\"$ctrl.overlayPaneEntryDetails.kind === 'Secret'\">&#42;&#42;&#42;&#42;&#42;</span>\n" +
6726+
"</td>\n" +
6727+
"</tr>\n" +
6728+
"</tbody>\n" +
6729+
"</table>\n" +
6730+
"</div>\n" +
6731+
"</div>\n" +
6732+
"<div class=\"modal-footer\">\n" +
6733+
"<button ng-click=\"$ctrl.closeOverlayPanel()\" type=\"button\" class=\"btn btn-primary pull-right\">Close</button>\n" +
6734+
"</div>\n" +
6735+
"</overlay-panel>\n" +
67046736
"</ng-form>"
67056737
);
67066738

dist/styles/main.css

+9-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)