word_cloud.js 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. /**
  2. * QUERY SECTION
  3. *
  4. * */
  5. // SPARQL Query text -- 'prefixes' and 'thisUrlParams' defined in people.js;
  6. let queryNetwork = prefixes + " SELECT DISTINCT COUNT(?event) AS ?count ?uri2 SAMPLE(?label2) AS ?text \
  7. WHERE { \
  8. {?event rdf:type crm:EL1_Exchange_Letters . \
  9. ?event_to rdfs:subClassOf ?event; \
  10. rdf:type crm:EL2_Send_Letter ; \
  11. crm:P01_has_domain ?pc_to . \
  12. ?pc_to crm:P02_has_range ?uri . \
  13. ?uri rdfs:label ?label . \
  14. ?event_from rdfs:subClassOf ?event; \
  15. rdf:type crm:EL3_Receive_Letter; \
  16. crm:P01_has_domain ?pc_from . \
  17. ?pc_from crm:P02_has_range ?uri2 . \
  18. ?uri2 rdfs:label ?label2 . \
  19. FILTER (?uri = <" + thisUrlParams.link + ">) \
  20. } UNION { \
  21. ?event rdf:type crm:EL1_Exchange_Letters . \
  22. ?event_to rdfs:subClassOf ?event; \
  23. rdf:type crm:EL3_Receive_Letter ; \
  24. crm:P01_has_domain ?pc_from . \
  25. ?pc_from crm:P02_has_range ?uri . \
  26. ?uri rdfs:label ?label . \
  27. ?event_from rdfs:subClassOf ?event; \
  28. rdf:type crm:EL2_Send_Letter; \
  29. crm:P01_has_domain ?pc_to . \
  30. ?pc_to crm:P02_has_range ?uri2 . \
  31. ?uri2 rdfs:label ?label2 . \
  32. FILTER (?uri = <" + thisUrlParams.link + ">) \
  33. } \
  34. } ORDER BY DESC (?count)"
  35. // 'prepareQueryURL' defined in people.js
  36. let queryNet = prepareQueryURL(queryNetwork);
  37. // do the query, call data processor on successful output
  38. $.ajax({
  39. url: queryNet,
  40. dataType: "json",
  41. success: (data) => handle_word_network(data)
  42. });
  43. /**
  44. * COMPONENT CREATION SECTION
  45. *
  46. * */
  47. // Master function, takes data output from the query and creates the HTML for the Word Cloud component of the page
  48. function handle_word_network(json){
  49. // Pre-process data
  50. let tempArray = processQuery(json);
  51. let words = prepareWords(tempArray);
  52. // Create page elements
  53. doListPersonNetwork(tempArray);
  54. doWordCloud(words);
  55. }
  56. // Return structured object from raw query data for further processing
  57. function processQuery(json) {
  58. const tempArray = [];
  59. $.each(
  60. json['results']['bindings'],
  61. function (index, value) {
  62. let text = value['text']['value'];
  63. let link = value['uri2']['value'];
  64. let num = parseInt(value['count']['value']);
  65. tempArray.push({'text': text, 'count': num, 'hlink': link});
  66. }
  67. );
  68. return tempArray;
  69. }
  70. // Define font size, according to the number of words and limiting the impact of huge counts -- to refactor??
  71. function prepareWords(tempArray){
  72. const words = [];
  73. if (tempArray.length < 8) { // Less than 8 results -- font size is just = count/2 + constant
  74. for (let entry in tempArray) {
  75. let text = entry['text'];
  76. let preSize = entry['count'] + 36;
  77. let link = entry['hlink'];
  78. words.push(
  79. {
  80. 'text': text,
  81. 'size': preSize/2 + 6,
  82. 'hlink': link
  83. }
  84. );
  85. }
  86. } else { // More than 8 results -- font size = count except for especially "big" words
  87. let temp = 0;
  88. for (let k=tempArray.length-1; k>=0; k--) {
  89. let text = tempArray[k]['text'];
  90. let count = tempArray[k]['count'];
  91. let link = tempArray[k]['hlink'];
  92. let preSize = 0;
  93. if ((count - temp) > 50) {
  94. preSize = temp + 12;
  95. } else {
  96. preSize = count;
  97. }
  98. words.push(
  99. {
  100. 'text': text,
  101. 'size': preSize/2 + 6,
  102. 'hlink': link
  103. }
  104. );
  105. temp = preSize;
  106. }
  107. }
  108. console.log('tempArray', tempArray)
  109. console.log('words', words)
  110. return words;
  111. }
  112. // Create formatted list of people in the network
  113. function doListPersonNetwork(tempArray){
  114. let ArrayNames = "";
  115. tempArray.forEach(element => {
  116. ArrayNames += "<div class='item-place-person'><div class='item-place-person-label'>" +
  117. element['text'] + "<br /><span class='num_occ'>[Co-occorrenze: " + element['count'] + "]</span></div><div class='item-place-person-action'><div class='persona' id='" +
  118. element['hlink'] + "'><i class='fa fa-user' style='cursor:pointer'></i></div></div></div></div>";
  119. });
  120. document.getElementById("list_person_network").innerHTML = ArrayNames;
  121. }
  122. // Create the word cloud
  123. function doWordCloud(myWords){
  124. // Clear word cloud div
  125. $('#myWordCloud').empty();
  126. // OVERALL GRAPHIC SETTINGS for the cloud container -- id, dimensions, position
  127. // set the dimensions and margins of the graph
  128. let modifierWidth = 0.4;
  129. let modifierHeigth = 0.4;
  130. let marginHeight = 0;
  131. let marginWidth = 0;;
  132. let margin = {
  133. top: marginHeight,
  134. right: marginWidth,
  135. bottom: marginHeight,
  136. left: marginWidth};
  137. let width = modifierWidth*window.innerWidth;
  138. let height = modifierHeigth*window.innerHeight;
  139. // append the svg object to the body of the page
  140. let svg = d3.select("#myWordCloud")
  141. .append("svg")
  142. .attr("id", "wordcloudNetwork")
  143. .attr("width", width + margin.left + margin.right)
  144. .attr("height", height + margin.top + margin.bottom)
  145. .attr("style", "border:1px solid black")
  146. .append("g")
  147. .attr("transform", "translate(" + (width*0.75) + "," + (height*0.78) + ")")
  148. .attr("overflow","scroll");
  149. // In case of empty cloud, draw special page and exit
  150. if (myWords.length == 0){
  151. drawEmptyWordCloud();
  152. return;
  153. }
  154. // THE ACTUAL CLOUD
  155. // Constructs a new cloud layout instance. It runs an algorithm to find the position of words that suits your requirements
  156. // Wordcloud features that are different from one word to the other must be here
  157. let layout = d3.layout.cloud() // Constructs the cloud
  158. .size([1.5*width, 1.2*height]) // Sets width and height
  159. .words(myWords) // put words in; expects an array of objects. Format is free, it all depends on the definition of the functions that are applied to define the cloud structure.
  160. //
  161. // A js curiosity: ~ is a bitwise not operator. On a number, the double bitwise not ~~ has the net effect of giving the integer part, that is: floor on positives and ceiling on negatives.
  162. .rotate( () => { return ~~(Math.random() * 2);} )
  163. .fontSize( word => { return word['size']; } ) // font size of words
  164. .on("end", word => draw(word, svg));
  165. layout.start();
  166. }
  167. // Helper function for the Word Cloud --
  168. // it draws the words
  169. // Wordcloud features that are THE SAME from one word to the other can be here ??
  170. function draw(words, svg) {
  171. let cloud = svg.selectAll("g text")
  172. .data(words, word => word.text) // What does this do?
  173. //Entering words
  174. cloud.enter()
  175. .append("text")
  176. .style("font-family", "Impact")
  177. .attr("text-anchor", "middle")
  178. .attr('font-size', 1)
  179. .append("a")
  180. .attr("href", word => word.hlink)
  181. .text( word => { return word.text; });
  182. //Entering and exiting words
  183. cloud.transition()
  184. .duration(600)
  185. .style("font-size", function(d) { return d.size + "px"; })
  186. .attr("transform", function(d) {
  187. return "translate(" + [d.x, d.y] + ")rotate(" + d.rotate + ")";
  188. })
  189. .style("fill-opacity", 1);
  190. //Exiting words
  191. cloud.exit()
  192. .transition()
  193. .duration(200)
  194. .style('fill-opacity', 1e-6)
  195. .attr('font-size', 1)
  196. .remove();
  197. }
  198. // Helper function -- draw special empty word cloud if there are no occurrences
  199. function drawEmptyWordCloud(){
  200. let wordIcon = "<div id='users_icon' class='no_info_icon'> \
  201. <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512'> \
  202. <!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d='M319.9 320c57.41 0 103.1-46.56 103.1-104c0-57.44-46.54-104-103.1-104c-57.41 0-103.1 46.56-103.1 104C215.9 273.4 262.5 320 319.9 320zM369.9 352H270.1C191.6 352 128 411.7 128 485.3C128 500.1 140.7 512 156.4 512h327.2C499.3 512 512 500.1 512 485.3C512 411.7 448.4 352 369.9 352zM512 160c44.18 0 80-35.82 80-80S556.2 0 512 0c-44.18 0-80 35.82-80 80S467.8 160 512 160zM183.9 216c0-5.449 .9824-10.63 1.609-15.91C174.6 194.1 162.6 192 149.9 192H88.08C39.44 192 0 233.8 0 285.3C0 295.6 7.887 304 17.62 304h199.5C196.7 280.2 183.9 249.7 183.9 216zM128 160c44.18 0 80-35.82 80-80S172.2 0 128 0C83.82 0 48 35.82 48 80S83.82 160 128 160zM551.9 192h-61.84c-12.8 0-24.88 3.037-35.86 8.24C454.8 205.5 455.8 210.6 455.8 216c0 33.71-12.78 64.21-33.16 88h199.7C632.1 304 640 295.6 640 285.3C640 233.8 600.6 192 551.9 192z'/> \
  203. </svg> \
  204. <p>Nessuna persona trovata</p> \
  205. </div>";
  206. $("#wordcloudNetwork").css("display", "none");
  207. $("#references_network").css("display", "none");
  208. document.getElementById("myWordCloud").innerHTML = wordIcon;
  209. }