Aggiunto nome autore a commentario

This commit is contained in:
nicola 2023-11-26 13:38:27 +01:00
parent 68130fe516
commit c6dc3adcc1
1 changed files with 27 additions and 15 deletions

View File

@ -910,6 +910,9 @@ function resetFrasi(){
var commentoCommentatore = [];
var urlCommento = "";
var esitoCommento = "";
var position = 0;
var autoreCommento = "";
for (var pos in commentsArray){
var comments = commentsArray[pos]
if (comments.verso == id){
@ -958,22 +961,31 @@ function resetFrasi(){
spanComment.append("<b>Rapporto Soggetto/Oggetto: </b><i>" + comments.RapportoSoggettoOggetto+"</i><br>");
}
if (comments.RapportoCommentoCommentatoreText != null && comments.RapportoCommentoCommentatoreText != "nan"){
commentoCommentatore = comments.RapportoCommentoCommentatoreText.split(' ');
urlCommento = commentoCommentatore[1];
urlCommento = urlCommento.replaceAll('"',"");
commentoCommentatore = comments.RapportoCommentoCommentatoreText.split(',');
urlCommento = commentoCommentatore[0];
position = urlCommento.indexOf("https");
urlCommento = urlCommento.substring(position)
//urlCommento = urlCommento.replaceAll("'","");
urlCommento = urlCommento.replaceAll("'","");
urlCommento = urlCommento.replaceAll(',',"");
//urlCommento = urlCommento.replaceAll(',',"");
esitoCommento = commentoCommentatore[3];
esitoCommento = esitoCommento.replaceAll('"',"");
esitoCommento = esitoCommento.replace("'Rapporto': ","")
//esitoCommento = esitoCommento.replaceAll('"',"");
esitoCommento = esitoCommento.replaceAll("'","");
esitoCommento = esitoCommento.replaceAll('}]',"");
esitoCommento = esitoCommento.replaceAll('}',"");
autoreCommento = commentoCommentatore[1];
autoreCommento = autoreCommento.replace(" 'Autore':","")
autoreCommento = autoreCommento.replaceAll("'","");
if (autoreCommento == ""){
autoreCommento = "Commento"
}
if (esitoCommento == ""){
esitoCommento = "Rapporto nullo"
}
if(urlCommento == ""){
spanComment.append('<b>Rapporto Commento/Commentatore: [</b>Commento nullo, '+esitoCommento+'] <br>');
}else{
spanComment.append('<b>Rapporto Commento/Commentatore: [</b><a href="'+urlCommento+'"target="_blank"<i>'+ "Commento"+'</i></a>, '+esitoCommento+'] <br>');
spanComment.append('<b>Rapporto Commento/Commentatore: [</b><a href="'+urlCommento+'"target="_blank"<i>'+ autoreCommento +'</i></a>, '+esitoCommento+'] <br>');
}
}
if (comments.annotazione != null && comments.annotazione != "nan"){
@ -984,7 +996,7 @@ function resetFrasi(){
spanForm.append(spanDiv);
spanDiv.append('<label for="comment"><b>Annotazione:</b></label>');
spanDiv.append('<textarea readonly class="form-control" rows="2" id="annotazione"+comments.verso name="text">'+comments.annotazione+'</textarea>');
}
if (comments.frammentoNota != null && comments.frammentoNota != "nan"){
var spanForm = $('<form />');
spanComment.append(spanForm);
@ -1013,9 +1025,11 @@ function resetFrasi(){
spanDiv.append('<textarea readonly class="form-control" rows="2" id="NotaFonteCitazione"+comments.verso name="text">'+comments.NotaFonteCitazione+'</textarea>');
}
}
spanComment.append('<hr class="pt-0 center text-dark bg-dark" style="width: 35%;">');
}
}
spanComment.appendTo(commentArea);
commentArea.append('<hr class="pt-0 center text-dark bg-dark" style="width: 35%;">');
$('#tab-list #vis0-tab').tab('show')
})
@ -1553,14 +1567,12 @@ function resetFrasi(){
//if (!resSent.has(fraseItems[0] + '-' + fraseItems[3])) {
let tmpocc=fraseItems.slice(-1)
if (resClauses.filter(clocc => clocc==tmpocc[0]).length==0) {
resClauses.push(tmpocc[0])
resSent.add(fraseItems[0] + '-' + fraseItems[3])
if (resClauses.filter(clocc => clocc==tmpocc[0]).length==0) {
resClauses.push(tmpocc[0]);
resSent.add(fraseItems[0] + '-' + fraseItems[3]);
//resSent.add(fraseItems.slice(-1))
resultsInCantica.push(fraseItems[4]);
resultsInCanto.push(fraseItems[4] + fraseItems[5])
resultsInCanto.push(fraseItems[4] + fraseItems[5]);
}
}
listaClausoleRisultato=Array.from(resSent)