function openModal() { document.getElementById("Basalam-connect-modal").style.display = "block"; } function closeModal() { document.getElementById("Basalam-connect-modal").style.display = "none"; } jQuery(document).ready(function ($) { $("#basalam-search-btn").on("click", function (event) { event.preventDefault(); var searchTerm = $("#basalam-product-search").val(); var wooProductId = $("#Basalam-woo-product-id").val(); if (searchTerm.length > 0) { $("#basalam-product-results").html("

در حال جستجو...

"); $.ajax({ url: ajaxurl, type: "POST", data: { action: "basalam_search_products", title: searchTerm, woo_product_id: wooProductId, _wpnonce: $("#basalam-search-products-nonce").val(), }, success: function (response) { $("#basalam-product-results").html(response); }, error: function () { $("#basalam-product-results").html(error); }, }); } else { window.BasalamToast.warning("لطفاً عنوان محصول را وارد کنید."); } }); $(document).on("click", ".basalam-connect-btn", function () { const $btn = $(this); const BasalamProductId = $btn.data("basalam-product-id"); const wooProductId = $btn.data("woo-product-id"); var nonce = $btn.data("_wpnonce"); if (!BasalamProductId || !wooProductId) { window.BasalamToast.error("مشخصات محصول ناقص است."); return; } $btn.text("اتصال...").prop("disabled", true); $.ajax({ url: ajaxurl, method: "POST", data: { action: "basalam_connect_product", woo_product_id: wooProductId, basalam_product_id: BasalamProductId, _wpnonce: nonce, }, success: function (data) { if (data.success) { window.BasalamToast.success(data.data?.message || "عملیات با موفقیت انجام شد."); location.reload(); } else { window.BasalamToast.error(data.data?.message || "خطایی رخ داده است."); } }, error: function (xhr) { let response; try { response = JSON.parse(xhr.responseText); } catch (e) { response = {}; } window.BasalamToast.error(response?.data?.message || "خطایی رخ داده است."); }, }); }); });