Server IP : 162.0.217.223 / Your IP : 216.73.216.153 Web Server : LiteSpeed System : Linux premium269.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : mypckeys ( 1539) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/mypckeys/public_html/wp-content/plugins/woocommerce-currency-switcher/js/ |
Upload File : |
"use strict"; var woocs_focused_curr_input = null; (function () { const woocs = {}; const createModal = ({link}) => { const modal = document.createElement('div'); modal.classList.add('woocs__modal'); modal.insertAdjacentHTML('afterbegin', ` <div class="woocs__modal-overlay"> <div class="woocs__modal-window"> <span class="woocs-modal-close">×</span> <div class="woocs__modal-body"> <img id="woocs-modal-img"> </div> </div> </div> `); modal.querySelector('#woocs-modal-img').src = link || ''; document.body.appendChild(modal); return modal; } woocs.modal = function (options) { const $modal = createModal(options); let closing = false; return { open() { !closing && $modal.classList.add('open'); document.body.addEventListener("click", ({target}) => { if (target.className === "woocs__modal-overlay" || target.className === "woocs-modal-close" ) { this.close(); } return; }); }, close() { closing = true; $modal.classList.remove('open'); $modal.classList.add('hide'); setTimeout(() => { $modal.classList.remove('hide'); closing = false; this.destroy(); }, 200) }, destroy() { $modal.remove(); } } } const link = document.getElementById("woocs-modal-link"); const onClickModalHandler = (e) => { e.preventDefault(); const link = e.target.getAttribute('href'); const modalLink = woocs.modal({link}); setTimeout(() => { modalLink.open(); }, 0); }; link.addEventListener('click', onClickModalHandler); })(); (function ($) { document.querySelectorAll('#woocs-pills-tab li a').forEach(function (tab) { tab.addEventListener('click', function (e) { e.preventDefault(); document.querySelectorAll('#woocs-pills-tab li a').forEach(function (a) { a.classList.remove('woocs-active', 'woocs-show'); }); document.querySelectorAll('#woocs-pills-tab-content .woocs__tab-pane').forEach(function (tp) { tp.classList.remove('woocs-active', 'woocs-show'); }); this.classList.add('woocs-active'); document.querySelector(this.getAttribute('href')).classList.add('woocs-active', 'woocs-show'); return false; }); }); if ($('.woocs-color-picker').length) { $('.woocs-color-picker').wpColorPicker({ defaultColor: true }); } })(jQuery); jQuery(function ($) { $('#woocs_auto_switcher_skin').on("change", function () { var woocs_side_switcher_skin = $(this).val(); if (woocs_side_switcher_skin == 'roll_blocks') { $('.woocs_roll_blocks_width').show(200); } else { $('.woocs_roll_blocks_width').hide(200); } }); $('#woocs_is_multiple_allowed').on("change", function () { var woocs_is_multiple_allowed = parseInt($(this).val(), 10); var woocs_is_fixed_enabled = parseInt($('#woocs_is_fixed_enabled').val(), 10); //*** if (woocs_is_multiple_allowed) { $('input[name=woocs_is_fixed_enabled]').parents('tr').show(200); $('input[name=woocs_is_fixed_coupon]').parents('tr').show(200); $('input[name=woocs_is_fixed_shipping]').parents('tr').show(200); if (woocs_is_fixed_enabled) { $('input[name=woocs_force_pay_bygeoip_rules]').parents('tr').show(200); } } else { $('input[name=woocs_is_fixed_enabled]').parents('tr').hide(200); $('input[name=woocs_is_fixed_coupon]').parents('tr').hide(200); $('input[name=woocs_is_fixed_shipping]').parents('tr').hide(200); $('input[name=woocs_force_pay_bygeoip_rules]').parents('tr').hide(200); } }); woocs_init_switcher(); document.addEventListener('woocs_blind_option', function (e) { if (parseInt(e.detail.value, 10)) { alert(woocs_lang.blind_option); } if (e.detail.name === 'woocs_is_fixed_enabled') { if (parseInt(e.detail.value, 10)) { document.querySelector('input[name=woocs_force_pay_bygeoip_rules]').closest('tr').classList.remove('woocs_settings_hide'); } else { document.querySelector('input[name=woocs_force_pay_bygeoip_rules]').closest('tr').classList.add('woocs_settings_hide'); } } }); document.addEventListener('woocs_is_auto_switcher', function (e) { if (parseInt(e.detail.value, 10)) { $('#woocs-tabs-4 .woocs__table tbody > tr').not(':first').show(200); $('#woocs-tabs-4 .woocs__table').not(':first').show(200); $('#woocs-tabs-4 .woocs__link-img').show(200); } else { $('#woocs-tabs-4 .woocs__table tbody > tr').not(':first').hide(200); $('#woocs-tabs-4 .woocs__table').not(':first').hide(200); $('#woocs-tabs-4 .woocs__link-img').hide(200); } }); $('.woocs-select-all-in-select').on('click', function () { $(this).parents('td').find('select option').attr('selected', true); $(this).parents('td').find('select').trigger('change'); return false; }); $('.woocs-clear-all-in-select').on('click', function () { $(this).parents('td').find('select option').attr('selected', false); $(this).parents('td').find('select').trigger('change'); return false; }); $('body').on('focus', 'input[name="woocs_name[]"]', function () { woocs_focused_curr_input = this; let container = document.querySelector('#woocommerce-embedded-root .woocommerce-layout__header-wrapper h1'); container.innerHTML = ''; let select = document.createElement('input'); select.className = 'woocs-currency-sel-helper'; select.setAttribute('list', 'woocs-currency-sel-helper-list'); select.setAttribute('placeholder', woocs_lang.insert_currency); let datalist = document.createElement('datalist'); datalist.id = 'woocs-currency-sel-helper-list'; Object.values(woocs_world_currencies).forEach(function (c) { let o = document.createElement('option'); o.value = c.code; o.innerText = c.name_plural; datalist.appendChild(o); }); container.appendChild(select); container.appendChild(datalist); select.addEventListener('change', function () { console.log(this.value); woocs_focused_curr_input.value = this.value; document.querySelector('#woocommerce-embedded-root .woocommerce-layout__header-wrapper h1').innerHTML = `Currency`; }); return false; }); //woocs_name[] helpe select closer document.addEventListener('click', function (e) { let target = e.target; let close = true; if (target && target instanceof HTMLElement) { if (target.classList.contains('woocs-currency-sel-helper') || target.classList.contains('woocs-name-input')) { close = false; } } if (close) { document.querySelector('#woocommerce-embedded-root .woocommerce-layout__header-wrapper h1').innerHTML = woocs_lang.currency; } }); jQuery('.scrollbar-external').scrollbar({ autoScrollSize: false, scrollx: $('.external-scroll_x'), scrolly: $('.external-scroll_y') }); }); jQuery(function ($) { // jQuery('.wfc-tabs').wfcTabs(); jQuery("#woocs_list").sortable({ handle: '.woocs_settings_move' }); jQuery('#woocs_add_currency, #woocs_add_currency2').on('click', function () { if (jQuery('.woocs_settings_promotion').length > 0) { if (confirm('Hi! In the free version of FOX you can operate with 2 ANY currencies! If you want to use more currencies you can make upgrade to the premium version of the plugin. Would you like to visit the plugin page on Codecanyon?')) { //window.open('https://currency-switcher.com/a/buy', '_blank'); window.location.href = 'https://currency-switcher.com/a/buy'; } } else { let action = this.getAttribute('data-action'); if (action === 'append') { jQuery('#woocs_list').append(jQuery('#woocs_item_tpl').html()); } else { jQuery('#woocs_list').prepend(jQuery('#woocs_item_tpl').html()); } } return false; }); jQuery('body').on('click', '.woocs_del_currency', function () { jQuery(this).parents('tr').hide(220, function () { jQuery(this).remove(); }); return false; }); jQuery('#woocs_add_currencies').on('click', function () { let popup = new Popup23({right: 20, left: 20, top: 20, bottom: 20, title: woocs_lang.curr_wizard}, document.getElementById('woocs_currencies_modal'), true); }); jQuery('#woocs_currencies_modal .woocs__button.woocs_add_currencies').on('click', function () { var currencies = []; jQuery('#woocs_currencies_modal select option:selected').each(function () { currencies.push(this.value); }); if (currencies.length) { this.parentNode.innerHTML = '<br>' + woocs_lang.installing + ' ...'; var data = { action: "woocs_add_currencies", new_currencies: currencies }; jQuery.post(ajaxurl, data, function (request) { try { woocs_hide_stat_info_popup(); woocs_show_info_popup(woocs_lang.save_changes, 1999); window.onbeforeunload = null; location.reload(); } catch (e) { //woocs_hide_stat_info_popup(); alert('Request error!'); } }); } } ); jQuery('body').on('click', '.woocs_is_etalon', function () { jQuery('.woocs_is_etalon').next('input[type=hidden]').val(0); jQuery('.woocs_is_etalon').prop('checked', 0); jQuery(this).next('input[type=hidden]').val(1); jQuery(this).prop('checked', 1); jQuery(this).parents('tr').find("input[name='woocs_rate[]']").val(1); jQuery("input[name='woocs_rate[]']").removeAttr('readonly'); jQuery(this).parents('tr').find("input[name='woocs_rate[]']").attr('readonly', ''); jQuery('#woocs_list').find('tr').attr('data-etalon', 0); jQuery(this).parents('tr').attr('data-etalon', 1); jQuery(this).parents('tr').find("input[name='woocs_rate_plus[]']").val(''); //instant save var currency_name = jQuery(this).parents('tr').find('input[name="woocs_name[]"]').val(); if (currency_name.length) { woocs_show_stat_info_popup(woocs_lang.loading + ' ...'); var data = { action: "woocs_save_etalon", currency_name: currency_name }; jQuery.post(ajaxurl, data, function (request) { try { request = JSON.parse(request); jQuery.each(request, function (index, value) { var elem = jQuery('input[name="woocs_name[]"]').filter(function () { return this.value.toUpperCase() == index; }); if (elem) { jQuery(elem).parents('tr').find('input[name="woocs_rate[]"]').val(value); jQuery(elem).parents('tr').find('input[name="woocs_rate[]"]').text(value); } }); woocs_hide_stat_info_popup(); woocs_show_info_popup(woocs_lang.save_changes, 1999); } catch (e) { woocs_hide_stat_info_popup(); alert('Request error! Try later or another agregator!'); } }); } return true; }); jQuery('body').on('change', '.woocs_flag_input', function () { jQuery(this).next('a.woocs_flag').find('img').attr('src', jQuery(this).val()); }); jQuery('body').on('click', '.woocs_flag', function () { var _this = this; var flag = this.querySelector('img'); let currency = this.closest('td').nextElementSibling.querySelector('input').value; var image = wp.media({ title: woocs_lang.select_flag + ': ' + currency, multiple: false, library: { type: ['image'] } }).open() .on('select', function (e) { let uploaded_image = image.state().get('selection').first(); uploaded_image = uploaded_image.toJSON(); if (typeof uploaded_image.url != 'undefined') { let url = ''; if (typeof uploaded_image.sizes.thumbnail !== 'undefined') { url = uploaded_image.sizes.thumbnail.url; } else { url = uploaded_image.url; } //fix url = uploaded_image.url; flag.setAttribute('src', url); _this.parentNode.querySelector('input[type=hidden]').value = url; } }); return false; }); jQuery('body').on('click', '.woocs_get_fresh_rate', function () { var currency_name = jQuery(this).parents('tr').find('input[name="woocs_name[]"]').val(); var _this = this; jQuery(_this).parent().find('input[name="woocs_rate[]"]').val(woocs_lang.loading.toLowerCase() + ' ...'); var data = { action: "woocs_get_rate", currency_name: currency_name }; jQuery.post(ajaxurl, data, function (value) { jQuery(_this).parent().find('input[name="woocs_rate[]"]').val(value); }); return false; }); $('body').on('click', '.label.container', function () { $(this).find('input[type=radio]').trigger('click'); return true; }); //loader jQuery(".woocs-admin-preloader").fadeOut("slow"); }); //********************* function woocs_update_all_rates() { jQuery('.woocs_is_etalon:checked').trigger('click'); } function woocs_add_money_sign2() { const el = document.querySelector('a[href="#woocs-tabs-2"]'); document.querySelectorAll('#woocs-pills-tab li a').forEach(function (a) { a.classList.remove('woocs-active', 'woocs-show'); }); document.querySelectorAll('#woocs-pills-tab-content .woocs__tab-pane').forEach(function (tp) { tp.classList.remove('woocs-active', 'woocs-show'); }); el.classList.add('woocs-active'); document.querySelector(el.getAttribute('href')).classList.add('woocs-active', 'woocs-show'); document.querySelector('#woocs_customer_signs').focus(); jQuery('#woocs_customer_signs').scroll(); } function woocs_init_switcher(container = '') { Array.from(document.querySelectorAll(container + ' .switcher23')).forEach((button) => { button.addEventListener('click', function () { if (this.value > 0) { this.value = 0; this.previousSibling.value = 0; this.removeAttribute('checked'); } else { this.value = 1; this.previousSibling.value = 1; this.setAttribute('checked', 'checked'); } if (this.previousSibling.getAttribute('name') === 'woocs_shop_is_cached') { if (parseInt(this.value, 10)) { jQuery('input[name=woocs_shop_is_cached_preloader]').parents('tr').show(200); } else { jQuery('input[name=woocs_shop_is_cached_preloader]').parents('tr').hide(200); } } //Trigger the event if (this.getAttribute('data-event').length > 0) { document.dispatchEvent(new CustomEvent(this.getAttribute('data-event'), {detail: { name: this.previousSibling.getAttribute('name'), value: parseInt(this.value, 10) }})); } return true; }); }); } function woocs_update_profiles_data(key, title, countries) { var woocs_wpnonce = jQuery('input[name="woocs_wpnonce_geo"]').val(); var data = { action: "woocs_update_profiles_data", countries: countries, key: key, title: title, woocs_wpnonce_geo: woocs_wpnonce }; jQuery.post(ajaxurl, data, function (value) { value = JSON.parse(value); var info = jQuery('.woocs_geoip_profile_info'); if (value.info) { jQuery(info).text(value.info); jQuery(info).show(); setTimeout(function () { jQuery(info).text(""); jQuery(info).hide(); }, 3000); } var select = jQuery('select.woocs_geoip_profile_countries'); var option = jQuery(select).find('option[data-key="' + value.key + '"]'); if (jQuery(option).length) { jQuery(option).replaceWith(value.option); } else { jQuery(select).append(value.option); } jQuery(select).trigger('change'); document.querySelector('select.woocs_geoip_profile_countries option:last-child').setAttribute('selected', ''); }); } function woocs_add_geoip_profile() { var countries = jQuery('#woocs_geo_rules_profile_countries').val(); var title = jQuery('input[name="woocs_geo_rules_profile_title"]').val(); if (!title) { alert(woocs_lang.set_title); } if (title && countries) { woocs_update_profiles_data(0, title, countries); } } function woocs_update_geoip_profile() { var countries = jQuery('#woocs_geo_rules_profile_countries').val(); var title = jQuery('input[name="woocs_geo_rules_profile_title"]').val(); var key = jQuery('input[name="woocs_geo_rules_profile_key"]').val(); if (!title) { alert(woocs_lang.set_title); } if (title && countries && key) { woocs_update_profiles_data(key, title, countries); } } function woocs_edit_geoip_profile() { var selected = jQuery('select.woocs_geoip_profile_countries option:selected'); var key = selected.data('key'); var value = selected.val(); var title = selected.text(); jQuery('input[name="woocs_geo_rules_profile_title"]').val(title); jQuery('input[name="woocs_geo_rules_profile_key"]').val(key); if (value = JSON.parse(value)) { jQuery('#woocs_geo_rules_profile_countries').val(value); document.querySelector('.woocs_update_geoip_profile').style.display = 'inline-block'; jQuery('#woocs_geo_rules_profile_countries').trigger('change'); jQuery('#woocs_geo_rules_profile_countries').trigger("chosen:updated"); } } function woocs_delete_geoip_profile() { var selected = jQuery('select.woocs_geoip_profile_countries option:selected'); var key = selected.data('key'); var woocs_wpnonce =jQuery('input[name="woocs_wpnonce_geo"]').val(); var data = { action: "woocs_delete_profiles_data", woocs_wpnonce_geo: woocs_wpnonce, key: key }; if (confirm("Sure?")) { jQuery.post(ajaxurl, data, function (value) { var info = jQuery('.woocs_geoip_profile_info'); if (value = JSON.parse(value)) { if (value.info) { jQuery(info).text(value.info); jQuery(info).show(); setTimeout(function () { jQuery(info).text(""); jQuery(info).hide(); }, 3000); } } jQuery(selected).remove(); }); } } function woocs_cancel_geoip_profile() { jQuery('#woocs_geo_rules_profile_countries option').removeAttr('selected'); jQuery('input[name="woocs_geo_rules_profile_title"]').val(""); jQuery('input[name="woocs_geo_rules_profile_key"]').val(""); jQuery('.woocs_update_geoip_profile').hide(); jQuery('#woocs_geo_rules_profile_countries').trigger('change'); jQuery('#woocs_geo_rules_profile_countries').trigger("chosen:updated"); } function woocs_geoip_profile_to_rules() { var currency = jQuery('.woocs_profile_geoip_currency').val(); var selected = jQuery('select.woocs_geoip_profile_countries option:selected'); var value = selected.val(); if (value = JSON.parse(value)) { jQuery('select[name="woocs_geo_rules[' + currency + '][]"]').val(value); jQuery('select[name="woocs_geo_rules[' + currency + '][]"]').trigger('change'); jQuery('select[name="woocs_geo_rules[' + currency + '][]"]').trigger("chosen:updated"); return false; } }