2021-04-23 09:42:36 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
|
|
|
import prepareAddressFields from '@woocommerce/base-components/cart-checkout/address-form/prepare-address-fields';
|
2021-05-13 10:20:37 +00:00
|
|
|
import { isEmail } from '@wordpress/url';
|
|
|
|
import type {
|
|
|
|
CartResponseBillingAddress,
|
|
|
|
CartResponseShippingAddress,
|
|
|
|
} from '@woocommerce/types';
|
2022-02-22 17:45:01 +00:00
|
|
|
import { defaultAddressFields, EnteredAddress } from '@woocommerce/settings';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Compare two addresses and see if they are the same.
|
|
|
|
*/
|
|
|
|
export const isSameAddress = (
|
|
|
|
address1: EnteredAddress,
|
|
|
|
address2: EnteredAddress
|
|
|
|
): boolean => {
|
|
|
|
return Object.keys( defaultAddressFields ).every(
|
|
|
|
( field: string ) =>
|
|
|
|
address1[ field as keyof EnteredAddress ] ===
|
|
|
|
address2[ field as keyof EnteredAddress ]
|
|
|
|
);
|
|
|
|
};
|
2021-04-23 09:42:36 +00:00
|
|
|
|
2020-03-10 10:55:19 +00:00
|
|
|
/**
|
|
|
|
* pluckAddress takes a full address object and returns relevant fields for calculating
|
|
|
|
* shipping, so we can track when one of them change to update rates.
|
|
|
|
*
|
|
|
|
* @param {Object} address An object containing all address information
|
2020-09-20 23:54:08 +00:00
|
|
|
* @param {string} address.country The country.
|
|
|
|
* @param {string} address.state The state.
|
|
|
|
* @param {string} address.city The city.
|
|
|
|
* @param {string} address.postcode The postal code.
|
2020-03-10 10:55:19 +00:00
|
|
|
*
|
|
|
|
* @return {Object} pluckedAddress An object containing shipping address that are needed to fetch an address.
|
|
|
|
*/
|
2020-11-20 15:13:35 +00:00
|
|
|
export const pluckAddress = ( {
|
|
|
|
country = '',
|
|
|
|
state = '',
|
|
|
|
city = '',
|
|
|
|
postcode = '',
|
2021-05-13 10:20:37 +00:00
|
|
|
}: CartResponseBillingAddress | CartResponseShippingAddress ): {
|
|
|
|
country: string;
|
|
|
|
state: string;
|
|
|
|
city: string;
|
|
|
|
postcode: string;
|
|
|
|
} => ( {
|
2020-12-17 14:52:44 +00:00
|
|
|
country: country.trim(),
|
|
|
|
state: state.trim(),
|
|
|
|
city: city.trim(),
|
2020-11-20 15:13:35 +00:00
|
|
|
postcode: postcode ? postcode.replace( ' ', '' ).toUpperCase() : '',
|
2020-03-10 10:55:19 +00:00
|
|
|
} );
|
2021-04-23 09:42:36 +00:00
|
|
|
|
2021-05-13 10:20:37 +00:00
|
|
|
/**
|
|
|
|
* pluckEmail takes a full address object and returns only the email address, if set and valid. Otherwise returns an empty string.
|
|
|
|
*
|
|
|
|
* @param {Object} address An object containing all address information
|
|
|
|
* @param {string} address.email The email address.
|
|
|
|
* @return {string} The email address.
|
|
|
|
*/
|
|
|
|
export const pluckEmail = ( {
|
|
|
|
email = '',
|
|
|
|
}: CartResponseBillingAddress ): string =>
|
|
|
|
isEmail( email ) ? email.trim() : '';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Type-guard.
|
|
|
|
*/
|
|
|
|
const isValidAddressKey = (
|
|
|
|
key: string,
|
|
|
|
address: CartResponseBillingAddress | CartResponseShippingAddress
|
|
|
|
): key is keyof typeof address => {
|
|
|
|
return key in address;
|
|
|
|
};
|
|
|
|
|
2021-04-23 09:42:36 +00:00
|
|
|
/**
|
|
|
|
* Sets fields to an empty string in an address if they are hidden by the settings in countryLocale.
|
|
|
|
*
|
|
|
|
* @param {Object} address The address to empty fields from.
|
|
|
|
* @return {Object} The address with hidden fields values removed.
|
|
|
|
*/
|
2021-05-13 10:20:37 +00:00
|
|
|
export const emptyHiddenAddressFields = <
|
|
|
|
T extends CartResponseBillingAddress | CartResponseShippingAddress
|
|
|
|
>(
|
|
|
|
address: T
|
|
|
|
): T => {
|
2021-04-23 09:42:36 +00:00
|
|
|
const fields = Object.keys( defaultAddressFields );
|
|
|
|
const addressFields = prepareAddressFields( fields, {}, address.country );
|
2021-05-13 10:20:37 +00:00
|
|
|
const newAddress = Object.assign( {}, address ) as T;
|
|
|
|
|
|
|
|
addressFields.forEach( ( { key = '', hidden = false } ) => {
|
|
|
|
if ( hidden && isValidAddressKey( key, address ) ) {
|
|
|
|
newAddress[ key ] = '';
|
2021-04-23 09:42:36 +00:00
|
|
|
}
|
|
|
|
} );
|
2021-05-13 10:20:37 +00:00
|
|
|
|
2021-04-23 09:42:36 +00:00
|
|
|
return newAddress;
|
|
|
|
};
|