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