|
8 | 8 | </div>
|
9 | 9 | </div>
|
10 | 10 | <div class="form-group environment-from-editor-header value-header">
|
11 |
| - <div class="input-group"> |
| 11 | + <div class="input-group" |
| 12 | + ng-if="!$ctrl.isEnvFromReadonly() && $ctrl.hasOptions()"> |
12 | 13 | Prefix
|
13 | 14 | <small class="pficon pficon-help"
|
14 | 15 | aria-hidden="true"
|
15 | 16 | data-toggle="tooltip"
|
16 |
| - data-original-title="Optional prefix added to each environment variable name for this resource."></small> |
| 17 | + data-original-title="Optional prefix added to each environment variable name."></small> |
17 | 18 | </div>
|
18 | 19 | </div>
|
19 | 20 | </div>
|
|
48 | 49 | </div>
|
49 | 50 | <div ng-if="entry.configMapRef.name || entry.secretRef.name" class="faux-form-control readonly">
|
50 | 51 | Use all keys and values from
|
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> |
| 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> |
58 | 55 | </div>
|
59 | 56 | </div>
|
60 | 57 |
|
|
81 | 78 | </div>
|
82 | 79 |
|
83 | 80 | <div class="form-group environment-from-input">
|
84 |
| - <div class="environment-from-input" ng-if="!$ctrl.isEnvFromReadonly(entry) && $ctrl.hasOptions()"> |
| 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) }"> |
85 | 84 | <label for="envfrom-prefix-{{$index}}" class="sr-only">Prefix</label>
|
86 | 85 | <input type="text"
|
87 | 86 | class="form-control"
|
88 | 87 | placeholder="Add prefix"
|
89 | 88 | id="envfrom-prefix-{{$index}}"
|
90 | 89 | name="envfrom-prefix-{{$index}}"
|
91 |
| - ng-model="entry.prefix"/> |
| 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> |
92 | 109 | </div>
|
93 | 110 |
|
94 | 111 | <div ng-if="!$ctrl.isEnvFromReadonly(entry) && $ctrl.hasEntries()" class="environment-from-editor-button">
|
|
112 | 129 | <a
|
113 | 130 | ng-if="entry.selectedEnvFrom"
|
114 | 131 | href=""
|
115 |
| - ng-click="$ctrl.viewOverlayPanel(entry.selectedEnvFrom)">View Details</a> |
| 132 | + ng-click="$ctrl.viewOverlayPanel(entry.selectedEnvFrom, entry.prefix)">View Details</a> |
116 | 133 | </div>
|
117 | 134 | </div>
|
118 | 135 | </div>
|
|
0 commit comments