| Server IP : 38.190.208.107 / Your IP : 216.73.217.13 Web Server : nginx/1.28.1 System : Linux ht2026040333114 6.1.0-10-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.37-1 (2023-07-03) x86_64 User : root ( 0) PHP Version : 8.2.28 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv,eval,assert,passthru,system,exec,shell_exec,popen,proc_open MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/wp.2/wp-content/themes/blocksy/static/js/frontend/woocommerce/ |
Upload File : |
import { onDocumentLoaded } from '../../helpers'
import ctEvents from 'ct-events'
import $ from 'jquery'
import './handle-events'
function isTouchDevice() {
try {
document.createEvent('TouchEvent')
return true
} catch (e) {
return false
}
}
export const wooEntryPoints = [
{
els: 'body.single-product .woocommerce-product-gallery:has(.ct-product-gallery-container)',
load: () => import('./single-product-gallery'),
trigger: [
{
id: 'hover-with-click',
// We should never affect the pills because the click events on
// the pills are very fragile and if we will do a preventDefault
// on them, they will not work. This is especially tricky on
// touch devices.
//
// Same situation for arrows, we should not interfere with their
// click events.
ignoredEls: ['.flexy-pills', '[class*="flexy-arrow-"]']
}
]
},
{
els: 'form.variations_form',
condition: () =>
!!document.querySelector(
'.woocommerce-product-gallery .ct-media-container'
),
load: () => import('./variable-products'),
...(isTouchDevice() ||
document.querySelectorAll(
'form.variations_form[data-product_variations="false"]'
)
? {}
: {
trigger: ['hover']
})
},
{
els: '.quantity .ct-increase, .quantity .ct-decrease',
load: () => import('./quantity-input'),
trigger: ['click']
},
{
els: '.ct-woocommerce-cart-form .quantity .qty',
load: () => import('./quantity-input'),
trigger: ['change']
},
{
els: '.ct-cart-auto-update .woocommerce-cart-form__cart-item input:not(.qty)',
load: () => import('./additional-inputs-autoupdate'),
trigger: ['change']
},
{
els: () => [...document.querySelectorAll('.ct-ajax-add-to-cart .cart')],
load: () => import('./add-to-cart-single'),
trigger: [
{
id: 'submit',
ignoreSubmitter: ['button[name]:not([name="add-to-cart"])']
}
]
},
{
els: '.ct-header-cart > .ct-cart-item, .ajax_add_to_cart, .ct-ajax-add-to-cart',
load: () => import('./mini-cart'),
events: ['ct:header:update'],
trigger: ['hover-with-touch']
},
{
els: '#woo-cart-panel .qty',
trigger: ['change'],
load: () => import('./quantity-update')
},
{
els: '.product .ct-card-variation-swatches',
load: () => import('./variation-stock'),
condition: () =>
!!document.querySelector('.product .ct-woo-card-stock'),
trigger: ['hover']
}
]