|
4 | 4 | class="environment-from-entry environment-from-editor-entry-header">
|
5 | 5 | <div class="form-group environment-from-editor-header value-header">
|
6 | 6 | <div class="input-group">
|
7 |
| - <span class="help-block">{{$ctrl.selectorPlaceholder}}</span> |
| 7 | + {{$ctrl.selectorPlaceholder}} |
| 8 | + </div> |
| 9 | + </div> |
| 10 | + <div class="form-group environment-from-editor-header value-header"> |
| 11 | + <div class="input-group"> |
| 12 | + Prefix |
| 13 | + <small class="pficon pficon-help" |
| 14 | + aria-hidden="true" |
| 15 | + data-toggle="tooltip" |
| 16 | + data-original-title="Optional prefix added to each environment variable name for this resource."></small> |
8 | 17 | </div>
|
9 | 18 | </div>
|
10 | 19 | </div>
|
| 20 | + |
| 21 | + <div |
| 22 | + ng-if="showHeader" |
| 23 | + class="key-value-editor-entry key-value-editor-entry-header"> |
| 24 | + <div class="form-group key-value-editor-header key-header"> |
| 25 | + <div class="input-group"> |
| 26 | + <span class="help-block">{{keyPlaceholder}}</span> |
| 27 | + </div> |
| 28 | + </div> |
| 29 | + <div class="form-group key-value-editor-header value-header"> |
| 30 | + <div class="input-group"> |
| 31 | + <span class="help-block">{{valuePlaceholder}}</span> |
| 32 | + </div> |
| 33 | + </div> |
| 34 | + </div> |
| 35 | + |
11 | 36 | <div ng-model="$ctrl.entries" class="environment-from-editor" as-sortable="$ctrl.dragControlListeners">
|
12 | 37 | <div
|
13 | 38 | class="environment-from-entry"
|
|
23 | 48 | </div>
|
24 | 49 | <div ng-if="entry.configMapRef.name || entry.secretRef.name" class="faux-form-control readonly">
|
25 | 50 | Use all keys and values from
|
26 |
| - <span ng-if="entry.configMapRef.name">config map {{entry.configMapRef.name}}</span> |
27 |
| - <span ng-if="entry.secretRef.name">secret {{entry.secretRef.name}}</span> |
| 51 | + <span ng-if="entry.prefix">prefixed</span> |
| 52 | + <span ng-if="entry.configMapRef.name">config map |
| 53 | + <span ng-if="entry.prefix">"{{entry.prefix}}"</span> |
| 54 | + {{entry.configMapRef.name}}</span> |
| 55 | + <span ng-if="entry.secretRef.name">secret |
| 56 | + <span ng-if="entry.prefix">"{{entry.prefix}}"</span> |
| 57 | + {{entry.secretRef.name}}</span> |
28 | 58 | </div>
|
29 | 59 | </div>
|
30 | 60 |
|
|
50 | 80 | </div>
|
51 | 81 | </div>
|
52 | 82 |
|
53 |
| - <div ng-if="!$ctrl.isEnvFromReadonly(entry) && $ctrl.hasEntries()" class="environment-from-editor-button"> |
54 |
| - <span |
55 |
| - ng-if="!$ctrl.cannotSort && $ctrl.entries.length > 1" |
56 |
| - class="fa fa-bars sort-row" |
57 |
| - role="button" |
58 |
| - aria-label="Move row" |
59 |
| - aria-grabbed="false" |
60 |
| - as-sortable-item-handle></span> |
61 |
| - <a |
62 |
| - ng-if="!$ctrl.cannotDeleteAny" |
63 |
| - href="" |
64 |
| - class="pficon pficon-close delete-row as-sortable-item-delete" |
65 |
| - role="button" |
66 |
| - aria-label="Delete row" |
67 |
| - ng-click="$ctrl.deleteEntry($index, 1)"></a> |
68 |
| - </div> |
69 |
| - <div class="environment-from-view-details"> |
70 |
| - <a |
71 |
| - href="" |
72 |
| - ng-if="entry.selectedEnvFrom" |
73 |
| - ng-click="$ctrl.viewOverlayPanel(entry.selectedEnvFrom)">View Details</a> |
| 83 | + <div class="form-group environment-from-input"> |
| 84 | + <div class="environment-from-input" ng-if="!$ctrl.isEnvFromReadonly(entry) && $ctrl.hasOptions()"> |
| 85 | + <label for="envfrom-prefix-{{$index}}" class="sr-only">Prefix</label> |
| 86 | + <input type="text" |
| 87 | + class="form-control" |
| 88 | + placeholder="Add prefix" |
| 89 | + id="envfrom-prefix-{{$index}}" |
| 90 | + name="envfrom-prefix-{{$index}}" |
| 91 | + ng-model="entry.prefix"/> |
| 92 | + </div> |
| 93 | + |
| 94 | + <div ng-if="!$ctrl.isEnvFromReadonly(entry) && $ctrl.hasEntries()" class="environment-from-editor-button"> |
| 95 | + <span |
| 96 | + ng-if="!$ctrl.cannotSort && $ctrl.entries.length > 1" |
| 97 | + class="fa fa-bars sort-row" |
| 98 | + role="button" |
| 99 | + aria-label="Move row" |
| 100 | + aria-grabbed="false" |
| 101 | + as-sortable-item-handle></span> |
| 102 | + <a |
| 103 | + ng-if="!$ctrl.cannotDeleteAny" |
| 104 | + href="" |
| 105 | + class="pficon pficon-close delete-row as-sortable-item-delete" |
| 106 | + role="button" |
| 107 | + aria-label="Delete row" |
| 108 | + ng-click="$ctrl.deleteEntry($index, 1)"></a> |
| 109 | + </div> |
| 110 | + |
| 111 | + <div class="environment-from-view-details"> |
| 112 | + <a |
| 113 | + ng-if="entry.selectedEnvFrom" |
| 114 | + href="" |
| 115 | + ng-click="$ctrl.viewOverlayPanel(entry.selectedEnvFrom)">View Details</a> |
| 116 | + </div> |
74 | 117 | </div>
|
75 | 118 | </div>
|
76 | 119 |
|
|
0 commit comments