association.js 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. // Oggetto che raccoglie le info necessarie per la pagina
  2. pageInfo = {};
  3. // Inizializzazione della pagina
  4. initPage();
  5. // Def. funzione di inizializzazione
  6. async function initPage(){
  7. pageInfo = await getPageInfo();
  8. updatePage();
  9. }
  10. // Esegue le queries, restituisce un oggetto con tutte le info per completare la pagina
  11. async function getPageInfo(){
  12. var out = {};
  13. try{
  14. out.queryPlace = await doJsonQuery(queryCountLuogo, true);
  15. out.queryTot = await doJsonQuery(queryCountDataset, true);
  16. out.querySupport = await doJsonQuery(querySupportCount, true);
  17. out.queryLemmmas = await doJsonQuery(querySupportLemma, true);
  18. } catch(err){
  19. console.log(err);
  20. }
  21. console.log('out', out)
  22. return out;
  23. }
  24. // Aggiorna la pagina usando l'oggetto-info passato come parametro
  25. function updatePage(){
  26. var tot = pageInfo.queryTot.results.bindings[0].documenti.value;
  27. var occ = pageInfo.queryPlace.results.bindings[0].occorrenze.value;
  28. const listaMisure = [];
  29. for (var i=0; i<pageInfo.querySupport.results.bindings.length; i++) {
  30. support_count = pageInfo.querySupport.results.bindings[i].occorrenze.value;
  31. name = pageInfo.querySupport.results.bindings[i].antroponimo.value;
  32. freqAntroponimo = pageInfo.querySupport.results.bindings[i].count.value;
  33. var support = ((support_count/tot) * 100).toFixed(2) + '%';
  34. var confidence = ((support_count/occ) * 100).toFixed(2) + '%';
  35. var probBi = support_count/tot;
  36. var probPersona = freqAntroponimo/tot;
  37. var probabilityPersona = (probPersona * 100).toFixed(2) + '%';
  38. var probLuogo = occ/tot;
  39. var check = probPersona * probLuogo;
  40. var interest = probBi/check;
  41. var interesse = interest.toFixed(2);
  42. var correlazione = "";
  43. if (interest == 1) {
  44. correlazione = "Indipendenza";
  45. }
  46. else if (interest > 1) {
  47. correlazione = "Positiva";
  48. }
  49. else {
  50. correlazione = "Negativa";
  51. }
  52. listaMisure.push([name, freqAntroponimo, probabilityPersona, support_count, support, confidence, interesse, correlazione]);
  53. }
  54. var thead = "<div class='row' id='thead_support'><div class='col first'>Antroponimo</div> \
  55. <div data-toggle='modal' data-target='#FrequenzaModal' class='col help'>Frequenza assoluta antroponimo</div> \
  56. <div class='col help' data-toggle='modal' data-target='#ProbabilityModal'>Probabilità Antroponimo</div> \
  57. <div class='col help' data-toggle='modal' data-target='#SupportCountModal'>Support Count</div> \
  58. <div class='col help' data-toggle='modal' data-target='#SupportModal'>Supporto</div> \
  59. <div class='col help' data-toggle='modal' data-target='#ConfidenzaModal'>Confidenza</div> \
  60. <div class='col help' data-toggle='modal' data-target='#InteresseModal'>Interesse</div> \
  61. <div class='col help' data-toggle='modal' data-target='#CorrelazioneModal'>Correlazione</div></div>";
  62. if (listaMisure.length > 1) {
  63. document.getElementById("my_supportList").innerHTML = thead + formatListAsGrid(listaMisure);
  64. } else {
  65. document.getElementById("my_supportList").innerHTML = "Dati insufficienti";
  66. }
  67. /*Supporto Lemmi*/
  68. const listaMisureLemmi = [];
  69. for (var i=0; i<pageInfo.queryLemmmas.results.bindings.length; i++) {
  70. support_count = pageInfo.queryLemmmas.results.bindings[i].occorrenze.value;
  71. name = pageInfo.queryLemmmas.results.bindings[i].lemma.value;
  72. freqLemma = pageInfo.queryLemmmas.results.bindings[i].count.value;
  73. var support = ((support_count/tot) * 100).toFixed(2) + '%';
  74. var confidence = ((support_count/occ) * 100).toFixed(2) + '%';
  75. var probBis = support_count/tot;
  76. var probLemma = freqLemma/tot;
  77. var probabilityLemma = (probLemma * 100).toFixed(2) + '%';
  78. var probLuogo = occ/tot;
  79. var check = probLemma * probLuogo;
  80. var interest = probBis/check;
  81. var interesse = interest.toFixed(2);
  82. var correlazione = "";
  83. if (interest == 1) {
  84. correlazione = "Indipendenza";
  85. }
  86. else if (interest > 1) {
  87. correlazione = "Positiva";
  88. }
  89. else {
  90. correlazione = "Negativa";
  91. }
  92. listaMisureLemmi.push([name, freqLemma, probabilityLemma, support_count, support, confidence, interesse, correlazione]);
  93. }
  94. var theadL = "<div class='row' id='thead_lemmi'><div class='col first'>Lemma</div> \
  95. <div data-toggle='modal' data-target='#FrequenzaModal' class='col help'>Frequenza assoluta lemma</div> \
  96. <div class='col help' data-toggle='modal' data-target='#ProbabilityModal'>Probabilità Antroponimo</div> \
  97. <div class='col help' data-toggle='modal' data-target='#SupportCountModal'>Support Count</div> \
  98. <div class='col help' data-toggle='modal' data-target='#SupportModal'>Supporto</div> \
  99. <div class='col help' data-toggle='modal' data-target='#ConfidenzaModal'>Confidenza</div> \
  100. <div class='col help' data-toggle='modal' data-target='#InteresseModal'>Interesse</div> \
  101. <div class='col help' data-toggle='modal' data-target='#CorrelazioneModal'>Correlazione</div></div>";
  102. if (listaMisureLemmi.length > 1) {
  103. document.getElementById("my_supportList2").innerHTML = theadL + formatListAsGrid(listaMisureLemmi);
  104. } else {
  105. document.getElementById("my_supportList2").innerHTML = "Dati insufficienti";
  106. }
  107. /*if(pageInfo.titolo) document.getElementById("title").innerHTML = pageInfo.titolo.titolo.value;
  108. if(pageInfo.query1) {
  109. if(pageInfo.query1.hasOwnProperty('mittente')) document.getElementById("mittente_id").innerHTML = pageInfo.query1.mittente.value;
  110. if(pageInfo.query1.hasOwnProperty('destinatario')) document.getElementById("destinatario_id").innerHTML = pageInfo.query1.destinatario.value;
  111. if(pageInfo.query1.hasOwnProperty('luogo_partenza')) document.getElementById("luogo_partenza_id").innerHTML = pageInfo.query1.luogo_partenza.value;
  112. if(pageInfo.query1.hasOwnProperty('uriLuogoPartenza')) document.getElementById("luogo_partenza_btn").innerHTML = createButton("fa fa-map", "Vedi mappa", "schedaMappa('LUOGO')".replace("LUOGO", pageInfo.query1.uriLuogoPartenza.value));
  113. if(pageInfo.query1.hasOwnProperty('luogo_arrivo')) document.getElementById("luogo_arrivo_id").innerHTML = pageInfo.query1.luogo_arrivo.value;
  114. if(pageInfo.query1.hasOwnProperty('uriLuogoArrivo')) document.getElementById("luogo_arrivo_btn").innerHTML = createButton("fa fa-map", "Vedi mappa", "schedaMappa('LUOGO')".replace("LUOGO", pageInfo.query1.uriLuogoArrivo.value));
  115. if(pageInfo.query1.hasOwnProperty('data_partenza')) document.getElementById("data_partenza_id").innerHTML = pageInfo.query1.data_partenza.value;
  116. if(pageInfo.query1.hasOwnProperty('data_arrivo')) document.getElementById("data_arrivo_id").innerHTML = pageInfo.query1.data_arrivo.value;
  117. }
  118. if(pageInfo.query1){
  119. document.getElementById("mittente_id").innerHTML = pageInfo.query1.mittente.value;
  120. //document.getElementById("mittente_btn").innerHTML = createButton("fa fa-user", "Scheda persona", "schedaPersona('PERS')".replace("PERS", pageInfo.query1.mittente.value));
  121. }
  122. if(pageInfo.query1){
  123. document.getElementById("destinatario_id").innerHTML = pageInfo.query1.destinatario.value;
  124. //document.getElementById("destinatario_btn").innerHTML = createButton("fa fa-user", "Scheda persona", "schedaPersona('PERS')".replace("PERS", pageInfo.query1.destinatario.value));
  125. }
  126. if(pageInfo.query1){
  127. document.getElementById("imageASPO").innerHTML = createEmbed(pageInfo.query1.subject.value);
  128. }
  129. if(pageInfo.query1){
  130. document.getElementById("luogo_partenza_id").innerHTML = pageInfo.query1.luogo_partenza.value;
  131. document.getElementById("luogo_partenza_btn").innerHTML = createButton("fa fa-map", "Vedi mappa", "schedaMappa('LUOGO')".replace("LUOGO", pageInfo.query1.uriLuogoPartenza.value));
  132. }
  133. if(pageInfo.query1){
  134. document.getElementById("luogo_arrivo_id").innerHTML = pageInfo.query1.luogo_arrivo.value;
  135. document.getElementById("luogo_arrivo_btn").innerHTML = createButton("fa fa-map", "Vedi mappa", "schedaMappa('LUOGO')".replace("LUOGO", pageInfo.query1.uriLuogoArrivo.value));
  136. }
  137. if(pageInfo.query1) document.getElementById("data_partenza_id").innerHTML = pageInfo.query1.data_partenza.value;
  138. if(pageInfo.query1) document.getElementById("data_arrivo_id").innerHTML = pageInfo.query1.data_arrivo.value;
  139. if(pageInfo.descrizione) document.getElementById("descrizione_id").innerHTML = pageInfo.descrizione.descrizione.value;
  140. if(pageInfo.areaLinguistica) document.getElementById("lingua_id").innerHTML = pageInfo.areaLinguistica.lingua.value;
  141. if(pageInfo.areaLinguistica) document.getElementById("area_linguistica_id").innerHTML = pageInfo.areaLinguistica.area_linguistica.value;
  142. if(pageInfo.segnatura){
  143. document.getElementById("segnatura_id").innerHTML = pageInfo.segnatura.segnatura_OVI.value;
  144. document.getElementById("segnatura_btn").innerHTML = createButton("fa fa-link", "Link ASPO", "schedaASPO('SEGN')".replace("SEGN", thisUrlParams.link));
  145. }
  146. if(pageInfo.edizione){
  147. document.getElementById("edizione_id").innerHTML = pageInfo.edizione.edizione.value;
  148. document.getElementById("edizione_btn").innerHTML = createButton("fa fa-comments", "Cita Edizione", "schedaEdizione('EDIZ')".replace("EDIZ", pageInfo.edizione.edizione.value));
  149. }
  150. if(pageInfo.testo) document.getElementById("trascrizione_id").innerHTML = pageInfo.testo.testo_lemmatizzato.value;
  151. //
  152. if(pageInfo.antroponimi && pageInfo.antroponimi.length){
  153. const listaAntroponimi = pageInfo.antroponimi.map(elem => elem.antroponimo.value);
  154. document.getElementById("antroponimi").innerHTML = formatListAsLi(listaAntroponimi);
  155. }
  156. if(pageInfo.toponimi && pageInfo.toponimi.length){
  157. const listaToponimi = pageInfo.toponimi.map(elem => elem.toponimo.value);
  158. document.getElementById("toponimi").innerHTML = formatListAsLi(listaToponimi);
  159. }
  160. if(pageInfo.query2) {
  161. if(pageInfo.query2.hasOwnProperty('mittente')) document.getElementById("mittente_id_ASPO").innerHTML = pageInfo.query2.mittente.value;
  162. if(pageInfo.query2.hasOwnProperty('uriSender')) document.getElementById("mittente_btn_ASPO").innerHTML = createButton("fa fa-user", "Scheda persona", "schedaPersona('PERS')".replace("PERS", pageInfo.query2.uriSender.value));
  163. if(pageInfo.query2.hasOwnProperty('destinatario')) document.getElementById("destinatario_id_ASPO").innerHTML = pageInfo.query2.destinatario.value;
  164. if(pageInfo.query2.hasOwnProperty('uriReceiver')) document.getElementById("destinatario_btn_ASPO").innerHTML = createButton("fa fa-user", "Scheda persona", "schedaPersona('PERS')".replace("PERS", pageInfo.query2.uriReceiver.value));
  165. if(pageInfo.query2.hasOwnProperty('placeSend')) document.getElementById("luogo_partenza_id_ASPO").innerHTML = pageInfo.query2.placeSend.value;
  166. if(pageInfo.query2.hasOwnProperty('placeReceive')) document.getElementById("luogo_arrivo_id_ASPO").innerHTML = pageInfo.query2.placeReceive.value;
  167. if(pageInfo.query2.hasOwnProperty('timeSpanSend')) document.getElementById("data_partenza_id_ASPO").innerHTML = pageInfo.query2.timeSpanSend.value;
  168. if(pageInfo.query2.hasOwnProperty('timeSpanReceive')) document.getElementById("data_arrivo_id_ASPO").innerHTML = pageInfo.query2.timeSpanReceive.value;
  169. if(pageInfo.query2.hasOwnProperty('material')) document.getElementById("consistenzaASPO").innerHTML = pageInfo.query2.material.value;
  170. if(pageInfo.query2.hasOwnProperty('dimension')) document.getElementById("dimensioneASPO").innerHTML = pageInfo.query2.dimension.value;
  171. if(pageInfo.query2.hasOwnProperty('identifier')) document.getElementById("segnatura_id_ASPO").innerHTML = pageInfo.query2.identifier.value;
  172. if(pageInfo.query2.hasOwnProperty('currentLocation')) document.getElementById("ownerASPO").innerHTML = pageInfo.query2.currentLocation.value;
  173. }
  174. if(pageInfo.query1){
  175. document.getElementById("imageASPO").innerHTML = createEmbed(pageInfo.query1.subject.value);
  176. }*/
  177. }
  178. // Mini-utility per formattare liste
  179. function formatListAsLi(thisList){
  180. toRet = "";
  181. thisList.forEach(value => toRet += "<li>" + value + "</li>");
  182. return toRet;
  183. }
  184. function formatListAsGrid(thisList){
  185. toRet = "";
  186. thisList.forEach(value => toRet += "<div class='row'>" + "<div class='col first'>" + value[0] +
  187. "</div><div class='col'>" + value[1] + "</div><div class='col'>" + value[2] + "</div><div class='col'>" + value[3] + "</div><div class='col'>" + value[4] + "</div><div class='col'>" + value[5] + "</div><div class='col'>" +
  188. value[6] + "</div><div class='col'>" + value[7] + "</div></div>");
  189. return toRet;
  190. }