JezK
Edit File: sc-customer-edit.cjs.entry.js
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); const index = require('./index-be4abba1.js'); require('./fetch-5e8dc1d5.js'); const addQueryArgs = require('./add-query-args-49dcb630.js'); const index$1 = require('./index-7ced8198.js'); require('./remove-query-args-b57e8cd3.js'); const scCustomerEditCss = ":host{display:block;position:relative}.customer-edit{display:grid;gap:0.75em}"; const ScCustomerEditStyle0 = scCustomerEditCss; const ScCustomerEdit = class { constructor(hostRef) { index.registerInstance(this, hostRef); this.heading = undefined; this.customer = undefined; this.successUrl = undefined; this.loading = undefined; this.error = undefined; } async handleSubmit(e) { var _a, _b; this.loading = true; try { const { email, first_name, last_name, phone, billing_matches_shipping, shipping_name, shipping_city, 'tax_identifier.number_type': tax_identifier_number_type, 'tax_identifier.number': tax_identifier_number, shipping_country, shipping_line_1, shipping_line_2, shipping_postal_code, shipping_state, billing_name, billing_city, billing_country, billing_line_1, billing_line_2, billing_postal_code, billing_state, } = await e.target.getFormJson(); this.customer.billing_address = { name: billing_name, city: billing_city, country: billing_country, line_1: billing_line_1, line_2: billing_line_2, postal_code: billing_postal_code, state: billing_state, }; this.customer.shipping_address = { name: shipping_name, city: shipping_city, country: shipping_country, line_1: shipping_line_1, line_2: shipping_line_2, postal_code: shipping_postal_code, state: shipping_state, }; await index$1.apiFetch({ path: addQueryArgs.addQueryArgs(`surecart/v1/customers/${(_a = this.customer) === null || _a === void 0 ? void 0 : _a.id}`, { expand: ['tax_identifier'] }), method: 'PATCH', data: { email, first_name, last_name, phone, billing_matches_shipping: billing_matches_shipping === true || billing_matches_shipping === 'on', shipping_address: this.customer.shipping_address, billing_address: this.customer.billing_address, ...(tax_identifier_number && tax_identifier_number_type ? { tax_identifier: { number: tax_identifier_number, number_type: tax_identifier_number_type, }, } : {}), }, }); if (this.successUrl) { window.location.assign(this.successUrl); } else { this.loading = false; } } catch (e) { this.error = ((_b = e === null || e === void 0 ? void 0 : e.additional_errors) === null || _b === void 0 ? void 0 : _b.length) ? e.additional_errors.map(err => err.message).join(', ') : (e === null || e === void 0 ? void 0 : e.message) || wp.i18n.__('Something went wrong', 'surecart'); this.loading = false; } } render() { var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m; return (index.h("sc-dashboard-module", { key: 'b0868e6cc2d8789718662e8584c6eb79652e4b48', class: "customer-edit", error: this.error }, index.h("span", { key: '60f3719bd34ec30b09abdb5d879329135736cefc', slot: "heading" }, this.heading || wp.i18n.__('Update Billing Details', 'surecart'), ' ', !((_a = this === null || this === void 0 ? void 0 : this.customer) === null || _a === void 0 ? void 0 : _a.live_mode) && (index.h("sc-tag", { key: '8b943872648c8a9562ce000e9d183f4cfeada128', type: "warning", size: "small" }, wp.i18n.__('Test', 'surecart')))), index.h("sc-card", { key: '23a3cad6c0e61c5812ac39f105c6ab639fbe5350' }, index.h("sc-form", { key: '8adfa8259521ae911fd6ce44c944bb5bb8e4b4dc', onScFormSubmit: e => this.handleSubmit(e) }, index.h("sc-columns", { key: 'fcc7c56a09ca25e4cc16bf57c5b102cb3a32fdfa', style: { '--sc-column-spacing': 'var(--sc-spacing-medium)' } }, index.h("sc-column", { key: '7a244a14f9c7aea993b7a65f1fa1bb8fea9c1012' }, index.h("sc-input", { key: '5a53ad092fc6ceeff375d240e47f0c116a20eb96', label: wp.i18n.__('First Name', 'surecart'), name: "first_name", value: (_b = this.customer) === null || _b === void 0 ? void 0 : _b.first_name })), index.h("sc-column", { key: 'f665e83ec6d8311daf55ae82964da70500a4228a' }, index.h("sc-input", { key: '19f629227cf366327e4643c61baa7b8639eac6b1', label: wp.i18n.__('Last Name', 'surecart'), name: "last_name", value: (_c = this.customer) === null || _c === void 0 ? void 0 : _c.last_name }))), index.h("sc-column", { key: '87edeffc8a0f27b7bec289861ea4705da6724a3c' }, index.h("sc-phone-input", { key: '18e631f763688ed4adf9b482f9b66fd50046be51', label: wp.i18n.__('Phone', 'surecart'), name: "phone", value: (_d = this.customer) === null || _d === void 0 ? void 0 : _d.phone })), index.h("sc-flex", { key: 'bcaf7e6992abec31db6292361994f1ab1c4ff838', style: { '--sc-flex-column-gap': 'var(--sc-spacing-medium)' }, flexDirection: "column" }, index.h("div", { key: '3c2502e2d21d58ec0652e01c70a34d3577f726ca' }, index.h("sc-address", { key: '10b303c243f112a53f88d6a6a7185785341322db', label: wp.i18n.__('Shipping Address', 'surecart'), showName: true, address: { ...(_e = this.customer) === null || _e === void 0 ? void 0 : _e.shipping_address, }, showLine2: true, required: false, names: { name: 'shipping_name', country: 'shipping_country', line_1: 'shipping_line_1', line_2: 'shipping_line_2', city: 'shipping_city', postal_code: 'shipping_postal_code', state: 'shipping_state', } })), index.h("div", { key: '1dfb9374290bc21b563fbd6e64c693bf98ca1330' }, index.h("sc-checkbox", { key: '828e70ca7edd0b161d759dbb270f3dbe7a62bbc0', name: "billing_matches_shipping", checked: (_f = this.customer) === null || _f === void 0 ? void 0 : _f.billing_matches_shipping, onScChange: e => { this.customer = { ...this.customer, billing_matches_shipping: e.target.checked, }; }, value: "on" }, wp.i18n.__('Billing address is same as shipping', 'surecart'))), index.h("div", { key: '93ce6721cde0603365d6a19b5e0c145f5416a965', style: { display: ((_g = this.customer) === null || _g === void 0 ? void 0 : _g.billing_matches_shipping) ? 'none' : 'block' } }, index.h("sc-address", { key: '5ff07ff28093a253328ef5bacf3cc89468cf25ec', label: wp.i18n.__('Billing Address', 'surecart'), showName: true, address: { ...(_h = this.customer) === null || _h === void 0 ? void 0 : _h.billing_address, }, showLine2: true, names: { name: 'billing_name', country: 'billing_country', line_1: 'billing_line_1', line_2: 'billing_line_2', city: 'billing_city', postal_code: 'billing_postal_code', state: 'billing_state', }, required: true })), index.h("sc-tax-id-input", { key: '5a87ac8d4b4e00c680e2409929ebe8ac8895c972', show: true, number: (_k = (_j = this.customer) === null || _j === void 0 ? void 0 : _j.tax_identifier) === null || _k === void 0 ? void 0 : _k.number, type: (_m = (_l = this.customer) === null || _l === void 0 ? void 0 : _l.tax_identifier) === null || _m === void 0 ? void 0 : _m.number_type })), index.h("div", { key: 'b26f474e86f33940ebea025ad3aa81676bc34bcd' }, index.h("sc-button", { key: '43e8b4a4d92d48094faa1dbd7e8f5c5bc9245abb', type: "primary", full: true, submit: true }, wp.i18n.__('Save', 'surecart'))))), this.loading && index.h("sc-block-ui", { key: 'c672b8e94fe3dcd205f0ab1065d5effba7717ac1', spinner: true }))); } }; ScCustomerEdit.style = ScCustomerEditStyle0; exports.sc_customer_edit = ScCustomerEdit; //# sourceMappingURL=sc-customer-edit.cjs.entry.js.map