懒羊羊
2023-08-30 1ac2bc1590406d9babec036e154d8d08f34a6aa1
提交 | 用户 | 时间
1ac2bc 1 /*
2  * Activiti Modeler component part of the Activiti project
3  * Copyright 2005-2014 Alfresco Software, Ltd. All rights reserved.
4  * 
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
18  */
19 angular.module('activitiModeler').controller('ActivitiSignalRefCtrl', [ '$scope', function($scope) {
20
21     // Find the parent shape on which the signal definitions are defined
22     var signalDefinitionsProperty = undefined;
23     var parent = $scope.selectedShape;
24     while (parent !== null && parent !== undefined && signalDefinitionsProperty === undefined) {
25         if (parent.properties && parent.properties['oryx-signaldefinitions']) {
26             signalDefinitionsProperty = parent.properties['oryx-signaldefinitions'];
27         } else {
28             parent = parent.parent;
29         }
30     }
31
32     try {
33         signalDefinitionsProperty = JSON.parse(signalDefinitionsProperty);
34         if (typeof signalDefinitionsProperty == 'string') {
35             signalDefinitionsProperty = JSON.parse(signalDefinitionsProperty);
36         }
37     } catch (err) {
38         // Do nothing here, just to be sure we try-catch it
39     }
40
41     $scope.signalDefinitions = signalDefinitionsProperty;
42
43
44     $scope.signalChanged = function() {
45         $scope.updatePropertyInModel($scope.property);
46     };
47 }]);