Skip to content

Commit 13474e8

Browse files
committed
Support binding parameters
1 parent 2d2e297 commit 13474e8

File tree

3 files changed

+83
-34
lines changed

3 files changed

+83
-34
lines changed

app/scripts/directives/bindService.js

+79-31
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,11 @@
2323
DataService,
2424
BindingService) {
2525
var ctrl = this;
26-
var validityWatcher;
26+
var bindFormStep;
27+
var bindParametersStep;
28+
var resultsStep;
29+
var selectionValidityWatcher;
30+
var parametersValidityWatcher;
2731
var bindingWatch;
2832
var statusCondition = $filter('statusCondition');
2933
var enableTechPreviewFeature = $filter('enableTechPreviewFeature');
@@ -70,18 +74,31 @@
7074
};
7175

7276
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() {
7386
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;
7790
});
7891
}
7992
};
8093

8194
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;
85102
}
86103
ctrl.nextTitle = "Close";
87104
ctrl.wizardComplete = true;
@@ -141,38 +158,65 @@
141158
});
142159
};
143160

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+
144205
ctrl.$onInit = function() {
145206
ctrl.serviceSelection = {};
146207
ctrl.projectDisplayName = $filter('displayName')(ctrl.project);
147208
ctrl.podPresets = enableTechPreviewFeature('pod_presets');
209+
ctrl.parameterData = {};
148210

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 ];
165212

166213
// We will want ServiceClasses either way for display purposes
167214
DataService.list({
168215
group: 'servicecatalog.k8s.io',
169216
resource: 'serviceclasses'
170217
}, {}).then(function(serviceClasses) {
171218
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();
176220
sortServiceInstances();
177221
});
178222

@@ -198,9 +242,13 @@
198242
};
199243

200244
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;
204252
}
205253
if (bindingWatch) {
206254
DataService.unwatch(bindingWatch);
@@ -216,7 +264,7 @@
216264
};
217265

218266
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){
220268
ctrl.binding = binding;
221269
ctrl.error = null;
222270

app/views/directives/bind-service.html

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,12 @@
22
<pf-wizard
33
hide-header="true"
44
hide-sidebar="true"
5-
hide-back-button="true"
65
step-class="bind-service-wizard-step"
76
wizard-ready="ctrl.wizardReady"
87
next-title="ctrl.nextTitle"
98
on-finish="ctrl.closeWizard()"
109
on-cancel="ctrl.closeWizard()"
11-
wizard-done="ctrl.wizardComplete"
12-
class="pf-wizard-no-back">
10+
wizard-done="ctrl.wizardComplete">
1311
<pf-wizard-step ng-repeat="step in ctrl.steps track by $index"
1412
step-title="{{step.label}}"
1513
next-enabled="step.valid"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<form name="ctrl.parametersForm">
2+
<catalog-parameters model="ctrl.parameterData" parameter-schema="ctrl.parameterSchema"></catalog-parameters>
3+
</form>

0 commit comments

Comments
 (0)