|
23 | 23 | DataService,
|
24 | 24 | BindingService) {
|
25 | 25 | var ctrl = this;
|
26 |
| - var validityWatcher; |
| 26 | + var bindFormStep; |
| 27 | + var bindParametersStep; |
| 28 | + var resultsStep; |
| 29 | + var selectionValidityWatcher; |
| 30 | + var parametersValidityWatcher; |
27 | 31 | var bindingWatch;
|
28 | 32 | var statusCondition = $filter('statusCondition');
|
29 | 33 | var enableTechPreviewFeature = $filter('enableTechPreviewFeature');
|
|
70 | 74 | };
|
71 | 75 |
|
72 | 76 | var showBind = function() {
|
| 77 | + ctrl.nextTitle = bindParametersStep.hidden ? 'Bind' : 'Next >'; |
| 78 | + if (ctrl.podPresets && !selectionValidityWatcher) { |
| 79 | + selectionValidityWatcher = $scope.$watch("ctrl.selectionForm.$valid", function(isValid) { |
| 80 | + bindFormStep.valid = isValid; |
| 81 | + }); |
| 82 | + } |
| 83 | + }; |
| 84 | + |
| 85 | + var showParameters = function() { |
73 | 86 | ctrl.nextTitle = 'Bind';
|
74 |
| - if (ctrl.podPresets) { |
75 |
| - validityWatcher = $scope.$watch("ctrl.selectionForm.$valid", function(isValid) { |
76 |
| - ctrl.steps[0].valid = isValid; |
| 87 | + if (!parametersValidityWatcher) { |
| 88 | + parametersValidityWatcher = $scope.$watch("ctrl.parametersForm.$valid", function(isValid) { |
| 89 | + bindParametersStep.valid = isValid; |
77 | 90 | });
|
78 | 91 | }
|
79 | 92 | };
|
80 | 93 |
|
81 | 94 | var showResults = function() {
|
82 |
| - if (validityWatcher) { |
83 |
| - validityWatcher(); |
84 |
| - validityWatcher = undefined; |
| 95 | + if (selectionValidityWatcher) { |
| 96 | + selectionValidityWatcher(); |
| 97 | + selectionValidityWatcher = undefined; |
| 98 | + } |
| 99 | + if (parametersValidityWatcher) { |
| 100 | + parametersValidityWatcher(); |
| 101 | + parametersValidityWatcher = undefined; |
85 | 102 | }
|
86 | 103 | ctrl.nextTitle = "Close";
|
87 | 104 | ctrl.wizardComplete = true;
|
|
141 | 158 | });
|
142 | 159 | };
|
143 | 160 |
|
| 161 | + bindFormStep = { |
| 162 | + id: 'bindForm', |
| 163 | + label: 'Binding', |
| 164 | + view: 'views/directives/bind-service/bind-service-form.html', |
| 165 | + valid: true, |
| 166 | + onShow: showBind |
| 167 | + }; |
| 168 | + |
| 169 | + bindParametersStep = { |
| 170 | + id: 'bindParameters', |
| 171 | + label: 'Parameters', |
| 172 | + view: 'views/directives/bind-service/bind-parameters.html', |
| 173 | + hidden: true, |
| 174 | + onShow: showParameters |
| 175 | + }; |
| 176 | + |
| 177 | + resultsStep = { |
| 178 | + id: 'results', |
| 179 | + label: 'Results', |
| 180 | + view: 'views/directives/bind-service/results.html', |
| 181 | + valid: true, |
| 182 | + onShow: showResults |
| 183 | + }; |
| 184 | + |
| 185 | + var updateInstance = function() { |
| 186 | + if (!ctrl.serviceClasses) { |
| 187 | + return; |
| 188 | + } |
| 189 | + |
| 190 | + var instance = ctrl.target.kind === 'Instance' ? ctrl.target : ctrl.serviceToBind; |
| 191 | + if (!instance) { |
| 192 | + return; |
| 193 | + } |
| 194 | + |
| 195 | + ctrl.serviceClass = ctrl.serviceClasses[instance.spec.serviceClassName]; |
| 196 | + ctrl.serviceClassName = instance.spec.serviceClassName; |
| 197 | + ctrl.plan = BindingService.getPlanForInstance(instance, ctrl.serviceClass); |
| 198 | + ctrl.parameterSchema = _.get(ctrl.plan, 'alphaBindingCreateParameterSchema'); |
| 199 | + bindParametersStep.hidden = !_.has(ctrl.parameterSchema, 'properties'); |
| 200 | + ctrl.nextTitle = bindParametersStep.hidden ? 'Bind' : 'Next >'; |
| 201 | + }; |
| 202 | + |
| 203 | + $scope.$watch("ctrl.serviceToBind", updateInstance); |
| 204 | + |
144 | 205 | ctrl.$onInit = function() {
|
145 | 206 | ctrl.serviceSelection = {};
|
146 | 207 | ctrl.projectDisplayName = $filter('displayName')(ctrl.project);
|
147 | 208 | ctrl.podPresets = enableTechPreviewFeature('pod_presets');
|
| 209 | + ctrl.parameterData = {}; |
148 | 210 |
|
149 |
| - ctrl.steps = [ |
150 |
| - { |
151 |
| - id: 'bindForm', |
152 |
| - label: "Binding", |
153 |
| - view: 'views/directives/bind-service/bind-service-form.html', |
154 |
| - valid: true, |
155 |
| - onShow: showBind |
156 |
| - }, |
157 |
| - { |
158 |
| - label: 'Results', |
159 |
| - id: 'results', |
160 |
| - view: 'views/directives/bind-service/results.html', |
161 |
| - valid: true, |
162 |
| - onShow: showResults |
163 |
| - } |
164 |
| - ]; |
| 211 | + ctrl.steps = [ bindFormStep, bindParametersStep, resultsStep ]; |
165 | 212 |
|
166 | 213 | // We will want ServiceClasses either way for display purposes
|
167 | 214 | DataService.list({
|
168 | 215 | group: 'servicecatalog.k8s.io',
|
169 | 216 | resource: 'serviceclasses'
|
170 | 217 | }, {}).then(function(serviceClasses) {
|
171 | 218 | ctrl.serviceClasses = serviceClasses.by('metadata.name');
|
172 |
| - if (ctrl.target.kind === 'Instance') { |
173 |
| - ctrl.serviceClass = ctrl.serviceClasses[ctrl.target.spec.serviceClassName]; |
174 |
| - ctrl.serviceClassName = ctrl.target.spec.serviceClassName; |
175 |
| - } |
| 219 | + updateInstance(); |
176 | 220 | sortServiceInstances();
|
177 | 221 | });
|
178 | 222 |
|
|
198 | 242 | };
|
199 | 243 |
|
200 | 244 | ctrl.$onDestroy = function() {
|
201 |
| - if (validityWatcher) { |
202 |
| - validityWatcher(); |
203 |
| - validityWatcher = undefined; |
| 245 | + if (selectionValidityWatcher) { |
| 246 | + selectionValidityWatcher(); |
| 247 | + selectionValidityWatcher = undefined; |
| 248 | + } |
| 249 | + if (parametersValidityWatcher) { |
| 250 | + parametersValidityWatcher(); |
| 251 | + parametersValidityWatcher = undefined; |
204 | 252 | }
|
205 | 253 | if (bindingWatch) {
|
206 | 254 | DataService.unwatch(bindingWatch);
|
|
216 | 264 | };
|
217 | 265 |
|
218 | 266 | var serviceClass = BindingService.getServiceClassForInstance(svcToBind, ctrl.serviceClasses);
|
219 |
| - BindingService.bindService(svcToBind, application, serviceClass).then(function(binding){ |
| 267 | + BindingService.bindService(svcToBind, application, serviceClass, ctrl.parameterData).then(function(binding){ |
220 | 268 | ctrl.binding = binding;
|
221 | 269 | ctrl.error = null;
|
222 | 270 |
|
|
0 commit comments