mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-01 07:02:48 +08:00
126 lines
4.2 KiB
JavaScript
126 lines
4.2 KiB
JavaScript
import FormFieldGroup from "../Components/FormFieldGroup";
|
|
|
|
class BillingView {
|
|
|
|
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 `
|
|
<div style="margin-bottom: 20px;">
|
|
<h3>Billing <a href="javascript:void(0)" ${this.el.changeBillingAddressLink.attributes} style="margin-left: 20px;">Edit</a></h3>
|
|
<div>Please fill in your billing details.</div>
|
|
</div>
|
|
`;
|
|
}
|
|
return `
|
|
<div style="margin-bottom: 20px;">
|
|
<h3>Billing <a href="javascript:void(0)" ${this.el.changeBillingAddressLink.attributes} style="margin-left: 20px;">Edit</a></h3>
|
|
<div>${data.value('email')}</div>
|
|
<div>${data.value('company')}</div>
|
|
<div>${data.value('firstName')} ${data.value('lastName')}</div>
|
|
<div>${data.value('street1')}</div>
|
|
<div>${data.value('street2')}</div>
|
|
<div>${data.value('postCode')} ${data.value('city')}</div>
|
|
<div>${valueOfSelect('#billing_state', data.value('stateCode'))}</div>
|
|
<div>${valueOfSelect('#billing_country', data.value('countryCode'))}</div>
|
|
</div>
|
|
`;
|
|
},
|
|
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,
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
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);
|
|
}
|
|
|
|
}
|
|
|
|
export default BillingView;
|