octavia-dashboard/octavia_dashboard/static/dashboard/project/lbaasv2/workflow/workflow.service.js

149 lines
4.5 KiB
JavaScript

/*
* Copyright 2015 IBM Corp.
*
* Licensed under the Apache License, Version 2.0 (the 'License');
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an 'AS IS' BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
(function () {
'use strict';
angular
.module('horizon.dashboard.project.lbaasv2')
.factory('horizon.dashboard.project.lbaasv2.workflow.workflow', lbaasWorkflow);
lbaasWorkflow.$inject = [
'horizon.dashboard.project.lbaasv2.basePath',
'horizon.app.core.workflow.factory',
'horizon.framework.util.i18n.gettext'
];
function lbaasWorkflow(basePath, dashboardWorkflow, gettext) {
var workflowSteps = [
{
id: 'loadbalancer',
title: gettext('Load Balancer Details'),
templateUrl: basePath + 'workflow/loadbalancer/loadbalancer.html',
helpUrl: basePath + 'workflow/loadbalancer/loadbalancer.help.html',
formName: 'loadBalancerDetailsForm'
},
{
id: 'listener',
title: gettext('Listener Details'),
templateUrl: basePath + 'workflow/listener/listener.html',
helpUrl: basePath + 'workflow/listener/listener.help.html',
formName: 'listenerDetailsForm'
},
{
id: 'l7policy',
title: gettext('L7 Policy Details'),
templateUrl: basePath + 'workflow/l7policy/l7policy.html',
helpUrl: basePath + 'workflow/l7policy/l7policy.help.html',
formName: 'l7policyDetailsForm'
},
{
id: 'l7rule',
title: gettext('L7 Rule Details'),
templateUrl: basePath + 'workflow/l7rule/l7rule.html',
helpUrl: basePath + 'workflow/l7rule/l7rule.help.html',
formName: 'l7ruleDetailsForm'
},
{
id: 'pool',
title: gettext('Pool Details'),
templateUrl: basePath + 'workflow/pool/pool.html',
helpUrl: basePath + 'workflow/pool/pool.help.html',
formName: 'poolDetailsForm'
},
{
id: 'members',
title: gettext('Pool Members'),
templateUrl: basePath + 'workflow/members/members.html',
helpUrl: basePath + 'workflow/members/members.help.html',
formName: 'memberDetailsForm'
},
{
id: 'monitor',
title: gettext('Monitor Details'),
templateUrl: basePath + 'workflow/monitor/monitor.html',
helpUrl: basePath + 'workflow/monitor/monitor.help.html',
formName: 'monitorDetailsForm'
},
{
id: 'certificates',
title: gettext('SSL Certificates'),
templateUrl: basePath + 'workflow/certificates/certificates.html',
helpUrl: basePath + 'workflow/certificates/certificates.help.html',
formName: 'certificateDetailsForm'
}
];
return initWorkflow;
function initWorkflow(title, icon, steps) {
var filteredSteps = Array.isArray(steps) ? workflowSteps
.filter(
function(workflowStep) {
return steps.some(function(step) {
if (step.id) {
return step.id === workflowStep.id;
} else {
return step === workflowStep.id;
}
});
}
) : workflowSteps;
if (filteredSteps.length === 0) {
filteredSteps = workflowSteps;
}
filteredSteps = filteredSteps.map(function(filteredStep) {
filteredStep = angular.copy(filteredStep);
if (!Array.isArray(steps)) {
return filteredStep;
}
var step = steps.filter(function(step) {
if (step.id) {
return step.id === filteredStep.id;
} else {
return step === filteredStep.id;
}
})[0];
var deferred;
if (step) {
deferred = step.deferred;
}
if (deferred) {
var promise = deferred.promise;
filteredStep.checkReadiness = function() {
return promise;
};
}
return filteredStep;
});
return dashboardWorkflow({
title: title,
btnText: {
finish: title
},
btnIcon: {
finish: icon
},
steps: filteredSteps
});
}
}
})();