mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-01 07:02:48 +08:00
Ensure `.trigger('change')` on `.wc_input_subscription_price` is only called when the selected product type is 'subscription' or 'variable-subscription'. Prevents issue where non-subscription products have their regular price cleared, which was likely triggered indirectly by the Square plugin.
317 lines
8.6 KiB
JavaScript
317 lines
8.6 KiB
JavaScript
document.addEventListener( 'DOMContentLoaded', () => {
|
|
const disableFields = ( productId ) => {
|
|
const variations = document.querySelector( '.woocommerce_variations' );
|
|
if ( variations ) {
|
|
const children = variations.children;
|
|
for ( let i = 0; i < children.length; i++ ) {
|
|
const variableId = children[ i ]
|
|
.querySelector( 'h3' )
|
|
.getElementsByClassName( 'variable_post_id' )[ 0 ].value;
|
|
if ( variableId === productId ) {
|
|
children[ i ]
|
|
.querySelector( '.woocommerce_variable_attributes' )
|
|
.getElementsByClassName(
|
|
'wc_input_subscription_period_interval'
|
|
)[ 0 ]
|
|
.setAttribute( 'disabled', 'disabled' );
|
|
children[ i ]
|
|
.querySelector( '.woocommerce_variable_attributes' )
|
|
.getElementsByClassName(
|
|
'wc_input_subscription_period'
|
|
)[ 0 ]
|
|
.setAttribute( 'disabled', 'disabled' );
|
|
children[ i ]
|
|
.querySelector( '.woocommerce_variable_attributes' )
|
|
.getElementsByClassName(
|
|
'wc_input_subscription_trial_length'
|
|
)[ 0 ]
|
|
.setAttribute( 'disabled', 'disabled' );
|
|
children[ i ]
|
|
.querySelector( '.woocommerce_variable_attributes' )
|
|
.getElementsByClassName(
|
|
'wc_input_subscription_trial_period'
|
|
)[ 0 ]
|
|
.setAttribute( 'disabled', 'disabled' );
|
|
children[ i ]
|
|
.querySelector( '.woocommerce_variable_attributes' )
|
|
.getElementsByClassName(
|
|
'wc_input_subscription_length'
|
|
)[ 0 ]
|
|
.setAttribute( 'disabled', 'disabled' );
|
|
}
|
|
}
|
|
}
|
|
|
|
const periodInterval = document.querySelector(
|
|
'#_subscription_period_interval'
|
|
);
|
|
periodInterval.setAttribute( 'disabled', 'disabled' );
|
|
|
|
const subscriptionPeriod = document.querySelector(
|
|
'#_subscription_period'
|
|
);
|
|
subscriptionPeriod.setAttribute( 'disabled', 'disabled' );
|
|
|
|
const subscriptionLength = document.querySelector(
|
|
'._subscription_length_field'
|
|
);
|
|
subscriptionLength.style.display = 'none';
|
|
|
|
const subscriptionTrial = document.querySelector(
|
|
'._subscription_trial_length_field'
|
|
);
|
|
subscriptionTrial.style.display = 'none';
|
|
|
|
const soldIndividually = document.querySelector(
|
|
'#_sold_individually'
|
|
);
|
|
soldIndividually.setAttribute( 'disabled', 'disabled' );
|
|
};
|
|
|
|
const checkSubscriptionPeriodsInterval = (
|
|
period,
|
|
period_interval,
|
|
price,
|
|
linkBtn
|
|
) => {
|
|
if ( ! linkBtn ) {
|
|
return;
|
|
}
|
|
|
|
if (
|
|
( period === 'year' && parseInt( period_interval ) > 1 ) ||
|
|
( period === 'month' && parseInt( period_interval ) > 12 ) ||
|
|
( period === 'week' && parseInt( period_interval ) > 52 ) ||
|
|
( period === 'day' && parseInt( period_interval ) > 356 ) ||
|
|
! price ||
|
|
parseInt( price ) <= 0
|
|
) {
|
|
linkBtn.disabled = true;
|
|
linkBtn.checked = false;
|
|
if ( ! price || parseInt( price ) <= 0 ) {
|
|
linkBtn.setAttribute(
|
|
'title',
|
|
PayPalCommerceGatewayPayPalSubscriptionProducts.i18n
|
|
.prices_must_be_above_zero
|
|
);
|
|
} else {
|
|
linkBtn.setAttribute(
|
|
'title',
|
|
PayPalCommerceGatewayPayPalSubscriptionProducts.i18n
|
|
.not_allowed_period_interval
|
|
);
|
|
}
|
|
} else {
|
|
linkBtn.disabled = false;
|
|
linkBtn.removeAttribute( 'title' );
|
|
}
|
|
};
|
|
|
|
const setupProducts = () => {
|
|
jQuery( '.wc_input_subscription_period' ).on( 'change', ( e ) => {
|
|
const linkBtn =
|
|
e.target.parentElement.parentElement.parentElement.parentElement.querySelector(
|
|
'input[name="_ppcp_enable_subscription_product"]'
|
|
);
|
|
if ( linkBtn ) {
|
|
const period_interval = e.target.parentElement.querySelector(
|
|
'select.wc_input_subscription_period_interval'
|
|
)?.value;
|
|
const period = e.target.value;
|
|
const price = e.target.parentElement.querySelector(
|
|
'input.wc_input_subscription_price'
|
|
)?.value;
|
|
|
|
checkSubscriptionPeriodsInterval(
|
|
period,
|
|
period_interval,
|
|
price,
|
|
linkBtn
|
|
);
|
|
}
|
|
} );
|
|
|
|
jQuery( '.wc_input_subscription_period_interval' ).on(
|
|
'change',
|
|
( e ) => {
|
|
const linkBtn =
|
|
e.target.parentElement.parentElement.parentElement.parentElement.querySelector(
|
|
'input[name="_ppcp_enable_subscription_product"]'
|
|
);
|
|
if ( linkBtn ) {
|
|
const period_interval = e.target.value;
|
|
const period = e.target.parentElement.querySelector(
|
|
'select.wc_input_subscription_period'
|
|
)?.value;
|
|
const price = e.target.parentElement.querySelector(
|
|
'input.wc_input_subscription_price'
|
|
)?.value;
|
|
|
|
checkSubscriptionPeriodsInterval(
|
|
period,
|
|
period_interval,
|
|
price,
|
|
linkBtn
|
|
);
|
|
}
|
|
}
|
|
);
|
|
|
|
jQuery( '.wc_input_subscription_price' ).on( 'change', ( e ) => {
|
|
const linkBtn =
|
|
e.target.parentElement.parentElement.parentElement.parentElement.querySelector(
|
|
'input[name="_ppcp_enable_subscription_product"]'
|
|
);
|
|
if ( linkBtn ) {
|
|
const period_interval = e.target.parentElement.querySelector(
|
|
'select.wc_input_subscription_period_interval'
|
|
)?.value;
|
|
const period = e.target.parentElement.querySelector(
|
|
'select.wc_input_subscription_period'
|
|
)?.value;
|
|
const price = e.target.value;
|
|
|
|
checkSubscriptionPeriodsInterval(
|
|
period,
|
|
period_interval,
|
|
price,
|
|
linkBtn
|
|
);
|
|
}
|
|
} );
|
|
|
|
const $productType = jQuery( '#product-type' );
|
|
const $subscriptionInput = jQuery( '.wc_input_subscription_price' );
|
|
|
|
if (
|
|
$productType.length &&
|
|
$subscriptionInput.length &&
|
|
[ 'subscription', 'variable-subscription' ].includes(
|
|
$productType.val()
|
|
)
|
|
) {
|
|
$subscriptionInput.trigger( 'change' );
|
|
}
|
|
|
|
const variationProductIds = [
|
|
PayPalCommerceGatewayPayPalSubscriptionProducts.product_id,
|
|
];
|
|
const variationsInput =
|
|
document.querySelectorAll( '.variable_post_id' );
|
|
for ( let i = 0; i < variationsInput.length; i++ ) {
|
|
variationProductIds.push( variationsInput[ i ].value );
|
|
}
|
|
|
|
variationProductIds?.forEach( ( productId ) => {
|
|
const linkBtn = document.getElementById(
|
|
`ppcp_enable_subscription_product-${ productId }`
|
|
);
|
|
if ( linkBtn ) {
|
|
if ( linkBtn.checked && linkBtn.value === 'yes' ) {
|
|
disableFields( productId );
|
|
}
|
|
linkBtn.addEventListener( 'click', ( event ) => {
|
|
const unlinkBtnP = document.getElementById(
|
|
`ppcp-enable-subscription-${ productId }`
|
|
);
|
|
const titleP = document.getElementById(
|
|
`ppcp_subscription_plan_name_p-${ productId }`
|
|
);
|
|
if ( event.target.checked === true ) {
|
|
if ( unlinkBtnP ) {
|
|
unlinkBtnP.style.display = 'none';
|
|
}
|
|
if ( titleP ) {
|
|
titleP.style.display = 'block';
|
|
}
|
|
} else {
|
|
if ( unlinkBtnP ) {
|
|
unlinkBtnP.style.display = 'block';
|
|
}
|
|
if ( titleP ) {
|
|
titleP.style.display = 'none';
|
|
}
|
|
}
|
|
} );
|
|
}
|
|
|
|
const unlinkBtn = document.getElementById(
|
|
`ppcp-unlink-sub-plan-${ productId }`
|
|
);
|
|
unlinkBtn?.addEventListener( 'click', ( event ) => {
|
|
event.preventDefault();
|
|
unlinkBtn.disabled = true;
|
|
const spinner = document.getElementById(
|
|
`spinner-unlink-plan-${ productId }`
|
|
);
|
|
spinner.style.display = 'inline-block';
|
|
|
|
fetch(
|
|
PayPalCommerceGatewayPayPalSubscriptionProducts.ajax
|
|
.deactivate_plan.endpoint,
|
|
{
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
credentials: 'same-origin',
|
|
body: JSON.stringify( {
|
|
nonce: PayPalCommerceGatewayPayPalSubscriptionProducts
|
|
.ajax.deactivate_plan.nonce,
|
|
plan_id: linkBtn.dataset.subsPlan,
|
|
product_id: productId,
|
|
} ),
|
|
}
|
|
)
|
|
.then( function ( res ) {
|
|
return res.json();
|
|
} )
|
|
.then( function ( data ) {
|
|
if ( ! data.success ) {
|
|
unlinkBtn.disabled = false;
|
|
spinner.style.display = 'none';
|
|
console.error( data );
|
|
throw Error( data.data.message );
|
|
}
|
|
|
|
const enableSubscription = document.getElementById(
|
|
'ppcp-enable-subscription-' + data.data.product_id
|
|
);
|
|
const product = document.getElementById(
|
|
'pcpp-product-' + data.data.product_id
|
|
);
|
|
const plan = document.getElementById(
|
|
'pcpp-plan-' + data.data.product_id
|
|
);
|
|
enableSubscription.style.display = 'none';
|
|
product.style.display = 'none';
|
|
plan.style.display = 'none';
|
|
|
|
const enable_subscription_product =
|
|
document.getElementById(
|
|
'ppcp_enable_subscription_product-' +
|
|
data.data.product_id
|
|
);
|
|
enable_subscription_product.disabled = true;
|
|
|
|
const planUnlinked = document.getElementById(
|
|
'pcpp-plan-unlinked-' + data.data.product_id
|
|
);
|
|
planUnlinked.style.display = 'block';
|
|
|
|
setTimeout( () => {
|
|
location.reload();
|
|
}, 1000 );
|
|
} );
|
|
} );
|
|
} );
|
|
};
|
|
|
|
setupProducts();
|
|
jQuery( '#woocommerce-product-data' ).on(
|
|
'woocommerce_variations_loaded',
|
|
() => {
|
|
setupProducts();
|
|
}
|
|
);
|
|
} );
|