Alla artiklar

Barcelonas storstjärna Gerard Piqué har fått en finansiering på 60 miljoner euro för ett nystartat minifotbollsföretag

67views

Gerard Pique, Foto: Dreamstime

`;
}

function renderNestedComments(comments, nestingLevel = 0) {
låt html=””;
comments.forEach(kommentar => {
html += renderComment(kommentar, nestingLevel);
if (comment.children && comment.children.length > 0) {
html += renderNestedComments(comment.children, nestingLevel + 1);
}
});
return html ? html : ’

’;
}

const fetchCommentArchive = async (oldPostId) => {
const url=”https://europe-west1-hotnewsauth.cloudfunctions.net/getCommentArchive”;

const response = await fetch(url, {
metod: ’POST’,
headers: {
’Content-Type’: ’application/json’,
},
body: JSON.stringify({
data: { oldPostId: oldPostId }
})
});

if (!response.ok) {
throw new Error(`HTTP-fel! status: ${response.status}`);
}

const result = await response.json();
returnera resultat;
};

fetchCommentArchive(”27139180”)
.then(data => {
console.log(’fick kommentardata’, data);

const nestedCommentsHTML = renderNestedComments(data.result.comments);
console.log(’fltr nestedcomments html’, nestedCommentsHTML);
jQuery(nestedCommentsHTML).appendTo(’.article-comments-archive’);
})
.catch(error => console.error(’Fel vid hämtning av kommentararkiv:’, error));

Leave a Response