Rindu
Isi Karya
Rindu saat cheese donut bertemu americano
nasi kuning dengan styrofoam
saat mojito dengan gelas besar
sop iga dan cireng panas
mungkin Vsixty dengan sloki
atau Lemon Filter dengan es batu
tapi tongseng belum juga tiba
Menganalisis konten...
";
try {
const res = await fetch("ai_comment.php?id=" + id + "&type=" + type);
const data = await res.json();
if (data.status === "success") {
container.innerHTML = data.comment;
} else {
container.innerHTML = "Gagal memuat analisis.
";
}
} catch (e) {
container.innerHTML = "Error koneksi.
";
}
}
async function postManualComment(id, type) {
const name = document.getElementById("userCommentName").value.trim();
const content = document.getElementById("userCommentText").value.trim();
if(!name || !content) { alert("Mohon isi nama dan komentar."); return; }
// Simple POST (you would implement a real endpoint for this)
appendCommentHTML({name: name, content: content, time_display: "Baru saja"});
document.getElementById("userCommentText").value = "";
alert("Komentar terkirim!");
}
Diskusi Pembaca