广州市综治平台后端
xusd
2 days ago c490640493f04e2ed0fc5c4c8fbc92ebdd4d5380
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
/* 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.
 */
 
/*
 * Task listeners
 */
 
angular.module('flowableModeler').controller('FlowableFieldsCtrl',
    ['$scope', '$modal', '$timeout', '$translate', function ($scope, $modal, $timeout, $translate) {
 
        // Config for the modal window
        var opts = {
            template: 'editor-app/configuration/properties/fields-popup.html?version=' + Date.now(),
            scope: $scope
        };
 
        // Open the dialog
        _internalCreateModal(opts, $modal, $scope);
    }]);
 
angular.module('flowableModeler').controller('FlowableFieldsPopupCtrl',
    ['$scope', '$q', '$translate', '$timeout', function ($scope, $q, $translate, $timeout) {
 
        // Put json representing form properties on scope
        if ($scope.property.value !== undefined && $scope.property.value !== null
            && $scope.property.value.fields !== undefined
            && $scope.property.value.fields !== null) {
 
            // Note that we clone the json object rather then setting it directly,
            // this to cope with the fact that the user can click the cancel button and no changes should have happened
            $scope.fields = angular.copy($scope.property.value.fields);
 
            for (var i = 0; i < $scope.fields.length; i++) {
                var field = $scope.fields[i];
                if (field.stringValue !== undefined && field.stringValue !== '') {
                    field.implementation = field.stringValue;
                }
                else if (field.expression !== undefined && field.expression !== '') {
                    field.implementation = field.expression;
                }
                else if (field.string !== undefined && field.string !== '') {
                    field.implementation = field.string;
                }
            }
 
        } else {
            $scope.fields = [];
        }
 
        $scope.translationsRetrieved = false;
        $scope.labels = {};
 
        var namePromise = $translate('PROPERTY.FIELDS.NAME');
        var implementationPromise = $translate('PROPERTY.FIELDS.IMPLEMENTATION');
 
        $q.all([namePromise, implementationPromise]).then(function (results) {
            $scope.labels.nameLabel = results[0];
            $scope.labels.implementationLabel = results[1];
            $scope.translationsRetrieved = true;
 
            // Config for grid
            $scope.gridOptions = {
                data: $scope.fields,
                headerRowHeight: 28,
                enableRowSelection: true,
                enableRowHeaderSelection: false,
                multiSelect: false,
                modifierKeysToMultiSelect: false,
                enableHorizontalScrollbar: 0,
                enableColumnMenus: false,
                enableSorting: false,
                columnDefs: [{field: 'name', displayName: $scope.labels.nameLabel},
                    {field: 'implementation', displayName: $scope.labels.implementationLabel}]
            };
 
            $scope.gridOptions.onRegisterApi = function (gridApi) {
                //set gridApi on scope
                $scope.gridApi = gridApi;
                gridApi.selection.on.rowSelectionChanged($scope, function (row) {
                    $scope.selectedField = row.entity;
                });
            };
        });
 
        $scope.fieldDetailsChanged = function () {
            if ($scope.selectedField.stringValue != '') {
                $scope.selectedField.implementation = $scope.selectedField.stringValue;
            }
            else if ($scope.selectedField.expression != '') {
                $scope.selectedField.implementation = $scope.selectedField.expression;
            }
            else if ($scope.selectedField.string != '') {
                $scope.selectedField.implementation = $scope.selectedField.string;
            }
            else {
                $scope.selectedField.implementation = '';
            }
        };
 
        // Click handler for add button
        $scope.addNewField = function () {
            var newField = {
                name: 'fieldName',
                implementation: '',
                stringValue: '',
                expression: '',
                string: ''
            };
 
            $scope.fields.push(newField);
            $timeout(function () {
                $scope.gridApi.selection.toggleRowSelection(newField);
            });
        };
 
        // Click handler for remove button
        $scope.removeField = function () {
 
            var selectedItems = $scope.gridApi.selection.getSelectedRows();
            if (selectedItems && selectedItems.length > 0) {
                var index = $scope.fields.indexOf(selectedItems[0]);
                $scope.gridApi.selection.toggleRowSelection(selectedItems[0]);
                $scope.fields.splice(index, 1);
 
                if ($scope.fields.length == 0) {
                    $scope.selectedField = undefined;
                }
 
                $timeout(function () {
                    if ($scope.fields.length > 0) {
                        $scope.gridApi.selection.toggleRowSelection($scope.fields[0]);
                    }
                });
            }
        };
 
        // Click handler for up button
        $scope.moveFieldUp = function () {
            var selectedItems = $scope.gridApi.selection.getSelectedRows();
            if (selectedItems && selectedItems.length > 0) {
                var index = $scope.fields.indexOf(selectedItems[0]);
                if (index != 0) { // If it's the first, no moving up of course
                    var temp = $scope.fields[index];
                    $scope.fields.splice(index, 1);
                    $timeout(function () {
                        $scope.fields.splice(index + -1, 0, temp);
                        $timeout(function () {
                            $scope.gridApi.selection.toggleRowSelection(temp);
                        });
                    });
                }
            }
        };
 
        // Click handler for down button
        $scope.moveFieldDown = function () {
            var selectedItems = $scope.gridApi.selection.getSelectedRows();
            if (selectedItems && selectedItems.length > 0) {
                var index = $scope.fields.indexOf(selectedItems[0]);
                if (index != $scope.fields.length - 1) { // If it's the last element, no moving down of course
                    var temp = $scope.fields[index];
                    $scope.fields.splice(index, 1);
                    $timeout(function () {
                        $scope.fields.splice(index + 1, 0, temp);
                        $timeout(function () {
                            $scope.gridApi.selection.toggleRowSelection(temp);
                        });
                    });
                }
            }
        };
 
        // Click handler for save button
        $scope.save = function () {
 
            if ($scope.fields.length > 0) {
                $scope.property.value = {};
                $scope.property.value.fields = $scope.fields;
            } else {
                $scope.property.value = null;
            }
 
            $scope.updatePropertyInModel($scope.property);
            $scope.close();
        };
 
        $scope.cancel = function () {
            $scope.$hide();
        };
 
        // Close button handler
        $scope.close = function () {
            $scope.property.mode = 'read';
            $scope.$hide();
        };
    }]);