Download this file

actions.js    279 lines (256 with data), 8.6 kB

  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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
/**
* Copyright (c) 2013/2014, Intel Performance Learning Solutions Ltd, Intel Corporation.
*
* 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 (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.
*
**/
/**
* Contains functions which handle user actions
*
* created by Sridhar Voorakkara (vsridhar420@gmail.com)
*/
//handle click on a button on the main toolbar
function actionBtnClick(action) {
setupUserScreen();
clearMessage(); //clear any user previous feedback message
if (!userStatus().loggedIn) { //if a user is logged in
displayMessage('Please login first!');
}
else { //if no user is logged in
displayTabs(action);
var showMenuStub = function () {
$('#hiddenMenu').show();
};
$('#fullMenu').slideUp('slow', showMenuStub);
}
}
//show the tab menu
var displayTabs = function(tabName) {
var actTabs = ["prepare", "preserve", "manage", "deploy"];
actTabs.forEach(function(element, idx, array) {
var tabClass = '#'+ element + 'Tabs';
var titleClass = '#'+ element + 'Title';
if (element==tabName) {
$(tabClass).show();
$(titleClass).show();
}
else {
$(tabClass).hide();
$(titleClass).hide();
}
});
};
//creates a new business process on the server
var createBP = function (bpName) {
displayWait();
//post data to server
var url = 'plan/businessprocess/'+userStatus().user+'/'+bpName + '/create';
var qs = "op=create&description="+bpName;
xmlhttpPost(url, qs, function(err, data) {
clearMessage();
toDialog(JSON.parse(data).messages, "uploadResultDialog", "Create Business Process Result");
$("#btnCreateBp").hide();
});
};
//displays the feasibility analysis result
var displayRiskResult = function(err, data) {
//alert(data.businessProcess);
var datarows = data.businessProcess.resources.resource;
var bpid = data.businessProcess.id;
createResourcesTable ('feasibilityResult', {id: bpid, resources: datarows});
clearMessage();
};
//displays selected alternate
var displayAlternate = function (bpSelect, altSelect, containerId) {
if (altSelect.selectedIndex === 0) {
return;
}
var bpId = bpSelect.options[bpSelect.selectedIndex].value;
var bpName = bpSelect.options[bpSelect.selectedIndex].text.split(" : ")[1];
var altArr = altSelect.options[altSelect.selectedIndex].text.split(" : ");
var riskName = "";
if (altArr.length > 1) {//if an alternative for a risk has been selected
riskName = altArr[1];
}
var altIdx = altSelect.options[altSelect.selectedIndex].value;
getAlternative(bpId, riskName, altIdx, function (altJson) {
var businessProcess = {id: altJson.id, 'altIdx': altIdx, name: bpName, resources: altJson.resources};
if (riskName)
businessProcess.riskName = riskName;
createResourcesTable(containerId, businessProcess);
});
};
//get cost projection
/*
var getCostProjection = function () {
var bp = getResourceJson();
var qs = "op=get-cost";
qs = qs + "&data=" + JSON.stringify(bp);
displayWait();
//post data to server
xmlhttpPost('plan', qs, displayRecommendation);
};
*/
//save resources with costing inputs to the server
var saveResources = function () {
var bp = getResourceJson();
var qs = "op=save-resources";
qs = qs + "&data=" + JSON.stringify(bp);
displayWait();
//post data to server
var url = 'plan/resources/'+userStatus().user;
xmlhttpPost(url, qs, function(err, data) {
clearMessage();
toDialog(JSON.parse(data).messages, "resSaveResult", "Resource Save Result");
});
};
//setup contents of a tab
var setupTab = function (action, tabIdx) {
if (action=='prepare') {
if (tabIdx == 0)
return;
if (tabIdx == 1)
setupFeasibilityAnalysisTab();
if (tabIdx == 2)
setupArtifactTab();
if (tabIdx == 3)
setupManageMetaTab();
}
};
//setup feasibility analysis tab
var setupFeasibilityAnalysisTab = function () {
getBpList(function (bplist) {
bpselect = document.getElementById('caBpSelect');
populateBpSelectList(bpselect, bplist);
$('#artifactTabl').html('');
$('#artifactForm').html('');
});
};
//setup artifact tab
var setupArtifactTab = function () {
getBpList(function (bplist) {
bpselect = document.getElementById('bpListPrepArt');
populateBpSelectList(bpselect, bplist);
$('#artifactTabl').html('');
$('#artifactForm').html('');
});
};
//get artifacts for a business process and display on screen
var loadArtifactTable = function (bpId, containerid) {
if (bpId=='') {
$('#'+containerid).html('');
return;
}
getArtifacts(bpId, function(arts) {
if (!arts)
arts = [];
var artlist = {businessProcessId:bpId, artifacts:arts};
createArtifactTable(containerid, artlist);
$('#artifactForm').html('');
});
};
//setup manage metadata tab
var setupManageMetaTab = function () {
getBpList(function (bplist) {
bpselect = document.getElementById('bpListPrepMeta');
populateBpSelectList(bpselect, bplist);
});
};
//show the toolbar
function showFullMenu() {
$('#hiddenMenu').hide();
$('#fullMenu').slideDown('slow');
}
function saveBpDoc(theform, waitImgContainer, resultDialog) {
var bpId = "";
var docType = "";
bpId = theform.bpSelect.value;
for (var i=0; i<theform.elements.length; i++){
if (theform.elements[i].name == "docType") {
if (theform.elements[i].checked) {
docType = theform.elements[i].value;
}
}
}
var url = "uiapi/businessprocess/"+bpId+"/docupload/"+docType;
performAjaxSubmit(url, theform, waitImgContainer, resultDialog);
}
//Ajax submit of a form with file field (for file upload)
function performAjaxSubmit(url, theform, waitImgContainer, resultDialog) {
$("#"+waitImgContainer).show(); //show wait image
//append form data to be submitted
var formdata = new FormData();
var bpId = "";
var docType = "";
for (var i=0; i<theform.elements.length; i++){
if (theform.elements[i].name == "bpSelect") {
bpId = theform.elements[i].value;
}
if (theform.elements[i].name == "docType") {
if (theform.elements[i].checked) {
docType = theform.elements[i].value;
}
}
if (theform.elements[i].type === "text" || theform.elements[i].type === "hidden") {
formdata.append(theform.elements[i].name, theform.elements[i].value);
}
if (theform.elements[i].type === "radio") {
if (theform.elements[i].checked) {
formdata.append(theform.elements[i].name, theform.elements[i].value);
}
}
if (theform.elements[i].type === "file") {
formdata.append(theform.elements[i].name, theform.elements[i].files[0]);
}
}
//add the user
formdata.append('user', userStatus().user);
var xhr = new XMLHttpRequest();
xhr.open("POST",url , true);
//add an event handler
xhr.onload = function(e) {
$("#"+waitImgContainer).hide();
if (this.status == 200) { //success response
var messages = JSON.parse(this.responseText).messages;
var msg = "<ul style='text-align:left'>";
for (var i = 0; i < messages.length; i++) {
msg = msg + "<li>" + messages[i].message + "</li>";
}
msg = msg + "</ul>";
$("#"+resultDialog).html(msg);
$("#"+resultDialog).dialog({autoOpen: false, title: 'Document upload result', width: 'auto', modal: true,
show: {effect: "blind", duration: 500}});
$("#"+resultDialog).dialog('open');
}
else //error response
alert(this.responseText);
};
xhr.send(formdata); //post the data
};
//reset the business process document upload form
var resetFileUpload = function (radio) {
var bp = document.getElementById("bpSelect").value;
radio.form.reset();
document.getElementById("bpSelect").value = bp;
radio.checked = true;
};
//display events for a business process
var populateHistoryPanel = function (bpName, container) {
getEvents(bpName, function(data) {
buildHistoryTable(data, container);
});
};
//display cost detail
var showCostDetail = function () {
toDialog([], 'resSaveResult', 'Cost breakdown');
};