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
/* Copyright 2005-2015 Alfresco Software, Ltd.
*
* 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.
*/
'use strict';
/* Controllers */
flowableAdminApp.controller('ProcessDefinitionsController', ['$rootScope', '$scope', '$http', '$timeout', '$location','$translate', '$q', '$modal', 'gridConstants',
function ($rootScope, $scope, $http, $timeout, $location, $translate, $q, $modal, gridConstants) {
$rootScope.navigation = {main: 'process-engine', sub: 'definitions'};
$scope.filter = {};
$scope.processDefinitionsData = {};
// Array to contain selected properties (yes - we only can select one, but ng-grid isn't smart enough)
$scope.selectedDefinitions = [];
var filterConfig = {
url: FlowableAdmin.Config.adminContextRoot + 'rest/admin/process-definitions',
method: 'GET',
success: function(data, status, headers, config) {
$scope.processDefinitionsData = data;
},
error: function(data, status, headers, config) {
if (data && data.message) {
// Extract error-message
$rootScope.addAlert(data.message, 'error');
} else {
// Use default error-message
$rootScope.addAlert($translate.instant('ALERT.GENERAL.HTTP-ERROR'), 'error');
}
},
sortObjects: [
{name: 'PROCESS-DEFINITIONS.SORT.ID', id: 'id'},
{name: 'PROCESS-DEFINITIONS.SORT.NAME', id: 'name'},
{name: 'PROCESS-DEFINITIONS.SORT.VERSION', id: 'version'}
],
supportedProperties: [
{id: 'nameLike', name: 'PROCESS-DEFINITIONS.FILTER.NAME', showByDefault: false},
{id: 'keyLike', name: 'PROCESS-DEFINITIONS.FILTER.KEY', showByDefault: true},
{id: 'deploymentId', name: 'PROCESS-DEFINITIONS.FILTER.DEPLOYMENT-ID', showByDefault: false},
{id: 'tenantIdLike', name: 'PROCESS-DEFINITIONS.FILTER.TENANT-ID', showByDefault: false},
{id: 'latest', name: 'PROCESS-DEFINITIONS.FILTER.LATEST', showByDefault: true, defaultValue: true}
]
};
if ($rootScope.filters.forced.processDefinitionFilter) {
// Always recreate the filter and add all properties
$scope.filter = new FlowableAdmin.Utils.Filter(filterConfig, $http, $timeout, $rootScope);
$rootScope.filters.processDefinitionFilter = $scope.filter;
for (var prop in $rootScope.filters.forced.processDefinitionFilter) {
$scope.filter.addProperty({id: prop}, $rootScope.filters.forced.processDefinitionFilter[prop]);
if (prop == 'deploymentId') {
$scope.filter.removeProperty({id: 'latest'});
}
}
$rootScope.filters.forced.processDefinitionFilter = undefined;
} else if ($rootScope.filters && $rootScope.filters.processDefinitionFilter) {
// Reuse the existing filter
$scope.filter = $rootScope.filters.processDefinitionFilter;
$scope.filter.config = filterConfig;
} else {
$scope.filter = new FlowableAdmin.Utils.Filter(filterConfig, $http, $timeout, $rootScope);
$rootScope.filters.processDefinitionFilter = $scope.filter;
}
$scope.definitionSelected = function(definition) {
if (definition && definition.getProperty('id')) {
$location.path('/process-definition/' + definition.getProperty('id'));
}
};
$scope.toggleLatestVersion = function() {
if($scope.filter.properties.latest === true) {
$scope.filter.properties.nameLike = undefined;
$scope.filter.properties.deploymentId = undefined;
}
$scope.filter.refresh();
};
$q.all([$translate('PROCESS-DEFINITIONS.HEADER.ID'),
$translate('PROCESS-DEFINITIONS.HEADER.NAME'),
$translate('PROCESS-DEFINITIONS.HEADER.VERSION'),
$translate('PROCESS-DEFINITIONS.HEADER.KEY'),
$translate('PROCESS-DEFINITIONS.HEADER.TENANT')])
.then(function(headers) {
// Config for grid
$scope.gridDefinitions = {
data: 'processDefinitionsData.data',
enableRowReordering: true,
enableColumnResize: true,
multiSelect: false,
keepLastSelected : false,
rowHeight: 36,
selectedItems: $scope.selectedDefinitions,
afterSelectionChange: $scope.definitionSelected,
columnDefs: [
{ field: 'id', displayName: headers[0], cellTemplate: gridConstants.defaultTemplate},
{ field: 'name', displayName: headers[1], cellTemplate: gridConstants.defaultTemplate},
{ field: 'version', displayName: headers[2], cellTemplate: gridConstants.defaultTemplate},
{ field: 'key', displayName: headers[3], cellTemplate: gridConstants.defaultTemplate},
{ field: 'tenantId', displayName: headers[4], cellTemplate: gridConstants.defaultTemplate}]
};
});
// Hook in initial fetching of the definitions
$scope.executeWhenReady(function() {
$scope.filter.refresh();
});
}]);