forked from camunda/camunda-bpm-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scripts.js
92 lines (60 loc) · 1.86 KB
/
scripts.js
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
(function (global){
'use strict';
var CamSDK = global.CamSDK;
var angular = global.angular;
var $ = angular.element;
var camClient = new CamSDK.Client({
mock: false,
apiUri: '/engine-rest'
});
var taskService = new camClient.resource('task');
var $formContainer = $('.column.right');
var app = angular.module('example.app', ['cam.embedded.forms']);
app.controller('appCtrl', ['$scope', function($scope) {
$scope.camForm = null;
function loadTasks() {
taskService.list({}, function(err, results) {
if (err) { throw err; }
$scope.$apply(function() {
$scope.tasks = results._embedded.task;
});
});
}
function addFormButton(err, camForm) {
if (err) { throw err; }
// create a button element
var $submitBtn = $('<button type="submit">Complete</button>')
// with a click handler to submit the form
.click(function () {
camForm.submit(function (err) {
if (err) { throw err; }
// clear the form
$formContainer.html('');
loadTasks();
});
});
// and append it to the form
camForm.formElement.append($submitBtn);
}
$scope.loadTaskForm = function($event) {
var taskId = $($event.currentTarget).attr('data-task-id');
// clear the form container content
$formContainer.html('');
// loads the task form using the task ID provided
taskService.form(taskId, function(err, taskFormInfo) {
var url = taskFormInfo.key.replace('embedded:app:', taskFormInfo.contextPath + '/');
new CamSDK.Form({
client: camClient,
formUrl: url,
taskId: taskId,
containerElement: $formContainer,
// continue the logic with the callback
done: addFormButton
});
});
};
// load the tasks at start
loadTasks();
}]);
angular.bootstrap(document, ['example.app']);
})(this);