Refactor the code

This commit is contained in:
Daniel Dudzic 2024-06-07 00:35:55 +02:00
parent 0ba33e9bb8
commit 0a06a913e7
No known key found for this signature in database
GPG key ID: 31B40D33E3465483
4 changed files with 108 additions and 230 deletions

View file

@ -12,8 +12,11 @@
} }
} }
.email-submit-button { #ppcp-axo-billing-email-submit-button {
margin-top: 0;
position: relative; position: relative;
transition: opacity 0.3s ease;
.loader:before { .loader:before {
display: inline; display: inline;
height: 12px; height: 12px;
@ -103,30 +106,35 @@
} }
} }
.ppcp-axo-billing-email-submit-button-hidden {
opacity: 0;
}
.ppcp-axo-billing-email-submit-button-loaded:not([disabled]) {
opacity: 1;
}
#billing_email_field .woocommerce-input-wrapper { #billing_email_field .woocommerce-input-wrapper {
display: flex; display: flex;
align-items: center; align-items: center;
input {
flex: 1;
margin-right: 10px;
}
} }
#billing_email_field .woocommerce-input-wrapper input { @media screen and (max-width: 719px) {
flex: 1; #ppcp-axo-billing-email-submit-button {
margin-right: 10px; width: 100%;
margin-top: 0.5rem;
}
#billing_email_field .woocommerce-input-wrapper {
display: block;
input {
margin-right: 0;
}
}
} }
.email-submit-button {
padding: 5px 20px;
background-color: #007cba;
color: white;
border: none;
border-radius: 3px;
cursor: pointer;
flex-shrink: 0;
opacity: 0;
transition: opacity 0.3s ease; /* Add transition for opacity */
}
#billing_email_field .woocommerce-input-wrapper.show-button .email-submit-button {
opacity: 1; /* Show the button */
}

View file

@ -1,14 +1,15 @@
import Fastlane from "./Connection/Fastlane"; import Fastlane from "./Connection/Fastlane";
import { log } from "./Helper/Debug"; import {log} from "./Helper/Debug";
import DomElementCollection from "./Components/DomElementCollection"; import DomElementCollection from "./Components/DomElementCollection";
import ShippingView from "./Views/ShippingView"; import ShippingView from "./Views/ShippingView";
import BillingView from "./Views/BillingView"; import BillingView from "./Views/BillingView";
import CardView from "./Views/CardView"; import CardView from "./Views/CardView";
import PayPalInsights from "./Insights/PayPalInsights"; import PayPalInsights from "./Insights/PayPalInsights";
import { disable, enable } from "../../../ppcp-button/resources/js/modules/Helper/ButtonDisabler"; import {disable,enable} from "../../../ppcp-button/resources/js/modules/Helper/ButtonDisabler";
import { getCurrentPaymentMethod } from "../../../ppcp-button/resources/js/modules/Helper/CheckoutMethodState"; import {getCurrentPaymentMethod} from "../../../ppcp-button/resources/js/modules/Helper/CheckoutMethodState";
class AxoManager { class AxoManager {
constructor(axoConfig, ppcpConfig) { constructor(axoConfig, ppcpConfig) {
this.axoConfig = axoConfig; this.axoConfig = axoConfig;
this.ppcpConfig = ppcpConfig; this.ppcpConfig = ppcpConfig;
@ -50,7 +51,7 @@ class AxoManager {
this.registerEventHandlers(); this.registerEventHandlers();
this.shippingView = new ShippingView(this.el.shippingAddressContainer.selector, this.el, this.states); this.shippingView = new ShippingView(this.el.shippingAddressContainer.selector, this.el, this.states );
this.billingView = new BillingView(this.el.billingAddressContainer.selector, this.el); this.billingView = new BillingView(this.el.billingAddressContainer.selector, this.el);
this.cardView = new CardView(this.el.paymentContainer.selector + '-details', this.el, this); this.cardView = new CardView(this.el.paymentContainer.selector + '-details', this.el, this);
@ -63,9 +64,9 @@ class AxoManager {
} }
if ( if (
this.axoConfig?.insights?.enabled && this.axoConfig?.insights?.enabled
this.axoConfig?.insights?.client_id && && this.axoConfig?.insights?.client_id
this.axoConfig?.insights?.session_id && this.axoConfig?.insights?.session_id
) { ) {
PayPalInsights.config(this.axoConfig?.insights?.client_id, { debug: true }); PayPalInsights.config(this.axoConfig?.insights?.client_id, { debug: true });
PayPalInsights.setSessionId(this.axoConfig?.insights?.session_id); PayPalInsights.setSessionId(this.axoConfig?.insights?.session_id);
@ -87,6 +88,7 @@ class AxoManager {
} }
registerEventHandlers() { registerEventHandlers() {
this.$(document).on('change', 'input[name=payment_method]', (ev) => { this.$(document).on('change', 'input[name=payment_method]', (ev) => {
const map = { const map = {
'ppcp-axo-gateway': 'card', 'ppcp-axo-gateway': 'card',
@ -99,6 +101,7 @@ class AxoManager {
}); });
}); });
// Listen to Gateway Radio button changes. // Listen to Gateway Radio button changes.
this.el.gatewayRadioButton.on('change', (ev) => { this.el.gatewayRadioButton.on('change', (ev) => {
if (ev.target.checked) { if (ev.target.checked) {
@ -160,7 +163,7 @@ class AxoManager {
// Prevents sending checkout form when pressing Enter key on input field // Prevents sending checkout form when pressing Enter key on input field
// and triggers customer lookup // and triggers customer lookup
this.$('form.woocommerce-checkout input').on('keydown', async (ev) => { this.$('form.woocommerce-checkout input').on('keydown', async (ev) => {
if (ev.key === 'Enter' && getCurrentPaymentMethod() === 'ppcp-axo-gateway') { if(ev.key === 'Enter' && getCurrentPaymentMethod() === 'ppcp-axo-gateway' ) {
ev.preventDefault(); ev.preventDefault();
log(`Enter key attempt - emailInput: ${this.emailInput.value}`); log(`Enter key attempt - emailInput: ${this.emailInput.value}`);
log(`this.lastEmailCheckedIdentity: ${this.lastEmailCheckedIdentity}`); log(`this.lastEmailCheckedIdentity: ${this.lastEmailCheckedIdentity}`);
@ -170,6 +173,12 @@ class AxoManager {
} }
}); });
this.$('form.woocommerce-checkout input').on('click', async (ev) => {
if (document.querySelector(this.el.billingEmailSubmitButton.selector).hasAttribute('disabled')) {
document.querySelector(this.el.billingEmailSubmitButton.selector).removeAttribute('disabled');
}
});
// Clear last email checked identity when email field is focused. // Clear last email checked identity when email field is focused.
this.$('#billing_email_field input').on('focus', (ev) => { this.$('#billing_email_field input').on('focus', (ev) => {
log(`Clear the last email checked: ${this.lastEmailCheckedIdentity}`); log(`Clear the last email checked: ${this.lastEmailCheckedIdentity}`);
@ -179,7 +188,7 @@ class AxoManager {
// Listening to status update event // Listening to status update event
document.addEventListener('axo_status_updated', (ev) => { document.addEventListener('axo_status_updated', (ev) => {
const termsField = document.querySelector("[name='terms-field']"); const termsField = document.querySelector("[name='terms-field']");
if (termsField) { if(termsField) {
const status = ev.detail; const status = ev.detail;
const shouldHide = status.active && status.validEmail === false && status.hasProfile === false; const shouldHide = status.active && status.validEmail === false && status.hasProfile === false;
@ -246,9 +255,6 @@ class AxoManager {
this.$(this.el.fieldBillingEmail.selector).append( this.$(this.el.fieldBillingEmail.selector).append(
this.$(this.el.watermarkContainer.selector) this.$(this.el.watermarkContainer.selector)
); );
// Add the submit button to the email field container.
this.renderEmailSubmitNew();
} else { } else {
this.el.emailWidgetContainer.hide(); this.el.emailWidgetContainer.hide();
if (!scenario.defaultEmailField) { if (!scenario.defaultEmailField) {
@ -257,6 +263,7 @@ class AxoManager {
} }
if (scenario.axoProfileViews) { if (scenario.axoProfileViews) {
this.shippingView.activate(); this.shippingView.activate();
this.cardView.activate(); this.cardView.activate();
@ -270,6 +277,7 @@ class AxoManager {
); );
this.el.watermarkContainer.show(); this.el.watermarkContainer.show();
} else { } else {
this.shippingView.deactivate(); this.shippingView.deactivate();
this.billingView.deactivate(); this.billingView.deactivate();
@ -279,6 +287,7 @@ class AxoManager {
if (scenario.axoPaymentContainer) { if (scenario.axoPaymentContainer) {
this.el.paymentContainer.show(); this.el.paymentContainer.show();
this.el.gatewayDescription.hide(); this.el.gatewayDescription.hide();
document.querySelector(this.el.billingEmailSubmitButton.selector).setAttribute('disabled', 'disabled');
} else { } else {
this.el.paymentContainer.hide(); this.el.paymentContainer.hide();
} }
@ -375,7 +384,7 @@ class AxoManager {
log(`Status updated: ${JSON.stringify(this.status)}`); log(`Status updated: ${JSON.stringify(this.status)}`);
document.dispatchEvent(new CustomEvent("axo_status_updated", { detail: this.status })); document.dispatchEvent(new CustomEvent("axo_status_updated", {detail: this.status}));
this.rerender(); this.rerender();
} }
@ -445,6 +454,7 @@ class AxoManager {
} }
if (this.useEmailWidget()) { if (this.useEmailWidget()) {
// Display email widget. // Display email widget.
const ec = this.el.emailWidgetContainer; const ec = this.el.emailWidgetContainer;
if (!document.querySelector(ec.selector)) { if (!document.querySelector(ec.selector)) {
@ -456,6 +466,7 @@ class AxoManager {
} }
} else { } else {
// Move email to the AXO container. // Move email to the AXO container.
let emailRow = document.querySelector(this.el.fieldBillingEmail.selector); let emailRow = document.querySelector(this.el.fieldBillingEmail.selector);
wrapperElement.prepend(emailRow); wrapperElement.prepend(emailRow);
@ -469,9 +480,8 @@ class AxoManager {
this.initialized = true; this.initialized = true;
await this.connect(); await this.connect();
await this.renderWatermark(true, () => { await this.renderWatermark();
this.renderEmailSubmit(); this.renderEmailSubmitButton();
});
this.watchEmail(); this.watchEmail();
} }
@ -492,176 +502,40 @@ class AxoManager {
this.el.gatewayRadioButton.trigger('change'); this.el.gatewayRadioButton.trigger('change');
} }
async renderWatermark(includeAdditionalInfo = true, callback) { async renderWatermark(includeAdditionalInfo = true) {
(await this.fastlane.FastlaneWatermarkComponent({ (await this.fastlane.FastlaneWatermarkComponent({
includeAdditionalInfo includeAdditionalInfo
})).render(this.el.watermarkContainer.selector); })).render(this.el.watermarkContainer.selector);
this.toggleWatermarkLoading(this.el.watermarkContainer, 'ppcp-axo-watermark-loading', 'loader'); this.toggleWatermarkLoading(this.el.watermarkContainer, 'ppcp-axo-watermark-loading', 'loader');
// Call the callback if provided
if (callback) {
callback();
}
} }
async renderEmailSubmitNew() { renderEmailSubmitButton() {
const billingEmailSubmitButton = this.el.billingEmailSubmitButton; const billingEmailSubmitButton = this.el.billingEmailSubmitButton;
const billingEmailSubmitButtonSpinner = this.el.billingEmailSubmitButtonSpinner;
if (!document.querySelector(billingEmailSubmitButton.selector)) { if (!document.querySelector(billingEmailSubmitButton.selector)) {
this.emailInput.insertAdjacentHTML('afterend', `
<button type="button" id="${billingEmailSubmitButton.id}" class="${billingEmailSubmitButton.className}">
${this.axoConfig.billing_email_button_text}
<span id="${billingEmailSubmitButtonSpinner.id}"></span>
</button>
`);
} document.querySelector(this.el.billingEmailSubmitButton.selector).offsetHeight;
document.querySelector(this.el.billingEmailSubmitButton.selector).classList.remove('ppcp-axo-billing-email-submit-button-hidden');
const submitButton = this.el.billingEmailSubmitButton.selector; document.querySelector(this.el.billingEmailSubmitButton.selector).offsetHeight;
// submitButton.innerText = this.axoConfig.billing_email_button_text; document.querySelector(this.el.billingEmailSubmitButton.selector).classList.add('ppcp-axo-billing-email-submit-button-loaded'); }
const submitButtonSpinner = this.el.billingEmailSubmitButtonSpinner.selector;
console.log(submitButton);
} }
async renderEmailSubmit() {
// Create the submit button element
const submitButton = document.createElement('button');
submitButton.type = 'button';
submitButton.innerText = this.axoConfig.billing_email_button_text;
submitButton.className = 'email-submit-button'; // Add a class for styling if needed
// Create the spinner element
const spinner = document.createElement('span');
spinner.className = 'loader ppcp-axo-overlay'; // Use the native loader class
spinner.style.display = 'none'; // Initially hidden
// Append the spinner to the button
submitButton.appendChild(spinner);
// Add an event listener to handle the button click
submitButton.addEventListener('click', async () => {
const emailInput = document.querySelector(this.el.fieldBillingEmail.selector + ' input');
if (emailInput && emailInput.checkValidity()) {
if (this.lastEmailCheckedIdentity !== emailInput.value) {
log(`Submit button clicked - emailInput: ${emailInput.value}`);
// Show the spinner, add the class to adjust padding and disable the button
spinner.style.display = 'inline-block';
submitButton.disabled = true;
try {
await this.onChangeEmail();
} finally {
// Hide the spinner and re-enable the button after the lookup is complete
spinner.style.display = 'none';
submitButton.disabled = false;
}
}
} else {
emailInput.reportValidity(); // Trigger the HTML5 validation message
log('Invalid or empty email input.');
}
});
// Append the button inside the wrapper of the billing email input field
const emailFieldContainer = document.querySelector(this.el.fieldBillingEmail.selector);
if (emailFieldContainer) {
const inputWrapper = emailFieldContainer.querySelector('.woocommerce-input-wrapper');
if (inputWrapper) {
// Ensure the email input has the required attribute
const emailInput = inputWrapper.querySelector('input');
emailInput.setAttribute('required', 'required');
emailInput.style.flex = '1'; // Make the input take the remaining space
emailInput.style.marginRight = '10px'; // Ensure the spacing is consistent
// Remove any existing loader if present
const existingLoader = inputWrapper.querySelector('.loader');
if (existingLoader) {
existingLoader.remove();
}
// Append the submit button to the input wrapper
inputWrapper.appendChild(submitButton);
// Force a reflow to apply the transition
submitButton.offsetHeight;
// Add the class to trigger the animation
inputWrapper.classList.add('show-button');
}
}
}
async onChangeEmail() {
this.clearData();
if (!this.status.active) {
log('Email checking skipped, AXO not active.');
return;
}
if (!this.emailInput) {
log('Email field not initialized.');
return;
}
log(`Email changed: ${this.emailInput ? this.emailInput.value : '<empty>'}`);
this.$(this.el.paymentContainer.selector + '-detail').html('');
this.$(this.el.paymentContainer.selector + '-form').html('');
this.setStatus('validEmail', false);
this.setStatus('hasProfile', false);
this.hideGatewaySelection = false;
this.lastEmailCheckedIdentity = this.emailInput.value;
if (!this.emailInput.value || !this.emailInput.checkValidity()) {
log('The email address is not valid.');
return;
}
this.data.email = this.emailInput.value;
this.billingView.setData(this.data);
if (!this.fastlane.identity) {
log('Not initialized.');
return;
}
PayPalInsights.trackSubmitCheckoutEmail({
page_type: 'checkout'
});
this.disableGatewaySelection();
const submitButton = document.querySelector('.email-submit-button');
const spinner = submitButton.querySelector('.loader');
if (submitButton && spinner) {
// Show the spinner and disable the button
spinner.style.display = 'inline-block';
submitButton.classList.add('show-spinner');
submitButton.disabled = true;
}
setTimeout(async () => {
console.log("Delayed for 1 milisecond.");
await this.lookupCustomerByEmail();
// Hide the spinner and re-enable the button after the lookup is complete
if (submitButton && spinner) {
spinner.style.display = 'none';
submitButton.classList.remove('show-spinner');
submitButton.disabled = false;
}
this.enableGatewaySelection();
}, 1);
}
watchEmail() { watchEmail() {
if (this.useEmailWidget()) { if (this.useEmailWidget()) {
// TODO // TODO
} else { } else {
this.emailInput.addEventListener('change', async () => { this.emailInput.addEventListener('change', async ()=> {
log(`Change event attempt - emailInput: ${this.emailInput.value}`); log(`Change event attempt - emailInput: ${this.emailInput.value}`);
log(`this.lastEmailCheckedIdentity: ${this.lastEmailCheckedIdentity}`); log(`this.lastEmailCheckedIdentity: ${this.lastEmailCheckedIdentity}`);
if (this.emailInput && this.lastEmailCheckedIdentity !== this.emailInput.value) { if (this.emailInput && this.lastEmailCheckedIdentity !== this.emailInput.value) {
@ -677,7 +551,7 @@ class AxoManager {
} }
} }
async onChangeEmail() { async onChangeEmail () {
this.clearData(); this.clearData();
if (!this.status.active) { if (!this.status.active) {
@ -719,28 +593,12 @@ class AxoManager {
page_type: 'checkout' page_type: 'checkout'
}); });
this.disableGatewaySelection(); this.disableGatewaySelection();
this.spinnerToggleLoaderAndOverlay(this.el.billingEmailSubmitButtonSpinner, 'loader', 'ppcp-axo-overlay');
const submitButton = document.querySelector('.email-submit-button'); await this.lookupCustomerByEmail();
const spinner = submitButton.querySelector('.loader'); this.spinnerToggleLoaderAndOverlay(this.el.billingEmailSubmitButtonSpinner, 'loader', 'ppcp-axo-overlay');
if (submitButton && spinner) { this.enableGatewaySelection();
// Show the spinner and disable the button
spinner.style.display = 'inline-block';
submitButton.disabled = true;
}
setTimeout(async () => {
console.log("Delayed for 1 milisecond.");
await this.lookupCustomerByEmail();
// Hide the spinner and re-enable the button after the lookup is complete
if (submitButton && spinner) {
spinner.style.display = 'none';
submitButton.disabled = false;
}
this.enableGatewaySelection();
}, 1);
} }
async lookupCustomerByEmail() { async lookupCustomerByEmail() {
@ -779,7 +637,7 @@ class AxoManager {
address: cardBillingAddress, address: cardBillingAddress,
}; };
const phoneNumber = authResponse.profileData?.shippingAddress?.phoneNumber?.nationalNumber ?? ''; const phoneNumber = authResponse.profileData?.shippingAddress?.phoneNumber?.nationalNumber ?? '';
if (phoneNumber) { if(phoneNumber) {
billingData.phoneNumber = phoneNumber billingData.phoneNumber = phoneNumber
} }
@ -875,7 +733,7 @@ class AxoManager {
this.ensureBillingPhoneNumber(data); this.ensureBillingPhoneNumber(data);
log(`Ryan flow - submitted nonce: ${this.data.card.id}`) log(`Ryan flow - submitted nonce: ${this.data.card.id}` )
this.submit(this.data.card.id, data); this.submit(this.data.card.id, data);
@ -886,7 +744,7 @@ class AxoManager {
this.cardComponent.getPaymentToken( this.cardComponent.getPaymentToken(
this.tokenizeData() this.tokenizeData()
).then((response) => { ).then((response) => {
log(`Gary flow - submitted nonce: ${response.id}`) log(`Gary flow - submitted nonce: ${response.id}` )
this.submit(response.id); this.submit(response.id);
}); });
} catch (e) { } catch (e) {
@ -942,6 +800,7 @@ class AxoManager {
}); });
if (data) { if (data) {
// Ryan flow. // Ryan flow.
const form = document.querySelector('form.woocommerce-checkout'); const form = document.querySelector('form.woocommerce-checkout');
const formData = new FormData(form); const formData = new FormData(form);
@ -1010,13 +869,13 @@ class AxoManager {
} }
deleteKeysWithEmptyString = (obj) => { deleteKeysWithEmptyString = (obj) => {
for (let key of Object.keys(obj)) { for(let key of Object.keys(obj)){
if (obj[key] === '') { if (obj[key] === ''){
delete obj[key]; delete obj[key];
} }
else if (typeof obj[key] === 'object') { else if (typeof obj[key] === 'object'){
obj[key] = this.deleteKeysWithEmptyString(obj[key]); obj[key] = this.deleteKeysWithEmptyString(obj[key]);
if (Object.keys(obj[key]).length === 0) delete obj[key]; if (Object.keys(obj[key]).length === 0 ) delete obj[key];
} }
} }
@ -1049,6 +908,14 @@ class AxoManager {
} }
} }
spinnerToggleLoaderAndOverlay(element, loaderClass, overlayClass) {
const spinner = document.querySelector(`${element.selector}`);
if (spinner) {
spinner.classList.toggle(loaderClass);
spinner.classList.toggle(overlayClass);
}
}
toggleWatermarkLoading(container, loadingClass, loaderClass) { toggleWatermarkLoading(container, loadingClass, loaderClass) {
const watermarkLoading = document.querySelector(`${container.selector}.${loadingClass}`); const watermarkLoading = document.querySelector(`${container.selector}.${loadingClass}`);
const watermarkLoader = document.querySelector(`${container.selector}.${loaderClass}`); const watermarkLoader = document.querySelector(`${container.selector}.${loaderClass}`);

View file

@ -61,11 +61,14 @@ class DomElementCollection {
}); });
this.billingEmailSubmitButton = new DomElement({ this.billingEmailSubmitButton = new DomElement({
id: 'ppcp-axo-billing-email-submit-button',
selector: '#ppcp-axo-billing-email-submit-button', selector: '#ppcp-axo-billing-email-submit-button',
className: 'ppcp-axo-billing-email-submit-button-hidden button alt wp-element-button wc-block-components-button'
}); });
this.billingEmailSubmitButtonSpinner = new DomElement({ this.billingEmailSubmitButtonSpinner = new DomElement({
selector: '#ppcp-axo-billing-email-submit-spinner', id: 'ppcp-axo-billing-email-submit-button-spinner',
selector: '#ppcp-axo-billing-email-submit-button-spinner',
className: 'loader ppcp-axo-overlay' className: 'loader ppcp-axo-overlay'
}); });

View file

@ -162,13 +162,13 @@ class AxoManager {
*/ */
private function script_data() { private function script_data() {
return array( return array(
'environment' => array( 'environment' => array(
'is_sandbox' => $this->environment->current_environment() === 'sandbox', 'is_sandbox' => $this->environment->current_environment() === 'sandbox',
), ),
'widgets' => array( 'widgets' => array(
'email' => 'render', 'email' => 'render',
), ),
'insights' => array( 'insights' => array(
'enabled' => true, 'enabled' => true,
'client_id' => ( $this->settings->has( 'client_id' ) ? $this->settings->get( 'client_id' ) : null ), 'client_id' => ( $this->settings->has( 'client_id' ) ? $this->settings->get( 'client_id' ) : null ),
'session_id' => 'session_id' =>
@ -182,7 +182,7 @@ class AxoManager {
'value' => WC()->cart->get_total( 'numeric' ), 'value' => WC()->cart->get_total( 'numeric' ),
), ),
), ),
'style_options' => array( 'style_options' => array(
'root' => array( 'root' => array(
'backgroundColor' => $this->settings->has( 'axo_style_root_bg_color' ) ? $this->settings->get( 'axo_style_root_bg_color' ) : '', 'backgroundColor' => $this->settings->has( 'axo_style_root_bg_color' ) ? $this->settings->get( 'axo_style_root_bg_color' ) : '',
'errorColor' => $this->settings->has( 'axo_style_root_error_color' ) ? $this->settings->get( 'axo_style_root_error_color' ) : '', 'errorColor' => $this->settings->has( 'axo_style_root_error_color' ) ? $this->settings->get( 'axo_style_root_error_color' ) : '',
@ -201,16 +201,16 @@ class AxoManager {
'focusBorderColor' => $this->settings->has( 'axo_style_input_focus_border_color' ) ? $this->settings->get( 'axo_style_input_focus_border_color' ) : '', 'focusBorderColor' => $this->settings->has( 'axo_style_input_focus_border_color' ) ? $this->settings->get( 'axo_style_input_focus_border_color' ) : '',
), ),
), ),
'name_on_card' => $this->settings->has( 'axo_name_on_card' ) ? $this->settings->get( 'axo_name_on_card' ) : '', 'name_on_card' => $this->settings->has( 'axo_name_on_card' ) ? $this->settings->get( 'axo_name_on_card' ) : '',
'woocommerce' => array( 'woocommerce' => array(
'states' => array( 'states' => array(
'US' => WC()->countries->get_states( 'US' ), 'US' => WC()->countries->get_states( 'US' ),
'CA' => WC()->countries->get_states( 'CA' ), 'CA' => WC()->countries->get_states( 'CA' ),
), ),
), ),
'icons_directory' => esc_url( $this->wcgateway_module_url ) . 'assets/images/axo/', 'icons_directory' => esc_url( $this->wcgateway_module_url ) . 'assets/images/axo/',
'module_url' => untrailingslashit( $this->module_url ), 'module_url' => untrailingslashit( $this->module_url ),
'ajax' => array( 'ajax' => array(
'frontend_logger' => array( 'frontend_logger' => array(
'endpoint' => \WC_AJAX::get_endpoint( FrontendLoggerEndpoint::ENDPOINT ), 'endpoint' => \WC_AJAX::get_endpoint( FrontendLoggerEndpoint::ENDPOINT ),
'nonce' => wp_create_nonce( FrontendLoggerEndpoint::nonce() ), 'nonce' => wp_create_nonce( FrontendLoggerEndpoint::nonce() ),