-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbacklog.js
More file actions
430 lines (372 loc) · 13.3 KB
/
Copy pathbacklog.js
File metadata and controls
430 lines (372 loc) · 13.3 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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
/**
* Download all Backend data and renders Backlog Tasks
*/
async function initBacklogProcess() {
await initAllDbData();
renderTasks();
}
/**
* Render HTML code as task container
*/
function renderTasks() {
let taskContent = document.getElementById('taskContent');
if(allTasks.length >= 1) {
taskContent.innerHTML = "";
for (let i = 0; i < allTasks.length; i++) {
renderTaskHTML(i, taskContent);
}
}else {
taskContent.innerHTML = `<p class="emptyBacklogMsg">Backlog is empty</p>`;
}
}
/**
* Determine the current Task information and transfer it to other Functions
*
* @param {number} i -index
*/
function renderTaskHTML(i) {
let date = allTasks[i].date;
let category = allTasks[i].category;
let urgency = allTasks[i].urgency;
let description = allTasks[i].description;
switchMe = "taskContainer";
backlogHTML(i, category, description, date);
getTaskMembers(i);
getBorderColor(i, urgency);
}
/**
* Displays all Information of assigned Members for this Task
*
* @param {number} i - index
*/
function getTaskMembers(i) {
for (let j = 0; j < allTasks[i].assignedMember.length; j++) {
let assignedTo = document.getElementById('assignedMember' + i);
const firstName = allTasks[i].assignedMember[j].firstName;
const lastName = allTasks[i].assignedMember[j].lastName;
const email = allTasks[i].assignedMember[j].eMail;
let icon = allTasks[i].assignedMember[j].icon;
assignedTo.innerHTML += `
<div class="d-flex memberCardTag">
<p class="avatar4">${icon}</p>
<div class="ml-5">
<b>${firstName} ${lastName}</b><br>
<a href="${email}">${email}</a><br>
</div>
</div>
`;
};
}
/**
* Renders the complete HTML of every Task
*
* @param {number} i - index of current loop
* @param {string} category - Assigned Team
* @param {string} description - Description of the Task
* @param {string} date - Due date of Task
* @returns - Returns HTML code
*/
function backlogHTML(i, category, description, date) {
return taskContent.innerHTML += `
<div id="taskContainer${i}" class="taskContainerBacklog" onclick="openTaskInfoCard(${i})">
<div class="innerContainer">
<div class="taskBox">
<div id="assignedMember${i}" class="assignedMember">
</div>
</div>
<div class="category"><b>Due Date</b><br class="d-none-mobile"><b>${date}</b></div>
<div class="category"><b>${category}</b></div>
<div class="descriptionBacklogBox">
<textarea onclick="event.stopPropagation()" class="scroll" rows="2" cols="3" id="description${i}">${description}</textarea>
</div>
<div class="backlogSettings">
<button class="pushBacklogButton" id="push${i}" onclick="openPushDialog(${i}), event.stopPropagation()" title="Move Task to Board"></button>
<button class="editBacklogButton" id="edit${i}" onclick="openEditDialog(${i}), event.stopPropagation()" title="Save changes"></button>
<button class="deleteBacklogTaskButton" id="delete${i}" onclick="openDeleteDialog(${i}), event.stopPropagation()" title="Delete Task"></button>
</div>
</div
</div>
`;
}
/**
* Displays Task card with more detailed Informations
*
* @param {number} i - index
*/
function openTaskInfoCard(i) {
document.getElementById('backlogTaskInfoCard').classList.remove('d-none');
let title = allTasks[i].title;
let date = allTasks[i].date;
let description = allTasks[i].description;
let urgency = allTasks[i].urgency;
let category = allTasks[i].category;
let lastEdit = new Date(allTasks[i].lastEdit).toLocaleTimeString('eu-DE');
infoCard = document.getElementById('backlogTaskInfoCard');
infoCard.innerHTML = "";
infoCard.innerHTML = renderInfoCardHTML(title, date, description, urgency, category, lastEdit);
getUrgencyBackground(urgency);
getTaskMembersforInfoCard(i);
if (allTasks[i].lastEdit === "") {
let createdAt = new Date(allTasks[i].createdAt).toString()
document.getElementById('lastUpdate').innerHTML = `Task created: ${createdAt}`;
}
}
/**
* Changes the color of Taskcard Todo and the Background of Urgency container
*
* @param {string} urgency - Task urgency level
*/
function getUrgencyBackground(urgency) {
if (urgency == "Low") {
document.getElementById('cardUrgency').style.backgroundColor = "green";
document.getElementById('todoUrgency').style.color = "green";
}
else if (urgency == "Mid") {
document.getElementById('cardUrgency').style.background = "purple";
document.getElementById('todoUrgency').style.color = "purple";
}
else if (urgency == "High") {
document.getElementById('cardUrgency').style.background = "orange";
document.getElementById('todoUrgency').style.color = "orange";
}
}
/**
* Determine the Task left border color to display its current urgency level
*
* @param {number} i - index of current loop
* @param {string} urgency - Task urgency level
*/
function getBorderColor(i, urgency) {
if (urgency == "Low") {
document.getElementById('taskContainer' + i).style.borderLeft = "10px solid green";
}
else if (urgency == "Mid") {
document.getElementById('taskContainer' + i).style.borderLeft = "10px solid purple";
}
else if (urgency == "High") {
document.getElementById('taskContainer' + i).style.borderLeft = "10px solid orange";
}
}
/**
* Renders all assigned Members for displayed Task
*
* @param {number} i - Index of current loop
*/
function getTaskMembersforInfoCard(i) {
for (let j = 0; j < allTasks[i].assignedMember.length; j++) {
let assignedTo = document.getElementById('memberCardInfoContainer');
const firstName = allTasks[i].assignedMember[j].firstName;
const lastName = allTasks[i].assignedMember[j].lastName;
const email = allTasks[i].assignedMember[j].eMail;
const icon = allTasks[i].assignedMember[j].icon;
assignedTo.innerHTML += renderAssignedToHTML(firstName, lastName, email, icon);
};
}
/**
* Renders the Infocard HTML code
*
* @param {string} title - Title of task
* @param {string} date - Due date of Task
* @param {string} description - Task description
* @param {string} urgency - Task urgency level
* @param {string} category - Task assigned Team
* @param {string} lastEdit - Last edit time of Task
* @returns HTML code
*/
function renderInfoCardHTML(title, date, description, urgency, category, lastEdit) {
return `
<div class="bCard text-bg-dark" onclick="event.stopPropagation()">
<div>
<h3 class="card-title">${title}</h3>
<p class="card-text1" id="cardUrgency">${urgency}</p>
<h4 id="todoUrgency" style="padding: 5px;"><b>Todo:</b></h4>
<div class="card-text cardTextContainer">${description}</div>
</div>
<div class="card-infos" id="cardInfos">
<div class="cardTeamInfos">
<p class="card-text2">This Task is assigned to the</p>
<h2><b>${category} Team</b></h2>
</div>
<div class="memberCardInfoContainer" id="memberCardInfoContainer"></div>
<p class="card-text3" id="lastUpdate">Last edit: ${lastEdit}</p>
</div>
</div>
`;
}
/**
* Renders the HTML code and Information of an Task assigned Member
*
* @param {string} firstName - First name of assigned Member
* @param {string} lastName - Last name of assigned Member
* @param {string} email - Email information of assigned Member
* @param {string} icon - Generated icon for assigned Member
* @returns HTML code
*/
function renderAssignedToHTML(firstName, lastName, email, icon) {
return `
<div class="memberCardInfo">
<div>
<b>${firstName} ${lastName}</b><br>
<a href="${email}">${email}</a><br>
</div>
<div class="memberCardInfoBox">
<p class="avatar4">${icon}</p>
</div>
</div>
`;
}
/**
* Hides the Task info card
*/
function closeTaskInfoCard() {
document.getElementById('backlogTaskInfoCard').classList.add('d-none');
}
/**
* Manages the Process to move the Task to the Board
*
* @param {number} i - Index of current loop
*/
async function pushTaskToBoard(i) {
disableBacklogActionButton()
await initAllDbData();
allTasks[i].status = "todo";
boardTasks.push(allTasks[i]);
allTasks.splice(i, 1);
await setBoardTask();
await setTask();
await initBacklogProcess();
closeActionDialog();
showBacklogSuccess('saved');
};
/**
* Removes the possibility to push more then 1 Task at the same time to the Board
*/
function disableBacklogActionButton() {
document.getElementById('yesButton').disabled = true;
}
/**
* Function to delete selected Task from Backend
*
* @param {number} i - Index of current loop
*/
async function deleteTaskBacklog(i) {
await initAllDbData();
allTasks.splice(i, 1);
await setBoardTask();
await setTask();
await initBacklogProcess();
closeActionDialog();
showBacklogSuccess('deleted');
};
/**
* Function to edit selected Task from Backend
*
* @param {number} i - Index of current loop
*/
async function editDescription(i) {
await initAllDbData();
let description = document.getElementById('description' + i);
allTasks[i].description = description.value;
allTasks[i].lastEdit = new Date().getTime();
await setBoardTask();
await setTask();
await initBacklogProcess();
closeActionDialog();
showBacklogSuccess('edited');
}
/**
* Displays a success Message after changes on object
*
* @param {string} action - Contains the action definition of pressed Button
*/
function showBacklogSuccess(action) {
let success = document.getElementById('successBacklog');
success.innerHTML = '';
success.classList.remove('d-none');
success.innerHTML = `Task successfully ${action}!`;
setTimeout(() => {success.classList.add('d-none');}, 2000);
}
/**
* Displays the Pushdialog
*
* @param {number} i - Index of current loop
*/
function openPushDialog(i) {
document.getElementById('actionDialog').classList.remove('d-none');
document.getElementById('dialogBox').innerHTML = renderPushHTML(i);
}
/**
* Displays the Editdialog
*
* @param {number} i - Index of current loop
*/
function openEditDialog(i) {
document.getElementById('actionDialog').classList.remove('d-none');
document.getElementById('dialogBox').innerHTML = renderEditHTML(i);
}
/**
* Displays the Editdialog
*
* @param {number} i -Index of current loop
*/
function openDeleteDialog(i) {
document.getElementById('actionDialog').classList.remove('d-none');
document.getElementById('dialogBox').innerHTML = renderDeleteHTML(i);
}
/**
* Hides the Actiondialog
*/
function closeActionDialog() {
document.getElementById('actionDialog').classList.add('d-none');
}
/**
* Renders the Push HTML content
*
* @param {number} i - Index of current loop
* @returns
*/
function renderPushHTML(i) {
return `
<div class="yesBox" id="yesBox">
<p><b>Are you sure that you want to push this Task to the Board?</b></p>
<button id="yesButton" onclick="pushTaskToBoard(${i})" type="button" class="btn btn-primary">Yes</button>
</div>
<div class="cancelBox" id="cancelBox">
<button onclick="closeActionDialog()" id="cancelButton" type="button" class="btn btn-primary cancelButton btnCancel">Cancel</button>
</div>
`;
}
/**
* Renders the Delete HTML content
*
* @param {number} i - Index of current loop
* @returns
*/
function renderDeleteHTML(i) {
return `
<div class="yesBox" id="yesBox">
<p><b>Are you sure that you want to delete this Task?</b></p>
<button id="yesButton" onclick="deleteTaskBacklog(${i})" type="button" class="btn btn-primary">Yes</button>
</div>
<div class="cancelBox" id="cancelBox">
<button onclick="closeActionDialog()" id="cancelButton" type="button" class="btn btn-primary cancelButton btnCancel">Cancel</button>
</div>
`;
}
/**
* Renders the Edit HTML content
*
* @param {number} i - Index of current loop
* @returns
*/
function renderEditHTML(i) {
return `
<div class="yesBox" id="yesBox">
<p><b>Are you sure that you want to safe the Edit?</b></p>
<button id="yesButton" onclick="editDescription(${i})" type="button" class="btn btn-primary">Yes</button>
</div>
<div class="cancelBox" id="cancelBox">
<button onclick="closeActionDialog()" id="cancelButton" type="button" class="btn btn-primary cancelButton btnCancel">Cancel</button>
</div>
`;
}