Get payee details without shipping callback

This commit is contained in:
Philipp Stracker 2024-08-16 15:41:05 +02:00
parent 01d20b85ee
commit 00e2959700
No known key found for this signature in database
2 changed files with 257 additions and 141 deletions

View file

@ -1,59 +1,135 @@
/**
* Name details.
*
* @typedef {Object} NameDetails
* @property {?string} given_name - First name, e.g. "John".
* @property {?string} surname - Last name, e.g. "Doe".
*/
/**
* Postal address details.
*
* @typedef {Object} AddressDetails
* @property {?string} country_code - Country code (2-letter).
* @property {?string} address_line_1 - Address details, line 1 (street, house number).
* @property {?string} address_line_2 - Address details, line 2.
* @property {?string} admin_area_1 - State or region.
* @property {?string} admin_area_2 - State or region.
* @property {?string} postal_code - Zip code.
*/
/**
* Phone details.
*
* @typedef {Object} PhoneDetails
* @property {?string} phone_type - Type, usually 'HOME'
* @property {?{national_number: string}} phone_number - Phone number details.
*/
/**
* Payer details.
*
* @typedef {Object} PayerDetails
* @property {?string} email_address - Email address for billing communication.
* @property {?PhoneDetails} phone - Phone number for billing communication.
* @property {?NameDetails} name - Payer's name.
* @property {?AddressDetails} address - Postal billing address.
*/
// Map checkout fields to PayerData object properties.
const FIELD_MAP = {
'#billing_email': [ 'email_address' ],
'#billing_last_name': [ 'name', 'surname' ],
'#billing_first_name': [ 'name', 'given_name' ],
'#billing_country': [ 'address', 'country_code' ],
'#billing_address_1': [ 'address', 'address_line_1' ],
'#billing_address_2': [ 'address', 'address_line_2' ],
'#billing_state': [ 'address', 'admin_area_1' ],
'#billing_city': [ 'address', 'admin_area_2' ],
'#billing_postcode': [ 'address', 'postal_code' ],
'#billing_phone': [ 'phone' ],
};
/**
* Returns billing details from the checkout form or global JS object.
*
* @return {?PayerDetails} Full billing details, or null on failure.
*/
export const payerData = () => {
const payer = PayPalCommerceGateway.payer;
const payer = window.PayPalCommerceGateway?.payer;
if ( ! payer ) {
return null;
}
const phone =
document.querySelector( '#billing_phone' ) ||
typeof payer.phone !== 'undefined'
? {
phone_type: 'HOME',
phone_number: {
national_number: document.querySelector(
'#billing_phone'
)
? document.querySelector( '#billing_phone' ).value
: payer.phone.phone_number.national_number,
},
}
: null;
const payerData = {
email_address: document.querySelector( '#billing_email' )
? document.querySelector( '#billing_email' ).value
: payer.email_address,
const getElementValue = ( selector ) =>
document.querySelector( selector )?.value;
// Initialize data with existing payer values.
const data = {
email_address: payer.email_address,
phone: payer.phone,
name: {
surname: document.querySelector( '#billing_last_name' )
? document.querySelector( '#billing_last_name' ).value
: payer.name.surname,
given_name: document.querySelector( '#billing_first_name' )
? document.querySelector( '#billing_first_name' ).value
: payer.name.given_name,
surname: payer.name?.surname,
given_name: payer.name?.given_name,
},
address: {
country_code: document.querySelector( '#billing_country' )
? document.querySelector( '#billing_country' ).value
: payer.address.country_code,
address_line_1: document.querySelector( '#billing_address_1' )
? document.querySelector( '#billing_address_1' ).value
: payer.address.address_line_1,
address_line_2: document.querySelector( '#billing_address_2' )
? document.querySelector( '#billing_address_2' ).value
: payer.address.address_line_2,
admin_area_1: document.querySelector( '#billing_state' )
? document.querySelector( '#billing_state' ).value
: payer.address.admin_area_1,
admin_area_2: document.querySelector( '#billing_city' )
? document.querySelector( '#billing_city' ).value
: payer.address.admin_area_2,
postal_code: document.querySelector( '#billing_postcode' )
? document.querySelector( '#billing_postcode' ).value
: payer.address.postal_code,
country_code: payer.address?.country_code,
address_line_1: payer.address?.address_line_1,
address_line_2: payer.address?.address_line_2,
admin_area_1: payer.address?.admin_area_1,
admin_area_2: payer.address?.admin_area_2,
postal_code: payer.address?.postal_code,
},
};
if ( phone ) {
payerData.phone = phone;
// Update data with DOM values where they exist.
Object.entries( FIELD_MAP ).forEach( ( [ selector, path ] ) => {
const value = getElementValue( selector );
if ( value ) {
let current = data;
path.slice( 0, -1 ).forEach( ( key ) => {
current = current[ key ] = current[ key ] || {};
} );
current[ path[ path.length - 1 ] ] = value;
}
} );
// Handle phone separately due to its nested structure.
const phoneNumber = data.phone;
if ( phoneNumber && typeof phoneNumber === 'string' ) {
data.phone = {
phone_type: 'HOME',
phone_number: { national_number: phoneNumber },
};
}
return payerData;
return data;
};
/**
* Updates the DOM with specific payer details.
*
* @param {PayerDetails} newData - New payer details.
*/
export const setPayerData = ( newData ) => {
const setValue = ( path, field, value ) => {
if ( null === value || undefined === value || ! field ) {
return;
}
if ( path[ 0 ] === 'phone' && typeof value === 'object' ) {
value = value.phone_number?.national_number;
}
if ( field.value !== value ) {
field.value = value;
}
};
Object.entries( FIELD_MAP ).forEach( ( [ selector, path ] ) => {
const value = path.reduce( ( obj, key ) => obj?.[ key ], newData );
const element = document.querySelector( selector );
setValue( path, element, value );
} );
};