|
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 | + ng-if="!$ctrl.isEnvFromReadonly() && $ctrl.hasOptions()"> |
| 13 | + Prefix |
| 14 | + <small class="pficon pficon-help" |
| 15 | + aria-hidden="true" |
| 16 | + data-toggle="tooltip" |
| 17 | + data-original-title="Optional prefix added to each environment variable name."></small> |
8 | 18 | </div>
|
9 | 19 | </div>
|
10 | 20 | </div>
|
| 21 | + |
| 22 | + <div |
| 23 | + ng-if="showHeader" |
| 24 | + class="key-value-editor-entry key-value-editor-entry-header"> |
| 25 | + <div class="form-group key-value-editor-header key-header"> |
| 26 | + <div class="input-group"> |
| 27 | + <span class="help-block">{{keyPlaceholder}}</span> |
| 28 | + </div> |
| 29 | + </div> |
| 30 | + <div class="form-group key-value-editor-header value-header"> |
| 31 | + <div class="input-group"> |
| 32 | + <span class="help-block">{{valuePlaceholder}}</span> |
| 33 | + </div> |
| 34 | + </div> |
| 35 | + </div> |
| 36 | + |
11 | 37 | <div ng-model="$ctrl.entries" class="environment-from-editor" as-sortable="$ctrl.dragControlListeners">
|
12 | 38 | <div
|
13 | 39 | class="environment-from-entry"
|
|
23 | 49 | </div>
|
24 | 50 | <div ng-if="entry.configMapRef.name || entry.secretRef.name" class="faux-form-control readonly">
|
25 | 51 | 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> |
| 52 | + <span ng-if="entry.configMapRef.name">config map {{entry.configMapRef.name}}.</span> |
| 53 | + <span ng-if="entry.secretRef.name">secret {{entry.secretRef.name}}.</span> |
| 54 | + <span ng-if="entry.prefix">Names will be prefixed with "{{entry.prefix}}"</span> |
28 | 55 | </div>
|
29 | 56 | </div>
|
30 | 57 |
|
|
50 | 77 | </div>
|
51 | 78 | </div>
|
52 | 79 |
|
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> |
| 80 | + <div class="form-group environment-from-input"> |
| 81 | + <div class="environment-from-input" |
| 82 | + ng-if="!$ctrl.isEnvFromReadonly(entry) && $ctrl.hasOptions()" |
| 83 | + ng-class="{ 'has-error': ($ctrl.editEnvironmentFromForm['envfrom-prefix-'+$index].$invalid && $ctrl.editEnvironmentFromForm['envfrom-prefix-'+$index].$touched) }"> |
| 84 | + <label for="envfrom-prefix-{{$index}}" class="sr-only">Prefix</label> |
| 85 | + <input type="text" |
| 86 | + class="form-control" |
| 87 | + placeholder="Add prefix" |
| 88 | + id="envfrom-prefix-{{$index}}" |
| 89 | + name="envfrom-prefix-{{$index}}" |
| 90 | + ng-model="entry.prefix" |
| 91 | + ng-pattern="$ctrl.prefixValidator"> |
| 92 | + |
| 93 | + <span ng-show="$ctrl.editEnvironmentFromForm['envfrom-prefix-'+$index].$touched"> |
| 94 | + <span class="help-block key-validation-error" |
| 95 | + ng-show="$ctrl.editEnvironmentFromForm['envfrom-prefix-'+$index].$error.pattern"> |
| 96 | + <span class="validation-text">{{$ctrl.prefixValidatorError}}</span> |
| 97 | + <span ng-if="$ctrl.prefixValidatorErrorTooltip" class="help action-inline"> |
| 98 | + <a |
| 99 | + aria-hidden="true" |
| 100 | + data-toggle="tooltip" |
| 101 | + data-placement="top" |
| 102 | + data-original-title="{{$ctrl.prefixValidatorErrorTooltip}}"> |
| 103 | + <i class="{{$ctrl.prefixValidatorErrorTooltipIcon}}" |
| 104 | + ng-class="{'pficon pficon-help': !$ctrl.prefixValidatorErrorTooltipIcon}"></i> |
| 105 | + </a> |
| 106 | + </span> |
| 107 | + </span> |
| 108 | + </span> |
| 109 | + </div> |
| 110 | + |
| 111 | + <div ng-if="!$ctrl.isEnvFromReadonly(entry) && $ctrl.hasEntries()" class="environment-from-editor-button"> |
| 112 | + <span |
| 113 | + ng-if="!$ctrl.cannotSort && $ctrl.entries.length > 1" |
| 114 | + class="fa fa-bars sort-row" |
| 115 | + role="button" |
| 116 | + aria-label="Move row" |
| 117 | + aria-grabbed="false" |
| 118 | + as-sortable-item-handle></span> |
| 119 | + <a |
| 120 | + ng-if="!$ctrl.cannotDeleteAny" |
| 121 | + href="" |
| 122 | + class="pficon pficon-close delete-row as-sortable-item-delete" |
| 123 | + role="button" |
| 124 | + aria-label="Delete row" |
| 125 | + ng-click="$ctrl.deleteEntry($index, 1)"></a> |
| 126 | + </div> |
| 127 | + |
| 128 | + <div class="environment-from-view-details"> |
| 129 | + <a |
| 130 | + ng-if="entry.selectedEnvFrom" |
| 131 | + href="" |
| 132 | + ng-click="$ctrl.viewOverlayPanel(entry.selectedEnvFrom, entry.prefix)">View Details</a> |
| 133 | + </div> |
74 | 134 | </div>
|
75 | 135 | </div>
|
76 | 136 |
|
|
0 commit comments