HEX
Server: nginx/1.18.0
System: Linux oas2 6.8.0-1039-oracle #40~22.04.1-Ubuntu SMP Wed Oct 29 05:11:00 UTC 2025 aarch64
User: root (0)
PHP: 8.1.2-1ubuntu2.23
Disabled: NONE
Upload Files
File: /var/www/ecom/wp-content/plugins/woocommerce-alidropship/assets/js/setup-wizard.js
jQuery(document).ready(function ($) {
    'use strict';
    $('.vi-wad-copy-secretkey').on('click', function () {
        let $container = $(this).closest('td');
        $container.find('.vi-wad-secret-key').select();
        $container.find('.vi-wad-copy-secretkey-success').remove();
        document.execCommand('copy');
        let $result_icon = $('<span class="vi-wad-copy-secretkey-success dashicons dashicons-yes" title="Copied to Clipboard"></span>');
        $container.append($result_icon);
        $result_icon.fadeOut(10000);
        setTimeout(function () {
            $result_icon.remove();
        }, 5000);
    });
    $('.vi-wad-secret-key').on('click', function () {
        $(this).closest('.input').find('.vi-wad-copy-secretkey').click();
    });
    let _vi_wad_ajax_nonce = vi_wad_setup_wizard_params._vi_wad_ajax_nonce;
    $('select.vi-ui.dropdown').dropdown();
    /*Add row*/
    $('.vi-wad-price-rule-add').on('click', function () {
        let $rows = $('.vi-wad-price-rule-row'),
            $lastRow = $rows.last(),
            $newRow = $lastRow.clone();
        $newRow.find('.vi-wad-price-from').val('');
        $newRow.find('.vi-wad-price-to').val('');
        $newRow.find('.vi-wad-plus-value-type').dropdown();
        $(this).closest('.vi-wad-price-rule-wrapper').find('.vi-wad-price-rule-container').append($newRow);
    });

    /*remove last row*/
    $(document).on('click', '.vi-wad-price-rule-remove', function () {
        let $button = $(this), $rows = $('.vi-wad-price-rule-row'),
            $row = $button.closest('.vi-wad-price-rule-row');
        if ($rows.length > 1) {
            if (confirm('Do you want to remove this row?')) {
                $row.fadeOut(300);
                setTimeout(function () {
                    $row.remove();
                }, 300)
            }
        }
    });
    let search_params = new URLSearchParams(window.location.href), setup_step = search_params.get('step');
    $('.vi-ui.button.primary').on('click', function () {
        if (setup_step == 2) {
            if (!$('#vi-wad-import-currency-rate').val()) {
                alert('Please enter Import products currency exchange rate');
                return false;
            }
        }
    });
    $(document).on('change', 'select[name="wad_plus_value_type[]"]', function () {
        change_price_label($(this));
    });
    $(document).on('change', 'select[name="wad_price_default[plus_value_type]"]', function () {
        change_price_label($(this));
    });

    function change_price_label($select) {
        let $current = $select.closest('tr');
        switch ($select.val()) {
            case 'fixed':
                $current.find('.vi-wad-value-label-left').html('+');
                $current.find('.vi-wad-value-label-right').html('$');
                break;
            case 'percent':
                $current.find('.vi-wad-value-label-left').html('+');
                $current.find('.vi-wad-value-label-right').html('%');
                break;
            case 'multiply':
                $current.find('.vi-wad-value-label-left').html('x');
                $current.find('.vi-wad-value-label-right').html('');
                break;
            default:
                $current.find('.vi-wad-value-label-left').html('=');
                $current.find('.vi-wad-value-label-right').html('$');
        }
    }

    $('#vi-wad-show-shipping-option').on('change', function () {
        let $dependency = $('#vi-wad-shipping-cost-after-price-rules').closest('tr');
        if ($(this).prop('checked')) {
            $dependency.fadeIn(200);
        } else {
            $dependency.fadeOut(200);
        }
    }).trigger('change');
    /*Update rate*/
    $('.vi-wad-import-currency-rate-button').on('click', function () {
        let $button = $(this), $container = $button.closest('div.labeled'),
            $exchange_rate_api = $('select[name="wad_exchange_rate_api"]'),
            $exchange_rate = $container.find('input[type="number"]'),
            exchange_rate_api = $exchange_rate_api.val();
        if (!$button.hasClass('loading')) {
            if (!exchange_rate_api) {
                alert('Please select an Exchange rate API to continue');
                $exchange_rate_api.click();
            } else {
                $button.addClass('loading');
                $.ajax({
                    url: vi_wad_setup_wizard_params.url,
                    type: 'GET',
                    dataType: 'JSON',
                    data: {
                        action: 'wad_get_exchange_rate',
                        _vi_wad_ajax_nonce: _vi_wad_ajax_nonce,
                        api: exchange_rate_api,
                        decimals: $('select[name="wad_exchange_rate_decimals"]').val(),
                        currency: $button.data('currency'),
                    },
                    success: function (response) {
                        if (response.status === 'success') {
                            $exchange_rate.val(response.data).trigger('change');
                        } else {
                            alert(response.message);
                        }
                    },
                    error: function (err) {
                        alert(err.statusText);
                    },
                    complete: function () {
                        $button.removeClass('loading');
                    }
                })
            }
        }
    });
});