Skip to content

Commit 0483125

Browse files
committed
Support binding parameters
1 parent 72f8452 commit 0483125

File tree

4 files changed

+87
-37
lines changed

4 files changed

+87
-37
lines changed

app/scripts/constants.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,10 @@ angular.extend(window.OPENSHIFT_CONSTANTS, {
8888
DISABLE_GLOBAL_EVENT_WATCH: false,
8989
ENABLE_TECH_PREVIEW_FEATURE: {
9090
// Enable the new landing page and service catalog experience
91-
service_catalog_landing_page: false,
91+
service_catalog_landing_page: true,
9292
// Set to `true` when the template service broker is enabled for the cluster in master-config.yaml
9393
template_service_broker: false,
94-
pod_presets: false
94+
pod_presets: true
9595
},
9696

9797
SAMPLE_PIPELINE_TEMPLATE: {

app/scripts/directives/bindService.js

+81-32
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

@@ -69,17 +73,31 @@
6973
};
7074

7175
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+
};
7383

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+
}
7791
};
7892

7993
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;
83101
}
84102
ctrl.nextTitle = "Close";
85103
ctrl.wizardComplete = true;
@@ -139,37 +157,64 @@
139157
});
140158
};
141159

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+
142204
ctrl.$onInit = function() {
143205
ctrl.serviceSelection = {};
144206
ctrl.projectDisplayName = $filter('displayName')(ctrl.project);
207+
ctrl.parameterData = {};
145208

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

163211
// We will want ServiceClasses either way for display purposes
164212
DataService.list({
165213
group: 'servicecatalog.k8s.io',
166214
resource: 'serviceclasses'
167215
}, {}).then(function(serviceClasses) {
168216
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();
173218
sortServiceInstances();
174219
});
175220

@@ -193,9 +238,13 @@
193238
};
194239

195240
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;
199248
}
200249
if (bindingWatch) {
201250
DataService.unwatch(bindingWatch);
@@ -211,7 +260,7 @@
211260
};
212261

213262
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){
215264
ctrl.binding = binding;
216265
ctrl.error = null;
217266

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)