File: /home/salamatk/takarzan.ir/wp-content/plugins/luman-plus/assets/js/lottie-ai.js
// این فایل فقط منطق باز/بستن پنل و لود لوتی را مدیریت کند
document.addEventListener("DOMContentLoaded", function () {
var wrapper = document.getElementById("ai-float-btn-panel");
var aiPanel = document.getElementById("ai-float-panel");
if (!wrapper || !aiPanel) return;
// لوتی دکمه
var lottieSrc = document
.getElementById("lottie-ai-animation")
?.getAttribute("data-lottie-src");
if (lottieSrc) {
var lottieBtn = document.createElement("lottie-player");
lottieBtn.setAttribute("src", lottieSrc);
lottieBtn.setAttribute("background", "transparent");
lottieBtn.setAttribute("speed", "1");
lottieBtn.setAttribute("loop", "");
lottieBtn.setAttribute("autoplay", "");
lottieBtn.style.width = "100%";
lottieBtn.style.height = "100%";
var lottieContainer = document.getElementById("lottie-ai-animation");
if (lottieContainer) lottieContainer.appendChild(lottieBtn);
}
// باز و بسته کردن پنل
wrapper.style.cursor = "pointer";
wrapper.addEventListener("click", function () {
wrapper.style.display = "none";
aiPanel.style.display = "flex";
});
var closeBtn = aiPanel.querySelector(".ai-panel-close-btn");
if (closeBtn) {
closeBtn.addEventListener("click", function (e) {
e.stopPropagation();
aiPanel.style.display = "none";
wrapper.style.display = "flex";
});
}
});