woocommerce-paypal-payments/modules/ppcp-axo/resources/js/Views/BillingView.js

125 lines
2.7 KiB
JavaScript
Raw Normal View History

2024-07-12 12:58:34 +02:00
import FormFieldGroup from '../Components/FormFieldGroup';
2024-03-08 17:41:21 +00:00
class BillingView {
2024-07-12 12:58:34 +02:00
constructor( selector, elements ) {
this.el = elements;
this.group = new FormFieldGroup( {
baseSelector: '.woocommerce-checkout',
contentSelector: selector,
template: ( data ) => {
const valueOfSelect = ( selectSelector, key ) => {
if ( ! key ) {
return '';
}
const selectElement =
document.querySelector( selectSelector );
if ( ! selectElement ) {
return key;
}
const option = selectElement.querySelector(
`option[value="${ key }"]`
);
return option ? option.textContent : key;
};
if ( data.isEmpty() ) {
return `
2024-03-08 17:41:21 +00:00
<div style="margin-bottom: 20px;">
<div class="axo-checkout-header-section">
<h3>Billing</h3>
2024-07-12 12:58:34 +02:00
<a href="javascript:void(0)" ${ this.el.changeBillingAddressLink.attributes }>Edit</a>
</div>
2024-03-08 17:41:21 +00:00
<div>Please fill in your billing details.</div>
</div>
`;
2024-07-12 12:58:34 +02:00
}
return '';
},
fields: {
email: {
valuePath: 'email',
},
firstName: {
selector: '#billing_first_name_field',
valuePath: null,
},
lastName: {
selector: '#billing_last_name_field',
valuePath: null,
},
street1: {
selector: '#billing_address_1_field',
valuePath: 'billing.address.addressLine1',
},
street2: {
selector: '#billing_address_2_field',
valuePath: null,
},
postCode: {
selector: '#billing_postcode_field',
valuePath: 'billing.address.postalCode',
},
city: {
selector: '#billing_city_field',
valuePath: 'billing.address.adminArea2',
},
stateCode: {
selector: '#billing_state_field',
valuePath: 'billing.address.adminArea1',
},
countryCode: {
selector: '#billing_country_field',
valuePath: 'billing.address.countryCode',
},
company: {
selector: '#billing_company_field',
valuePath: null,
},
phone: {
selector: '#billing_phone_field',
valuePath: 'billing.phoneNumber',
},
},
} );
}
isActive() {
return this.group.active;
}
activate() {
this.group.activate();
}
deactivate() {
this.group.deactivate();
}
refresh() {
this.group.refresh();
}
setData( data ) {
this.group.setData( data );
}
inputValue( name ) {
return this.group.inputValue( name );
}
fullName() {
return `${ this.inputValue( 'firstName' ) } ${ this.inputValue(
'lastName'
) }`.trim();
}
toSubmitData( data ) {
return this.group.toSubmitData( data );
}
2024-03-08 17:41:21 +00:00
}
export default BillingView;