horizon/openstack_dashboard/static/dashboard/workflow/workflow.service.js
Shaoquan Chen bd6fec1400 JSCS cleanup - openstack_dashboard/static/dashboard/workflow
This patch breaks up workflow.js into small pieces according to
Horizon code style.

Change-Id: I2358020f29de4a235dd35553621b007da70d47fa
Partially-Implements: blueprint jscs-cleanup
2015-06-26 15:40:40 -07:00

55 lines
1.7 KiB
JavaScript

/*
* (c) Copyright 2015 Hewlett-Packard Development Company, L.P.
*
* 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';
/**
* @ngdoc factory
* @name hz.dashboard.workflow.factory:hz.dashboard.workflow.factory
* @module hz.dashboard.workflow
* @kind function
* @description
*
* Injected dependencies:
* - workflow {@link horizon.framework.util.workflow.service:workflow `workflow`}
* - dashboardWorkflowDecorator {@link hz.dashboard.workflow.factory
* :hz.dashboard.workflow.decorator `dashboardWorkflowDecorator`}
*
* @param {Object} The input workflow specification object
* @returns {Object} The decorated workflow specification object, the same
* reference to the input spec object.
*
*/
angular
.module('hz.dashboard.workflow')
.factory('hz.dashboard.workflow.factory', dashboardWorkflow);
dashboardWorkflow.$inject = [
'horizon.framework.util.workflow.service',
'hz.dashboard.workflow.decorator'
];
/////////////
function dashboardWorkflow(workflow, dashboardWorkflowDecorator) {
var decorators = [dashboardWorkflowDecorator];
return function (spec) {
return workflow(spec, decorators);
};
}
})();