FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
surecart
/
dist
/
components
/
cjs
Edit File: sc-customer-email.cjs.entry.js
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); const index = require('./index-8acc3c89.js'); const index$1 = require('./index-e60e3177.js'); const util = require('./util-b877b2bd.js'); const store = require('./store-c4cf8771.js'); const mutations = require('./mutations-10a18c83.js'); require('./fetch-d374a251.js'); require('./add-query-args-49dcb630.js'); require('./remove-query-args-b57e8cd3.js'); require('./index-bcdafe6e.js'); require('./utils-2e91d46c.js'); require('./index-fb76df07.js'); require('./google-59d23803.js'); require('./currency-71fce0f0.js'); require('./store-4a539aea.js'); require('./price-5b1afcfe.js'); const scCustomerEmailCss = ":host{display:block}a{color:var(--sc-color-primary-500)}a.customer-email__login-link{color:var(--sc-customer-login-link-color, var(--sc-input-placeholder-color));text-decoration:none;font-size:var(--sc-font-size-small)}.tracking-confirmation-message{font-size:var(--sc-font-size-xx-small)}.tracking-confirmation-message span{opacity:0.75}"; const ScCustomerEmailStyle0 = scCustomerEmailCss; const ScCustomerEmail = class { constructor(hostRef) { index.registerInstance(this, hostRef); this.scChange = index.createEvent(this, "scChange", 7); this.scClear = index.createEvent(this, "scClear", 7); this.scInput = index.createEvent(this, "scInput", 7); this.scFocus = index.createEvent(this, "scFocus", 7); this.scBlur = index.createEvent(this, "scBlur", 7); this.scUpdateOrderState = index.createEvent(this, "scUpdateOrderState", 7); this.scUpdateAbandonedCart = index.createEvent(this, "scUpdateAbandonedCart", 7); this.scLoginPrompt = index.createEvent(this, "scLoginPrompt", 7); this.trackingConfirmationMessage = undefined; this.size = 'medium'; this.value = util.getValueFromUrl('email'); this.pill = false; this.label = undefined; this.showLabel = true; this.help = ''; this.placeholder = undefined; this.disabled = false; this.readonly = false; this.required = false; this.invalid = false; this.autofocus = undefined; this.hasFocus = undefined; } async handleChange() { this.value = this.input.value; this.scChange.emit(); try { mutations.state.checkout = (await index$1.createOrUpdateCheckout({ id: mutations.state.checkout.id, data: { email: this.input.value } })); } catch (error) { console.log(error); } } async reportValidity() { var _a, _b; return (_b = (_a = this.input) === null || _a === void 0 ? void 0 : _a.reportValidity) === null || _b === void 0 ? void 0 : _b.call(_a); } /** Sync customer email with session if it's updated by other means */ handleSessionChange() { var _a, _b, _c, _d, _e, _f; // we already have a value and we are not yet logged in. if (this.value && !store.state.loggedIn) return; // we are logged in already. if (store.state.loggedIn) { // get email from user state fist. this.value = store.state.email || ((_b = (_a = mutations.state === null || mutations.state === void 0 ? void 0 : mutations.state.checkout) === null || _a === void 0 ? void 0 : _a.customer) === null || _b === void 0 ? void 0 : _b.email) || ((_c = mutations.state === null || mutations.state === void 0 ? void 0 : mutations.state.checkout) === null || _c === void 0 ? void 0 : _c.email); return; } const fromUrl = util.getValueFromUrl('email'); if (!store.state.loggedIn && !!fromUrl) { this.value = fromUrl; return; } this.value = ((_d = mutations.state === null || mutations.state === void 0 ? void 0 : mutations.state.checkout) === null || _d === void 0 ? void 0 : _d.email) || ((_f = (_e = mutations.state === null || mutations.state === void 0 ? void 0 : mutations.state.checkout) === null || _e === void 0 ? void 0 : _e.customer) === null || _f === void 0 ? void 0 : _f.email); } /** Listen to checkout. */ componentWillLoad() { this.handleSessionChange(); this.removeCheckoutListener = mutations.onChange('checkout', () => this.handleSessionChange()); } /** Remove listener. */ disconnectedCallback() { this.removeCheckoutListener(); } renderOptIn() { if (!this.trackingConfirmationMessage) return null; if (mutations.state.abandonedCheckoutEnabled !== false) { return (index.h("div", { class: "tracking-confirmation-message" }, index.h("span", null, this.trackingConfirmationMessage), ' ', index.h("a", { href: "#", onClick: e => { e.preventDefault(); this.scUpdateAbandonedCart.emit(false); } }, wp.i18n.__('No Thanks', 'surecart')))); } return (index.h("div", { class: "tracking-confirmation-message" }, index.h("span", null, " ", wp.i18n.__("You won't receive further emails from us.", 'surecart')))); } render() { var _a; return (index.h(index.Host, { key: 'bc967aac9ef137a1aa3934eb69af1baea87c7179' }, index.h("sc-input", { key: '28c179e737e0286dda531acdf90c26531301d7de', exportparts: "base, input, form-control, label, help-text, prefix, suffix", type: "email", name: "email", ref: el => (this.input = el), value: this.value, help: this.help, label: this.label, autocomplete: 'email', placeholder: this.placeholder, disabled: this.disabled || (!!store.state.loggedIn && !!((_a = this.value) === null || _a === void 0 ? void 0 : _a.length) && !this.invalid), readonly: this.readonly, required: true, invalid: this.invalid, autofocus: this.autofocus, hasFocus: this.hasFocus, onScChange: () => this.handleChange(), onScInput: () => this.scInput.emit(), onScFocus: () => this.scFocus.emit(), onScBlur: () => this.scBlur.emit() }), this.renderOptIn())); } }; ScCustomerEmail.style = ScCustomerEmailStyle0; exports.sc_customer_email = ScCustomerEmail; //# sourceMappingURL=sc-customer-email.cjs.entry.js.map
Save
Back