document.querySelector('form').addEventListener('submit', function(e) {
e.preventDefault();
const postTitle = document.getElementById('temp_post_title').value;
const whatsapp = document.getElementById('temp_whatsapp').value;
// هنا تضع كود AJAX لحفظ المنشور أو يمكنك حفظه طبيعي
// بعد الحفظ، نفترض أن معرف المنشور الجديد هو lastPostId
const lastPostId = 123; // يجب تغييره للمعرف الحقيقي
// عرض العنوان أعلى المنشور
const postCard = document.querySelector(`#post-card-${lastPostId}`);
if(postCard){
const titleEl = document.createElement('h3');
titleEl.classList.add('text-[#EA9507]','font-bold','text-lg','mb-2');
titleEl.textContent = postTitle;
postCard.prepend(titleEl);
if(whatsapp){
const waLink = document.createElement('a');
waLink.href = `https://wa.me/${whatsapp}`;
waLink.target = '_blank';
waLink.classList.add('text-green-600','text-sm','flex','items-center','gap-1');
waLink.textContent = '📱 واتساب';
postCard.querySelector('.flex.items-center.gap-2.justify-end')?.appendChild(waLink);
}
}
// مسح الحقول
document.getElementById('temp_post_title').value = '';
document.getElementById('temp_whatsapp').value = '';
});