Vse novosti

Gerard Piqué, zvezdnik Barcelone, je pridobil 60 milijonov EUR za zagon podjetja za minifotbal

189views

Gerard Pique, Foto: Dreamstime

`;
}

funkcija renderNestedComments(comments, nestingLevel = 0) {
let html=””;
comments.forEach(comment => {
html += renderComment(comment, 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, {
metoda: ‘POST’,
headers: {
“Content-Type”: “application/json”,
},
body: JSON.stringify({
data: { oldPostId: oldPostId }
})
});

if (!response.ok) {
vrzi novo Napaka(`Napaka HTTP! status: ${response.status}“);
}

const result = await response.json();
return result;
};

fetchCommentArchive(“27139180”)
.then(data => {
console.log(‘got comments data’, data);

const nestedCommentsHTML = renderNestedComments(data.result.comments);
console.log(‘fltr nestedcomments html’, nestedCommentsHTML);
jQuery(nestedCommentsHTML).appendTo(‘.article-comments-archive’);
})
.catch(error => console.error(‘Error fetching comment archive:’, error));

Leave a Response