|
|
|
@ -8,8 +8,6 @@ var lsid;
|
|
|
|
|
var lsentid;
|
|
|
|
|
const formaClass='frm'
|
|
|
|
|
var selectedVista;
|
|
|
|
|
var vistaPeriodi=false
|
|
|
|
|
var vistaDialoghi=false
|
|
|
|
|
var listaPeriodiRisultato;
|
|
|
|
|
var listaClausoleRisultato;
|
|
|
|
|
var numeroContesti;
|
|
|
|
@ -79,16 +77,20 @@ $('#opzioniVista :checkbox').change(function() {
|
|
|
|
|
//resetFrasi()
|
|
|
|
|
selectedVista = 'frasi'
|
|
|
|
|
$(cantoDisplayed).attr('style', 'display: d-flex;')
|
|
|
|
|
vistaPeriodi=true
|
|
|
|
|
|
|
|
|
|
//cancello il grafo sintattico
|
|
|
|
|
//resetGraphStruct()
|
|
|
|
|
//emptyStructCard()
|
|
|
|
|
loadFrasi();
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
case "visPeriodi|false":
|
|
|
|
|
$("#vistaFrasi").css("display", "none");
|
|
|
|
|
resetFrasi()
|
|
|
|
|
vistaPeriodi=false
|
|
|
|
|
if(vistaDialoghi)
|
|
|
|
|
loadDialoghi();
|
|
|
|
|
$(cantoDisplayed).attr('style', 'display: d-flex;')
|
|
|
|
|
//cancello il grafo sintattico
|
|
|
|
|
//resetGraphStruct()
|
|
|
|
|
//emptyStructCard()
|
|
|
|
|
break;
|
|
|
|
|
case "visRiferimenti|true":
|
|
|
|
|
$(".showcomments").css("display", "inline-block");
|
|
|
|
@ -107,30 +109,12 @@ $('#opzioniVista :checkbox').change(function() {
|
|
|
|
|
break;
|
|
|
|
|
case "visDialoghi|true":
|
|
|
|
|
selectedVista = 'dialoghi'
|
|
|
|
|
//resetFrasi()
|
|
|
|
|
esetFrasi()
|
|
|
|
|
loadDialoghi();
|
|
|
|
|
vistaDialoghi=true
|
|
|
|
|
break;
|
|
|
|
|
case "visDialoghi|false":
|
|
|
|
|
$("#vistaDialoghi").css("display", "none");
|
|
|
|
|
vistaDialoghi=false
|
|
|
|
|
//trasformare in una funzione
|
|
|
|
|
for (mk in dialogspeakers){
|
|
|
|
|
|
|
|
|
|
$(cantoDisplayed).find(' .'+dialogspeakers[mk]).each(function() {
|
|
|
|
|
$(this).removeClass(dialogspeakers[mk]);
|
|
|
|
|
})
|
|
|
|
|
minim.contents().find(' .'+dialogspeakers[mk]).each(function(){
|
|
|
|
|
$(this).removeClass(dialogspeakers[mk]);
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
$(cantoDisplayed).find(' .'+dialogaltri).each(function() {
|
|
|
|
|
$(this).removeClass(dialogaltri);
|
|
|
|
|
})
|
|
|
|
|
minim.contents().find(' .'+dialogaltri).each(function(){
|
|
|
|
|
$(this).removeClass(dialogaltri);
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
resetFrasi()
|
|
|
|
|
break;
|
|
|
|
|
case "visMetafore|true":
|
|
|
|
|
//loadMetafore();
|
|
|
|
@ -140,7 +124,7 @@ $('#opzioniVista :checkbox').change(function() {
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
/*$("#valoreVista").on('change', function() {
|
|
|
|
|
$("#valoreVista").on('change', function() {
|
|
|
|
|
selectedVista = $(this).val();
|
|
|
|
|
switch (selectedVista){
|
|
|
|
|
case "forme":
|
|
|
|
@ -171,7 +155,7 @@ $('#opzioniVista :checkbox').change(function() {
|
|
|
|
|
resetGraphStruct()
|
|
|
|
|
emptyStructCard()
|
|
|
|
|
}
|
|
|
|
|
});*/
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -847,7 +831,6 @@ function resetFrasi(){
|
|
|
|
|
//cancello il grafo sintattico
|
|
|
|
|
resetGraphStruct()
|
|
|
|
|
emptyStructCard()
|
|
|
|
|
vistaPeriodi=false
|
|
|
|
|
}
|
|
|
|
|
/*INIZIO GESTIONE CITAZIONI*/
|
|
|
|
|
|
|
|
|
@ -1310,9 +1293,9 @@ function resetFrasi(){
|
|
|
|
|
//Calcola lemma e categoria grammaticale oppure categoria sintattica per tooltip
|
|
|
|
|
|
|
|
|
|
function formatTTContent(categ, syntType, sentId){
|
|
|
|
|
/*if (selectedVista=='frasi'){
|
|
|
|
|
if (selectedVista=='frasi'){
|
|
|
|
|
return '<div class="ttContent"><b>'+maptypes[syntType]+'</b></div>';
|
|
|
|
|
}*/
|
|
|
|
|
}
|
|
|
|
|
var details=[];
|
|
|
|
|
var lemma=categ.split('#')[1].replace("^", " ") //il lemma
|
|
|
|
|
var categoria=categ.split('#')[0] // la categoria
|
|
|
|
@ -1323,7 +1306,6 @@ function resetFrasi(){
|
|
|
|
|
var subcatgramm = '';
|
|
|
|
|
var popoverText = '';
|
|
|
|
|
var discorsost='';
|
|
|
|
|
var funcFrase='';
|
|
|
|
|
var TipiDiscorso={
|
|
|
|
|
"ThoughtDiscourse": "Pensato",
|
|
|
|
|
"DirectDiscourse": "Diretto",
|
|
|
|
@ -1341,7 +1323,7 @@ function resetFrasi(){
|
|
|
|
|
popoverText = popoverText + catgramm + subcatgramm;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(vistaDialoghi){
|
|
|
|
|
if(selectedVista=='dialoghi'){
|
|
|
|
|
for (const india in dialoghi){
|
|
|
|
|
if (dialoghi[india]['Cnt'].replace('_so','')==sentId){
|
|
|
|
|
discorsost="<div class='ttContentPers'><b>Personaggio:</b> <i>"+dialoghi[india]['Spna'].replace('http://dantenetwork.it/data/commedia/', '')+'</i>'
|
|
|
|
@ -1350,10 +1332,7 @@ function resetFrasi(){
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(vistaPeriodi){
|
|
|
|
|
funcFrase='<div class="ttContent"><b>'+maptypes[syntType]+'</b></div>'
|
|
|
|
|
}
|
|
|
|
|
popoverText=popoverText+discorsost+funcFrase
|
|
|
|
|
popoverText=popoverText+discorsost
|
|
|
|
|
return (popoverText);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|