You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					52 lines
				
				2.5 KiB
			
		
		
			
		
	
	
					52 lines
				
				2.5 KiB
			| 
											2 years ago
										 | /* 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. | ||
|  |  */ | ||
|  | angular.module('flowableModeler') | ||
|  |     .controller('AppDefinitionToolbarController', ['$scope', '$http', '$modal', '$q', '$rootScope', '$translate', '$location', function ($scope, $http, $modal, $q, $rootScope, $translate, $location) { | ||
|  | 
 | ||
|  |     	var toolbarItems = APP_DEFINITION_TOOLBAR_CONFIG.items; | ||
|  |         $scope.items = []; | ||
|  |          | ||
|  |         for (var i = 0; i < toolbarItems.length; i++) | ||
|  |         { | ||
|  |         	$scope.items.push(toolbarItems[i]); | ||
|  |         } | ||
|  |          | ||
|  |         $scope.secondaryItems = APP_DEFINITION_TOOLBAR_CONFIG.secondaryItems; | ||
|  | 
 | ||
|  |         // Call configurable click handler (From http://stackoverflow.com/questions/359788/how-to-execute-a-javascript-function-when-i-have-its-name-as-a-string)
 | ||
|  |         var executeFunctionByName = function(functionName, context /*, args */) { | ||
|  |             var args = Array.prototype.slice.call(arguments).splice(2); | ||
|  |             var namespaces = functionName.split("."); | ||
|  |             var func = namespaces.pop(); | ||
|  |             for(var i = 0; i < namespaces.length; i++) { | ||
|  |                 context = context[namespaces[i]]; | ||
|  |             } | ||
|  |             return context[func].apply(this, args); | ||
|  |         }; | ||
|  | 
 | ||
|  |         // Click handler for toolbar buttons
 | ||
|  |         $scope.toolbarButtonClicked = function(buttonIndex) { | ||
|  | 
 | ||
|  |             // Default behaviour
 | ||
|  |             var buttonClicked = $scope.items[buttonIndex]; | ||
|  |             var services = { '$scope' : $scope, '$rootScope' : $rootScope, '$http' : $http, '$modal' : $modal, '$q' : $q, '$translate' : $translate}; | ||
|  |             executeFunctionByName(buttonClicked.action, window, services); | ||
|  |         }; | ||
|  |          | ||
|  |         // Click handler for secondary toolbar buttons
 | ||
|  |         $scope.toolbarSecondaryButtonClicked = function(buttonIndex) { | ||
|  |             var buttonClicked = $scope.secondaryItems[buttonIndex]; | ||
|  |             var services = { '$scope' : $scope, '$rootScope' : $rootScope, '$http' : $http, '$modal' : $modal, '$q' : $q, '$translate' : $translate, '$location': $location}; | ||
|  |             executeFunctionByName(buttonClicked.action, window, services); | ||
|  |         }; | ||
|  | }]); |