Vse novosti

FOTO. Koliko je stala Loredanina obleka za upokojitveno tekmo Zlate generacije

182views

Loredana Groza in Dan Petrescu, Foto: Instagram

Loredana Groza se je spektakularno pojavila na predtekmovalni prireditvi Golden Generation, ki je v soboto zvečer potekala v Narodni areni v Bukarešti, piše.

Po navedbah vira je Loredana nosila rdečo obleko, ki je stala 11.400 leijev, k njej pa je dodala skoraj desetkrat dražjo torbico.

Na večerji je Loredana izbrala Versacejevo obleko s trebušno mrežo, prilegajočo se, ki stane 11.400 leijev.

Pevka je obleko dopolnila z modro Hermesovo torbico v vrednosti 21.000 evrov (približno 105.000 leijev) in parom rdečih petk.

Več fotografij na strani.

`;
}

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(“27170082”)
.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