-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
523 lines (495 loc) · 16.2 KB
/
main.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
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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
$("#LogIn").on("click", function(e){
$('body').prepend('<div id="overlayL"></div>');
$('#overlayL').append('<p>Premere ESC per tornare alla schermata principale</p>');
$('#overlayL').append('<input type=text id=username placeholder=username></input>');
$('#overlayL').append('<input type=password id=password placeholder=password></input>');
$('#overlayL').append('<button type=button onclick="logIn();">LogIn</button>');
});
$("#MyTeam").on("click", function(e){
window.location.href = "paginaSquadra.html";
});
$("#MSG").on("click", function(e){
window.location.href = "messaggi.html";
});
$("#invia").on("click", function(e){
console.log("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaas");
debugger;
inviaMessaggio($('#invia').data("trattativa"));
})
$( document ).ready(function() {
checkLogIn();
$('#Home').text('Home Page');
$("#Home").on("click", function(e){
window.location.href = "index.html";
});
$.ajax({
type: "POST",
url: 'main.php',
data: {'dataString': 'getLeghe'},
dataType: 'json',
success: function(data)
{
console.log(data);
for (var i = 0; i < data.length; i++) {
$('#selectLega').append('<option value="' + data[i].ID + '">' + data[i].Denominazione + '</option>');
}
},
error: function (xhr, ajaxOptions, thrownError) {
console.log(xhr.status);
console.log(thrownError);
}
});
updateSquadre(1);
$(document).on('keyup',function(evt) {
if (evt.keyCode == 27) {
$('#overlayC').css("display", "none");
$('#overlayL').css("display", "none");
//fa tornare visibile l'immagine principale
//$('#mainimg').css("display", "");
}
});
});
function getTrattative(){
if (!!Cookies.get('utente')) {
$.ajax({
type: "POST",
url: 'main.php',
data: {'dataString': 'getTrattative', idUtente:Cookies.get('utente')},
dataType: 'json',
success: function(data)
{
console.log(data);
$('#trattative').text('Hai ricevuto ' + data.length + ' trattative');
if (data.length>0) {
$('#trattative').append(':<br>');
$('#trattative').append('<table id="tableTrattative">'
+'<tr>'
+'<td>Giocatore</td>'
+'<td>Squadra Offerente</td>'
+'<td>Tipologia Offerta</td>'
+'<td>Note</td>'
+'</tr>'
+'</table>');
}
for (var i = 0; i < data.length; i++) {
var ID_Giocatore = data[i].ID_Giocatore
var ID_Squadra_Offerente = data[i].ID_Squadra_Offerente
var Tipologia_Trattativa = data[i].Tipologia_Trattativa
var note = data[i].Note
var nomeGiocatore = getNomeGiocatore(ID_Giocatore);
var nomeSquadra = getNomeSquadra(ID_Squadra_Offerente);
$('#tableTrattative').append('<tr>'
+'<td>'+nomeGiocatore[0].Nome+' '+nomeGiocatore[0].Cognome+'</td>'
+'<td>'+nomeSquadra[0].Denominazione+'</td>'
+'<td>'+Tipologia_Trattativa+'</td>'
+'<td>'+note+'</td>'
+'</tr>');
//$('#trattative').append(ID_Giocatore + ' ' + ID_Squadra_Offerente + ' ' + Tipologia_Trattativa + ' ' + note + '<br>');
}
//$('#trattative').append();
},
error: function (xhr, ajaxOptions, thrownError) {
console.log(xhr.status);
console.log(thrownError);
}
});
}
}
function getNomeGiocatore(idCalciatore){
var tmp;
$.ajax({
async: false,
type: "POST",
url: 'main.php',
data: {'dataString': 'getNomeGiocatore', 'idCalciatore':idCalciatore},
dataType: 'json',
success: function(data)
{
tmp = data;
},
error: function (xhr, ajaxOptions, thrownError) {
console.log(xhr.status);
console.log(thrownError);
}
});
return tmp;
}
function getNomeSquadra(idSquadra){
var tmp;
$.ajax({
async: false,
type: "POST",
url: 'main.php',
data: {'dataString': 'getNomeSquadra', 'idSquadra':idSquadra},
dataType: 'json',
success: function(data)
{
tmp = data;
},
error: function (xhr, ajaxOptions, thrownError) {
console.log(xhr.status);
console.log(thrownError);
}
});
return tmp;
}
function updateSquadre(idSquadra) {
$('#selectSquadra').empty();
$.ajax({
type: "POST",
url: 'main.php',
data: {'dataString': 'getSquadre', 'idLega':idSquadra},
dataType: 'json',
success: function(data)
{
console.log(data);
for (var i = 0; i < data.length; i++) {
$('#selectSquadra').append('<option value="' + data[i].ID + '">' + data[i].Denominazione + '</option>');
}
},
error: function (xhr, ajaxOptions, thrownError) {
console.log(xhr.status);
console.log(thrownError);
}
});
}
function getGiocatori() {
var contentToRemove = document.querySelectorAll("#Giocatore");
$(contentToRemove).remove();
var squadra = $('#selectSquadra option:selected').val();
$.ajax({
type: "POST",
url: 'main.php',
data: {'dataString': 'getGiocatori', 'idSquadra':squadra},
dataType: 'json',
success: function(data)
{
console.log(data);
for (var i = 0; i < data.length; i++) {
addGiocatore(data[i].ID, data[i].Nome, data[i].Cognome, data[i].DataDiNascita, data[i].Ruolo)
}
},
error: function (xhr, ajaxOptions, thrownError) {
console.log(xhr.status);
console.log(thrownError);
}
});
$('#mainimg').css("display", "none");
}
function addGiocatore(ID, nome, cognome, dataDiNascita, ruolo){
$('#containerGiocatori').append(
'<div id="Giocatore" data-id="'+ID+'">'
+'<img id="FotoGiocatore" src="football-icon.png">'+'<br>'
+'Nome:'+nome+'<br>'
+'Cognome:'+cognome+'<br>'
+'Data di Nascita:'+dataDiNascita+'<br>'
+'Ruolo:'+ruolo
+'</div>');
$('[id^="Giocatore"]').unbind('click').click(function(e){
$('body').prepend('<div id="overlayC"></div>');
getStatistiche($(this).attr('data-id'));
});
}
function getStatistiche(idGiocatore){
//query che prende le statistiche dal Giocatore
$.ajax({
type: "POST",
url: 'main.php',
data: {'dataString': 'getStatistiche', 'idGiocatore':idGiocatore},
dataType: 'json',
success: function(data)
{
console.log(data);
appendStatistiche(data);
},
error: function (xhr, ajaxOptions, thrownError) {
console.log(xhr.status);
console.log(thrownError);
}
});
}
function createTableStatistiche(){
if (!!Cookies.get('utente')) {
var idSquadra = Cookies.get('utente');
}
//query che prende le statistiche dei giocatori di una squadra
$.ajax({
type: "POST",
url: 'main.php',
data: {'dataString': 'getStatisticheSquadra', 'idSquadra':idSquadra},
dataType: 'json',
success: function(data)
{
console.log(data);
data.forEach(function(entry) {
$('#tableStatistiche').append(
'<tr id="'+entry.ID_Calciatore+'">'
+'<td id="Nome">'+entry.Nome + ' ' + entry.Cognome+'</td>'
+'<td id="Presenze" contenteditable="true">'+entry.Presenze+'</td>'
+'<td id="Gol" contenteditable="true">'+entry.Gol+'</td>'
+'<td id="Assist" contenteditable="true">'+entry.Assist+'</td>'
+'<td id="Rigori" contenteditable="true">'+entry.Rigori+'</td>'
+'<td id="Minuti_Giocati" contenteditable="true">'+entry['Minuti Giocati']+'</td>'
+'<td id="Cartellini_Gialli" contenteditable="true">'+entry['Cartellini Gialli']+'</td>'
+'<td id="Cartellini_Rossi" contenteditable="true">'+entry['Cartellini Rossi']+'</td>'
+'<td id="Gol_Subiti" contenteditable="true">'+entry['Gol Subiti']+'</td>'
+'<td><input type="submit" value="Aggiorna" onclick="aggiornaStatistiche('+entry.ID_Calciatore+')"></input></td>'
+'</tr>'
);
});
},
error: function (xhr, ajaxOptions, thrownError) {
console.log(xhr.status);
console.log(thrownError);
}
});
}
function aggiornaStatistiche(idCalciatore){
var presenze = ($('tr#'+idCalciatore+' td#Presenze').text());
var gol = ($('tr#'+idCalciatore+' td#Gol').text());
var assist = ($('tr#'+idCalciatore+' td#Assist').text());
var rigori = ($('tr#'+idCalciatore+' td#Rigori').text());
var minuti = ($('tr#'+idCalciatore+' td#Minuti_Giocati').text());
var cartelliniGialli = ($('tr#'+idCalciatore+' td#Cartellini_Gialli').text());
var cartelliniRossi = ($('tr#'+idCalciatore+' td#Cartellini_Rossi').text());
var golSubiti = ($('tr#'+idCalciatore+' td#Gol_Subiti').text());
$.ajax({
type: "POST",
url: 'main.php',
data: {'dataString': 'aggiornaStatistiche', 'idCalciatore':idCalciatore, 'presenze':presenze, 'gol':gol, 'assist':assist, 'rigori':rigori,
'minuti':minuti, 'cartelliniGialli':cartelliniGialli, 'cartelliniRossi':cartelliniRossi, 'golSubiti':golSubiti},
dataType: 'json',
success: function(data)
{
console.log(data);
$('#aggiornamentoStatistiche').text("Statistiche aggiornate con successo!");
},
error: function (e) {
obj = JSON.parse(e.responseText);
console.log(obj.messaggio);
}
});
}
function appendStatistiche(data){
var statistiche = '<div id="Statistiche">'
+'<p>Premere ESC per tornare alla schermata principale</p>'+'<br>'
+'Presenze:'+data[0].Presenze+'<br>'
+'Gol:'+data[0].Gol+'<br>'
+'Assist:'+data[0].Assist+'<br>'
+'Rigori:'+data[0].Rigori+'<br>'
+'Minuti giocati:'+data[0]['Minuti Giocati']+'<br>'
+'Cartellini gialli:'+data[0]['Cartellini Gialli']+'<br>'
+'Cartellini rossi:'+data[0]['Cartellini Rossi']+'<br>'
+'Gol subiti:'+data[0]['Gol Subiti']+'<br>';
if (!!Cookies.get('utente')) {
statistiche += '<input type="submit" value="Richiedi informazioni" onclick="showFormTrattativa('+data[0].ID_Calciatore+');"></input>';
}
statistiche += '</div>';
$('#overlayC').append(statistiche);
}
function showFormTrattativa(data){
var formTrattativa = '<div id="Statistiche">'
+'<select id="tipologiaRichiesta">'
+'<option value="prestito">Prestito</option>'
+'<option value="trasferimento">Trasferimento</option>'
+'</select>'+'<br>'
+'<textarea rows="4" cols="50" id="note" placeholder="Insersci qui una breve descrizione della tua offerta"></textarea>'+'<br>'
+'<input type="submit" value="Invia Richiesta" onclick="richiediInformazioni('+data+');">'
+'</div>'
+'<br>';
$('#overlayC').append(formTrattativa);
}
function richiediInformazioni(idCalciatore){
var idSquadra = Cookies.get('utente');
var tipologiaRichiesta = $('#tipologiaRichiesta').find(":selected").text();
var note = $('#note').val();
//Inserisce una richiesta di informazioni nel database
$.ajax({
type: "POST",
url: 'main.php',
data: {'dataString': 'insertTrattativa', 'idSquadraOfferente':idSquadra, 'idGiocatore':idCalciatore, 'tipologiaRichiesta':tipologiaRichiesta, 'note':note},
dataType: 'json',
success: function(data)
{
console.log(data);
$('#overlayC').css("display", "none");
},
error: function (e) {
obj = JSON.parse(e.responseText);
console.log(obj.messaggio);
}
});
}
function getTrattativeMessaggi(){
var idSquadra = Cookies.get('utente');
//Inserisce una richiesta di informazioni nel database
$.ajax({
type: "POST",
url: 'main.php',
data: {'dataString': 'getTrattativeMessaggi', 'idSquadra':idSquadra},
dataType: 'json',
success: function(data)
{
console.log(data);
},
error: function (e) {
obj = JSON.parse(e.responseText);
console.log(obj.messaggio);
}
});
}
function getMessaggi(){
if (!!Cookies.get('utente')) {
$.ajax({
type: "POST",
url: 'main.php',
data: {'dataString': 'getTrattativeMessaggi', idSquadra:Cookies.get('utente')},
dataType: 'json',
success: function(data)
{
console.log(data);
for (var i = 0; i < data.length; i++) {
var ID_Mittente = data[i].ID_Mittente
var nomeSquadra = getNomeSquadra(ID_Mittente);
var trattativa = data[i].ID_Trattativa
var letto = data[i].Letto
$('.listMessage').append("<div id="+ID_Mittente+" data-trattativa="+trattativa+">"+nomeSquadra[0].Denominazione+"</div>");
$('#'+ID_Mittente).on("click", function(e){
$('.Chat').text('');
$('#invia').data("trattativa", e.currentTarget.dataset.trattativa);
$.ajax({
type: "POST",
url: 'main.php',
data: {'dataString': 'setLetto', idTrattativa:e.currentTarget.dataset.trattativa},
dataType: 'json',
success: function(data)
{
console.log(data);
},
error: function (xhr, ajaxOptions, thrownError) {
console.log(xhr.status);
console.log(thrownError);
}
});
getMessaggeText(e.currentTarget.id);
})
if(letto == 0){
$('#'+ID_Mittente).addClass("nletto");
}
}
},
error: function (xhr, ajaxOptions, thrownError) {
console.log(xhr.status);
console.log(thrownError);
}
});
}
}
function getMessaggeText(idMittente){
$.ajax({
type: "POST",
url: 'main.php',
data: {'dataString': 'getMessageText', idSquadra:Cookies.get('utente'), idMittente:idMittente},
dataType: 'json',
success: function(data)
{
console.log(data);
for (var i = 0; i < data.length; i++) {
var ID_Mittente = data[i].ID_Mittente
var testo = data[i].Testo
$('.Chat').append('<div id=t'+ID_Mittente+'>'+testo+'</div>')
if(ID_Mittente == idMittente){
$('#t'+ID_Mittente).each(function() {
$( this ).addClass('mitt');
});
}
}
//$('#trattative').append();
},
error: function (xhr, ajaxOptions, thrownError) {
console.log(xhr.status);
console.log(thrownError);
}
});
}
function rispondi(idTrattativa){
$('body').prepend('<div id="overlayC"></div>');
var formMessaggio = '<div id="Messaggio">'
+'<textarea rows="4" cols="50" id="textMessaggio" placeholder="Insersci qui il messaggio da inviare alla squadra"></textarea>'+'<br>'
+'<input type="submit" value="Invia Messaggio" onclick="inviaMessaggio('+idTrattativa+');">'
+'</div>'
+'<br>';
$('#overlayC').append(formMessaggio);
}
function inviaMessaggio(idTrattativa){
var idSquadra = Cookies.get('utente');
var testo = $('#input').val();
console.log(idTrattativa)
$.ajax({
type: "POST",
url: 'main.php',
data: {'dataString': 'insertMessaggio', 'idTrattativa':idTrattativa, 'idMittente':idSquadra, 'textMessaggio':testo},
dataType: 'json',
success: function(data)
{
console.log(data);
},
error: function (e) {
obj = JSON.parse(e.responseText);
console.log(obj.messaggio);
}
});
}
function logIn(){
var username = $('#username').val();
var password = $('#password').val();
$.ajax({
type: "POST",
url: 'main.php',
data: {'dataString': 'logIn', 'username':username, 'password':password},
dataType: 'json',
success: function(data)
{
window.location.href = "paginaSquadra.html";
console.log(data);
},
error: function (e) {
obj = JSON.parse(e.responseText);
console.log(obj.messaggio);
}
});
}
function checkLogIn(){
$.ajax({
type: "POST",
url: 'main.php',
data: {'dataString': 'checkLogIn'},
dataType: 'json',
success: function(data)
{
$('.login').text('LogOut');
$('#LogIn').attr('id','LogOut');
$('#MyTeam').text('La mia squadra');
$('#MSG').text('Messaggi');
$('#LogOut').unbind('click').click(function(f){
logOut();
});
},
error: function (e) {
}
});
}
function logOut(){
Cookies.remove('utente');
window.location.href = "index.html";
}
function createCookie(name,value,days) {
if (days) {
var date = new Date();
date.setTime(date.getTime()+(days*24*60*60*1000));
var expires = "; expires="+date.toGMTString();
}
else {var expires = "";
document.cookie = name+"="+value+expires+"; path=/";
}
}